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:
Jan Schmidt 2004-04-01 12:54:44 +00:00
parent d71a398ff6
commit bab88ba31d
2 changed files with 11 additions and 0 deletions

View file

@ -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
View 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 } $@