Hi All,
I'm really newer with Gstreamer. I start to make one simple test, play webm movie. When I try to play only video or audio it works, but not work audio+video. when I start: gst-launch-0.10 -v filesrc location=bilqna.webm ! matroskademux name=d d.audio_00 ! vorbisdec ! audioconvert ! pulsesink d.video_00 ! vp8dec ! xvimagesink I see maybe first frame of video and the picture is stay freeze and audio isn't start and in console i get: ERROR: pipeline doesn't want to preroll. when i start: gst-launch-0.10 -v filesrc location=bilqna.webm ! matroskademux name=d d.audio_00 ! vorbisdec ! audioconvert ! pulsesink filesrc location=bilqna.webm ! matroskademux ! vp8dec ! xvimagesink I have video and audio but i think this is not a good solution. So, can you help me, what is wrong in my first command, or maybe this is a bug, or i miss do something when install my environment ? Thanks in advance. |
use queue element before audio and video decoders
BR, Praveen Pandey On Mon, Dec 27, 2010 at 8:45 PM, stojnovsky <[hidden email]> wrote:
------------------------------------------------------------------------------ Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
In reply to this post by stojnovsky
On Mon, 2010-12-27 at 07:15 -0800, stojnovsky wrote:
> gst-launch-0.10 -v filesrc location=bilqna.webm ! matroskademux name=d > d.audio_00 ! vorbisdec ! audioconvert ! pulsesink d.video_00 ! vp8dec ! > xvimagesink Try: gst-launch-0.10 playbin2 uri=file:///path/to/bilqna.webm (the problem with your pipeline are the missing queues after the demuxer, as already pointed out by another poster) Cheers -Tim ------------------------------------------------------------------------------ Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |