summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-11-03 13:43:01 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-11-03 13:43:01 +0000
commit42e05727a0ce99bfc13be91f2c7415e083db42ce (patch)
treeae3493438d019f76ea566ab945f825aaa2cce3d0 /tools
parent37fe2016b9f1b9705d431550c39513d1ddc859b7 (diff)
sigh, that was a silly bug
Original commit message from CVS: sigh, that was a silly bug
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gst-launch-ext8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/gst-launch-ext b/tools/gst-launch-ext
index ae2aa980..3515accb 100755
--- a/tools/gst-launch-ext
+++ b/tools/gst-launch-ext
@@ -1,4 +1,5 @@
#!/usr/bin/perl -w
+use strict;
# launch a gst-launch pipeline for the supplied media file
# use the extension to determine the gst-launch pipeline
@@ -15,7 +16,7 @@ sub extension
# .tar.gz extensions do we ?
if ($path =~ /\./)
{
- my $ext = $path;
+ $ext = $path;
$ext =~ s/^.*\.//;
}
else { $ext = ""; }
@@ -88,6 +89,7 @@ read_config ();
"ac3", "a52dec ! $cfg{AUDIOSINK}",
"au", "auparse ! $cfg{AUDIOSINK}",
"avi", "avidemux video_%02d! { queue ! windec ! $cfg{VIDEOSINK} } avidemux0.audio_%02d! { queue ! mad ! $cfg{AUDIOSINK} }",
+ "flac", "flacdec ! $cfg{AUDIOSINK}",
"fli", "flxdec ! colorspace ! $cfg{VIDEOSINK}",
"m1v", "mpegdemux video_%02d! { queue ! mpeg2dec ! $cfg{VIDEOSINK} }",
"m2v", "mpegdemux video_%02d! { queue ! mpeg2dec ! $cfg{VIDEOSINK} }",
@@ -119,6 +121,10 @@ if ($#ARGV == -1) {
my $file;
while ($file = shift @ARGV) {
my $ext = extension ($file);
+ if (!$ext) {
+ print "file $file doesn't have an extension !\n";
+ return -1;
+ }
if ($ext eq 'm3u')
{
open (PLAYLIST, '<', $file);