Hi all,<br><br>I am writing an application to transcode TS file into h264 and aac format and store the transcoded file.<br>The application works fine with the input files which have one video and audio stream.<br>If I have more than 1 audio files I still want to transcode all the audio streams into aac format and store them in a single file.<br>
<br>Could someone help me to handle ore than 1 audio streams?<br><br>I am currently using the below pipeline :<br><br>gst-launch-0.10 uridecodebin uri=file://in-file.ts name=d d. ! queue ! audioconvert ! faac ! ffmux_mp4 name=mux ! filesink location=~/Desktop/h264-aac/out-file.mp4&nbsp; d. ! queue ! ffmpegcolorspace ! x264enc pass=qual quantizer=16 ref=3 subme=6 analyse=p4x4 me=umh ! mux.<br>
<br><br>I get the following warning messages while running the above pipeline:<br><br>Setting pipeline to PAUSED ...<br>Pipeline is PREROLLING ...<br>WARNING: from element /GstPipeline:pipeline0/GstURIDecodeBin:d: No decoder available for type &#39;application/x-mpegts-private-section&#39;.<br>
Additional debug info:<br>gsturidecodebin.c(589): unknown_type_cb (): /GstPipeline:pipeline0/GstURIDecodeBin:d<br>WARNING: from element /GstPipeline:pipeline0/GstURIDecodeBin:d: No decoder available for type &#39;application/x-mpegts-private-section&#39;.<br>
Additional debug info:<br>gsturidecodebin.c(589): unknown_type_cb (): /GstPipeline:pipeline0/GstURIDecodeBin:d<br>WARNING: from element /GstPipeline:pipeline0/GstURIDecodeBin:d: No decoder available for type &#39;application/x-mpegts-private-section&#39;.<br>
Additional debug info:<br>gsturidecodebin.c(589): unknown_type_cb (): /GstPipeline:pipeline0/GstURIDecodeBin:d<br>WARNING: from element /GstPipeline:pipeline0/GstURIDecodeBin:d: No decoder available for type &#39;application/x-mpegts-private-section&#39;.<br>
Additional debug info:<br>gsturidecodebin.c(589): unknown_type_cb (): /GstPipeline:pipeline0/GstURIDecodeBin:d<br>WARNING: from element /GstPipeline:pipeline0/GstURIDecodeBin:d: No decoder available for type &#39;application/x-mpegts-private-section&#39;.<br>
Additional debug info:<br>gsturidecodebin.c(589): unknown_type_cb (): /GstPipeline:pipeline0/GstURIDecodeBin:d<br>WARNING: from element /GstPipeline:pipeline0/GstURIDecodeBin:d: No decoder available for type &#39;private/teletext&#39;.<br>
Additional debug info:<br>gsturidecodebin.c(589): unknown_type_cb (): /GstPipeline:pipeline0/GstURIDecodeBin:d<br><br>Best Regards,<br>Jyoti<br><br>