Original commit message from CVS:
update
This commit is contained in:
Thomas Vander Stichele 2004-07-08 07:44:01 +00:00
parent ed7ca13809
commit 4f857319ab
3 changed files with 12 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
* tools/gst-launch-ext-m.m:
* tools/gst-launch-ext.1.in:
convert to the third millenium
2004-07-07 David Schleef <ds@schleef.org> 2004-07-07 David Schleef <ds@schleef.org>
* sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES

View file

@ -56,7 +56,7 @@ sub read_config
print "This is not an error, just a friendly reminder... Check the man page.\n\n"; print "This is not an error, just a friendly reminder... Check the man page.\n\n";
} }
if (!defined $cfg{AUDIOSINK}) { $cfg{AUDIOSINK} = "osssink"; } if (!defined $cfg{AUDIOSINK}) { $cfg{AUDIOSINK} = "osssink"; }
if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "ffcolorspace ! xvimagesink"; } if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "ffmpegcolorspace ! xvimagesink"; }
if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; } if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; }
if ($command =~ /(.+)\/gst-launch-ext-@GST_MAJORMINOR@$/) if ($command =~ /(.+)\/gst-launch-ext-@GST_MAJORMINOR@$/)

View file

@ -26,11 +26,12 @@ the defaults for audio and video output sinks.
Here is an example .gst file that implements the same defaults as hard-coded Here is an example .gst file that implements the same defaults as hard-coded
in the script : in the script :
AUDIOSINK = "osssink"; AUDIOSINK = osssink
VIDEOSINK = "colorspace ! xvideosink"; VIDEOSINK = ffmpegcolorspace ! xvimagesink
You can change osssink to any of esdsink, alsasink, jacksink (if you have You can change osssink to esdsink or alsasink (if you have
the plug-in), and you can change xvideosink to aasink or sdlvideosink. the plug-in), and you can change xvimagesink to ximagesink, aasink
or sdlvideosink.
Other plug-ins might be used as well if GStreamer has them. Other plug-ins might be used as well if GStreamer has them.