mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
f3471841a3
Original commit message from CVS: * ext/resindvd/resin-play: Remove $@ to fix parse_launch warning * ext/resindvd/resin-play2: Add a version that uses deinterlace and xvimagesink.
13 lines
351 B
Bash
Executable file
13 lines
351 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# -ge 1 ]; then
|
|
DEVICE_OPT="device=$1"
|
|
else
|
|
DEVICE_OPT=""
|
|
fi
|
|
|
|
gst-launch rsndvdbin name=dvd "$DEVICE_OPT" \
|
|
dvdspu name=spu ! ffmpegcolorspace ! videoscale ! ximagesink force-aspect-ratio=true \
|
|
dvd. ! queue max-size-buffers=3 max-size-bytes=0 ! spu.video \
|
|
dvd. ! spu.subpicture \
|
|
dvd. ! audioconvert ! autoaudiosink
|