mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
Add a really simple sample DVD player gst-launch command line
Original commit message from CVS: Add a really simple sample DVD player gst-launch command line
This commit is contained in:
parent
d71a398ff6
commit
bab88ba31d
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* ext/dvdnav/gst-dvd:
|
||||
Add a really simple sample DVD player
|
||||
|
||||
2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
|
||||
|
|
6
ext/dvdnav/gst-dvd
Executable file
6
ext/dvdnav/gst-dvd
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/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 } $@
|
Loading…
Reference in a new issue