Converting .264 elemntary stream to .Mp4

classic Classic list List threaded Threaded
3 messages Options
rk
Reply | Threaded
Open this post in threaded view
|

Converting .264 elemntary stream to .Mp4

rk
Hi,
Could you pls help in converting .264 multi-view encoded elementary stream to .Mp4 container format using qtmux?

Currently using the pipeline like this
gst-launch filesrc location=<.264 file> !  <caps filter> ! qtmux ! filesink location=<mp4 file> 

After getting the .MP4 file,If i decode with ffdec_h264 using the below pipeline it is not decoding.It is going to pre-roll state and then to playing state and closing the pipeline.Rendering is not happening

gst-launch filesrc location=<.MP4 file> !  qtdemux ! fdec_h264! xvimagesink


Please help atleast in converting simple .264 file to .MP4 container format.

Thanking you in advance.

rgds,
Rams
Reply | Threaded
Open this post in threaded view
|

Re: Converting .264 elemntary stream to .Mp4

Sudarshan Bisht
try ,

gst-launch filesrc location=<.264 file> ! h264parse !  <caps filter>  ! qtmux ! filesink location=<mp4 file>
 

On Wed, Nov 24, 2010 at 4:19 PM, ramsk <[hidden email]> wrote:

Hi,
Could you pls help in converting .264 multi-view encoded elementary stream
to .Mp4 container format using qtmux?

Currently using the pipeline like this
gst-launch filesrc location=<.264 file> !  <caps filter> ! qtmux ! filesink
location=<mp4 file>

After getting the .MP4 file,If i decode with ffdec_h264 using the below
pipeline it is not decoding.It is going to pre-roll state and then to
playing state and closing the pipeline.Rendering is not happening

gst-launch filesrc location=<.MP4 file> !  qtdemux ! fdec_h264! xvimagesink


Please help atleast in converting simple .264 file to .MP4 container format.

Thanking you in advance.

rgds,
Rams
--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Converting-264-elemntary-stream-to-Mp4-tp3057059p3057059.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel



--
Regards,

Sudarshan Bisht

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Converting .264 elemntary stream to .Mp4

chiyeh.chen
Use ffmpeg maybe is good idea.
Gstreamer's component convert file seems have problem.