[gst-devel] New to Gstreamer - trying to play Quicktime movie
Ronald S. Bultje
rbultje at ronald.bitfreak.net
Fri Dec 3 01:01:07 CET 2004
Hi Naes,
On Fri, 2004-12-03 at 00:55, naes yllek wrote:
[..]
First, 'man gst-launch' should tell you most of the things already.
> gst-launch filesrc location=mymovie.mov ! qtdemuxer !
> { demux.video_00 ! sdlvideosink }
> a solid colour is just displayed.
In threads ({ .. }), you need a 'queue' element. Also, our quicktime
demuxer is called 'qtdemux', not 'qtdemuxer'. Lastly, decoders are
available per video format. You probably want to use spider to select
the right one for you:
gst-launch filesrc location=mymovie.mov ! qtdemux name=d { d.video_00 !
queue ! spider ! ffmpegcolorspace ! sdlvideosink }
Then for audio, add:
{ d.audio_00 ! queue ! spider ! audioconvert ! alsasink }
Ronald
--
Ronald S. Bultje <rbultje at ronald.bitfreak.net>
More information about the gstreamer-devel
mailing list