How to play .3gp file using gstreamer pipe ?

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

How to play .3gp file using gstreamer pipe ?

ssshukla26
Hi guyz,

I am able to play .mov, .h264, .avi and .mp4 file using gstreamer pipe as shown in the commands below.

1) .mov

gst-launch-1.0 filesrc location=test.mov ! qtdemux ! decodebin ! autovideoconvert ! autovideosink

2) .h264

gst-launch-1.0 filesrc location=test.h264 ! h264parse ! decodebin ! autovideosink

3) .avi

gst-launch-1.0 filesrc location=test.avi ! avidemux ! decodebin ! autovideoconvert ! autovideosink

4) .mp4

gst-launch-1.0 filesrc location=test.mp4 ! qtdemux ! decodebin ! autovideoconvert ! autovideosink


But am not able to play .3gp file as above. Please anyone help.
Regards, Sunny.
Reply | Threaded
Open this post in threaded view
|

Re: How to play .3gp file using gstreamer pipe ?

Nicolas Dufresne-4
Le mercredi 27 avril 2016 à 04:27 -0700, ssshukla26 a écrit :
> But am not able to play .3gp file as above. Please anyone help.

Would it be possible to share the non-working 3gp file you have ? FYI,
It should be using the same demuxer as mp4/mov (qtdemux).

Nicolas
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

signature.asc (188 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: How to play .3gp file using gstreamer pipe ?

ssshukla26
Thanks Nicolas.

I reinstalled everything on my hardware board again including gstreamer and then it worked.  Yes, it plays using the same demuxer (qtdemux).
Regards, Sunny.