Hi jim,<div>         mpegtsdemux has two properties &quot;program-number&quot; and &quot;es-pids&quot;. To play specific program from a ts file just mention the program-number of that program (which you can find using any ts stream analyzer or by writing a parser for pat/pmt). The es-pids takes colon separated  value of video pid, audio pid and pcr pid respectively. to play a particular audio stream you need to specify the pid of that stream.</div>
<div>     </div><div>for example</div><div> </div><div>     gst-launch filesrc location=./some.ts ! mpegtsparse ! mpegtsdemux es-pids=0x2e2:0x2e3:0x2e4 ! decodebin ! ffmpegcolorspace ! autovideosink</div><div><br>similarly you can specify the program number.</div>
<div><br></div><div>playbin2 also has properties to play specific audio stream. you just need to figure out how to use them.</div><div><br></div><div>thanks,</div><div>Jeet</div><div><br><div class="gmail_quote">On Mon, May 2, 2011 at 8:15 AM, Jim Hodapp <span dir="ltr">&lt;<a href="mailto:james.hodapp@gmail.com">james.hodapp@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I am using playbin2 to construct a pipeline that, for this example, is using mpegtsdemux. My source program contains one video stream and multiple audio streams for different languages. My first question is, what is the intended way to be notified and extract the PMT information that makes up this program from playbin2? Do I need to get a pointer directly to the demux or is there a way that playbin2 can abstract this for me?<br>

<br>
My second question is how do then select a particular audio stream to be used? Does playbin2 also abstract this operation?<br>
<br>
If playbin2 does not directly provide a generic interface to do this, is there an interface to accomplish this that would also apply to other types of demuxes that support the notion of a program and elementary streams?<br>

<br>
Thanks,<br>
<br>
Jim<br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</blockquote></div><br></div>