mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
get rid of some warnings if you don't have a config file
Original commit message from CVS: get rid of some warnings if you don't have a config file
This commit is contained in:
parent
16d635f2fd
commit
e46a5b02a2
1 changed files with 13 additions and 7 deletions
|
@ -9,7 +9,7 @@
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
|
|
||||||
|
|
||||||
my %pipes;
|
my (%pipes, %cfg);
|
||||||
|
|
||||||
sub extension
|
sub extension
|
||||||
{
|
{
|
||||||
|
@ -47,9 +47,9 @@ sub read_config
|
||||||
{
|
{
|
||||||
print "No configuration file $config_file found. You might want to create one.\n";
|
print "No configuration file $config_file found. You might want to create one.\n";
|
||||||
}
|
}
|
||||||
if (!defined $cfg{AUDIOSINK}) { $cfg{AUDIOSINK} = "osssink"; }
|
if (!defined $cfg{AUDIOSINK}) { $cfg{AUDIOSINK} = "osssink"; }
|
||||||
if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "sdlvideosink"; }
|
if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "sdlvideosink"; }
|
||||||
if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; }
|
if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
sub playfile($$)
|
sub playfile($$)
|
||||||
|
@ -81,18 +81,24 @@ read_config ();
|
||||||
|
|
||||||
%pipes = (
|
%pipes = (
|
||||||
"mp3", "mad ! $cfg{AUDIOSINK}",
|
"mp3", "mad ! $cfg{AUDIOSINK}",
|
||||||
"vis.mp3", "mad ! tee silent=true 'tee1.src0!' queue leaky=1 ! { $cfg{VISUALIZER} ! colorspace ! $cfg{VIDEOSINK} } 'tee1.src1!' $cfg{AUDIOSINK}",
|
|
||||||
"ogg", "vorbisdec ! $cfg{AUDIOSINK}",
|
"ogg", "vorbisdec ! $cfg{AUDIOSINK}",
|
||||||
"vis.ogg", "vorbisdec ! tee silent=true 'tee1.src0!' queue leaky=1 ! { $cfg{VISUALIZER} ! colorspace ! $cfg{VIDEOSINK} } 'tee1.src1!' $cfg{AUDIOSINK}",
|
|
||||||
"mpg", "mpegdemux video_00! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.audio_00! { queue ! mad ! $cfg{AUDIOSINK} }",
|
"mpg", "mpegdemux video_00! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.audio_00! { queue ! mad ! $cfg{AUDIOSINK} }",
|
||||||
"avi", "avidemux video_00! { queue ! windec ! $cfg{VIDEOSINK} } avidemux0.audio_00! { queue ! mad ! $cfg{AUDIOSINK} }",
|
"avi", "avidemux video_00! { queue ! windec ! $cfg{VIDEOSINK} } avidemux0.audio_00! { queue ! mad ! $cfg{AUDIOSINK} }",
|
||||||
"vob", "mpegdemux video_00! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.audio_00! { queue ! a52dec ! $cfg{AUDIOSINK} }",
|
"vob", "mpegdemux video_00! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.audio_00! { queue ! a52dec ! $cfg{AUDIOSINK} }",
|
||||||
"wav", "wavparse ! $cfg{AUDIOSINK}",
|
"wav", "wavparse ! $cfg{AUDIOSINK}",
|
||||||
"vis.wav", "wavparse ! tee silent=true 'tee1.src0!' queue leaky=1 ! { $cfg{VISUALIZER} ! colorspace ! $cfg{VIDEOSINK} } 'tee1.src1!' $cfg{AUDIOSINK}",
|
|
||||||
"fli", "flxdec ! colorspace ! $cfg{VIDEOSINK}"
|
"fli", "flxdec ! colorspace ! $cfg{VIDEOSINK}"
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if ($cfg{VISUALIZER}) {
|
||||||
|
%pipes = (
|
||||||
|
%pipes,
|
||||||
|
"vis.mp3", "mad ! tee silent=true 'tee1.src0!' queue leaky=1 ! { $cfg{VISUALIZER} ! colorspace ! $cfg{VIDEOSINK} } 'tee1.src1!' $cfg{AUDIOSINK}",
|
||||||
|
"vis.ogg", "vorbisdec ! tee silent=true 'tee1.src0!' queue leaky=1 ! { $cfg{VISUALIZER} ! colorspace ! $cfg{VIDEOSINK} } 'tee1.src1!' $cfg{AUDIOSINK}",
|
||||||
|
"vis.wav", "wavparse ! tee silent=true 'tee1.src0!' queue leaky=1 ! { $cfg{VISUALIZER} ! colorspace ! $cfg{VIDEOSINK} } 'tee1.src1!' $cfg{AUDIOSINK}",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if ($#ARGV == -1) {
|
if ($#ARGV == -1) {
|
||||||
print STDERR "Usage: gst-launch-ext filename[s]\n";
|
print STDERR "Usage: gst-launch-ext filename[s]\n";
|
||||||
exit 1;
|
exit 1;
|
||||||
|
|
Loading…
Reference in a new issue