Hi all,<br><br>I am currrently looking into transcoding a media file.<br>My task is to get video in H.264 format, and audio in AAC format.<br><br>Currently am able to transcode only video into H.264 using the below pipeline<br>
<br>gst-launch-0.10 uridecodebin uri=file:///&lt;file location&gt; ! x264enc ! avimux ! filesink location=&lt;file location&gt;<br><br>I want to transcode audio also in AAC along with the video. I tried with following pipeline but no luck till now. Could someone help me regarding the same.<br>
<br>gst-launch avimux name=mux ! filesink location=&lt;file location&gt; sync=true&nbsp; filesrc location=&lt;I/P location&gt; do-timestamp=true ! qtdemux name=demux demux.video_00 ! &#39;video/x-264&#39; &nbsp; ! queue ! mux.video_00&nbsp; demux.audio_00 ! &#39;audio/mpeg&#39; ! queue !&nbsp; faad ! audioconvert ! faac ! queue ! mux.audio_00 <br>
<br>Thanks,<br>Jyoti<br><br><br>