mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 20:05:38 +00:00
qtdemux: fix example pipeline in docs
The gst-launch script for example launch line to test qtdemux is missing a queue before the decodebins, otherwise the gst-launch-1.0 command won't work. https://bugzilla.gnome.org/show_bug.cgi?id=749054
This commit is contained in:
parent
27729a2960
commit
3792e9ca9b
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
|||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* |[
|
||||
* gst-launch-1.0 filesrc location=test.mov ! qtdemux name=demux demux.audio_0 ! decodebin ! audioconvert ! audioresample ! autoaudiosink demux.video_0 ! queue ! decodebin ! videoconvert ! videoscale ! autovideosink
|
||||
* gst-launch-1.0 filesrc location=test.mov ! qtdemux name=demux demux.audio_0 ! queue ! decodebin ! audioconvert ! audioresample ! autoaudiosink demux.video_0 ! queue ! decodebin ! videoconvert ! videoscale ! autovideosink
|
||||
* ]| Play (parse and decode) a .mov file and try to output it to
|
||||
* an automatically detected soundcard and videosink. If the MOV file contains
|
||||
* compressed audio or video data, this will only work if you have the
|
||||
|
|
Loading…
Reference in a new issue