summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-07-09 10:45:37 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-07-09 10:45:37 +0000
commit138929756fedf3114b001fe9d54e7c49e6656cbe (patch)
tree89e47c1b6551ce33cd7c97275dfa61c67bdf5b4c /tools
parent3e4f2fac8b6c4729347152b48d076928af1ff9b0 (diff)
merge from release branch
Original commit message from CVS: merge from release branch
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gst-launch-ext3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gst-launch-ext b/tools/gst-launch-ext
index 12c85bae..ad2e60e5 100755
--- a/tools/gst-launch-ext
+++ b/tools/gst-launch-ext
@@ -54,6 +54,7 @@ sub read_config
sub playfile($$)
{
my ($file, $ext) = @_;
+ $ext = lc $ext;
my $pipe;
if ($cfg{VISUALIZER} && ($pipe = $pipes{"vis." . $ext}))
@@ -88,7 +89,7 @@ read_config ();
"mpg", "mpegdemux video_%02d! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.audio_%02d! { queue ! mad ! $cfg{AUDIOSINK} }",
"ogg", "vorbisdec ! $cfg{AUDIOSINK}",
"sid", "siddec ! $cfg{AUDIOSINK}",
- "vob", "mpegdemux name=foo video_%02d! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } foo.private_stream_1__%02d! { queue ! a52dec ! $cfg{AUDIOSINK} }",
+ "vob", "mpegdemux video_%02d! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.private_stream_1_%02d! { queue ! a52dec ! $cfg{AUDIOSINK} }",
);
if ($cfg{VISUALIZER}) {