mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
bab88ba31d
Original commit message from CVS: Add a really simple sample DVD player gst-launch command line
6 lines
382 B
Bash
Executable file
6 lines
382 B
Bash
Executable file
#!/bin/sh
|
|
|
|
AUDIOSINK=`gconftool-2 -g /system/gstreamer/default/audiosink`
|
|
gst-launch dvdnavsrc ! dvddemux name=demux .current_video ! mpeg2dec ! { queue max-size-buffers=10 ! mpeg2subt name=sub ! \
|
|
navseek ! xvimagesink } demux.current_subpicture ! queue max-size-buffers=5 block-timeout=100000 ! sub.subtitle \
|
|
demux.current_audio ! { queue ! a52dec ! audioscale ! $AUDIOSINK } $@
|