From 62a4b5327a998ed7b6cf71a168bb76f66d3e6fac Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 14 Apr 2002 15:38:09 +0000 Subject: [PATCH] going for a release Original commit message from CVS: going for a release --- configure.ac | 2 +- tools/gst-launch.1 | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 7224aa08f7..a78eb3dd5e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_INIT AC_CANONICAL_TARGET([]) dnl when going to/from release please set the nano (fourth number) right ! -AS_VERSION(gstreamer, GST_VERSION, 0, 3, 3, 3) +AS_VERSION(gstreamer, GST_VERSION, 0, 3, 4, 0) AM_INIT_AUTOMAKE($PACKAGE,$VERSION) AS_LIBTOOL(GST, 0, 0, 0, yes) diff --git a/tools/gst-launch.1 b/tools/gst-launch.1 index 485360385b..a0c1a73104 100644 --- a/tools/gst-launch.1 +++ b/tools/gst-launch.1 @@ -68,16 +68,16 @@ Record sound from your sound input and encode it into an ogg file: gst\-launch not only handles audio but video as well: For mpeg video files (here outputing to aasink) : - gst\-launch filesrc location=JB_FF9_TheGravityOfLove.mpg ! mpegdemux video_00! { queue ! mpeg2dec ! aasink } + gst\-launch filesrc location=JB_FF9_TheGravityOfLove.mpg ! mpegdemux video_%02d! { queue ! mpeg2dec ! aasink } For vob files (here outputting image to sdlvideosink): - gst\-launch filesrc location=/flflfj.vob ! mpegdemux video_00! { queue ! mpeg2dec ! sdlvideosink } + gst\-launch filesrc location=/flflfj.vob ! mpegdemux video_%02d! { queue ! mpeg2dec ! sdlvideosink } Play a mpeg movie with sound using the sdlvideosink: - gst\-launch filesrc location=movie.mpg ! mpegdemux video_00! { queue ! mpeg2dec ! sdlvideosink } mpegdemux0.audio_00! { queue ! mad ! osssink } + gst\-launch filesrc location=movie.mpg ! mpegdemux video_%02d! { queue ! mpeg2dec ! sdlvideosink } mpegdemux0.audio_%02d! { queue ! mad ! osssink } Playing a avi movie would be done with something like this: -gst\-launch filesrc location=movie.avi ! avidemux video_00! { queue ! windec ! sdlvideosink } +gst\-launch filesrc location=movie.avi ! avidemux video_%02d! { queue ! windec ! sdlvideosink } See other docs, examples, and the source for description on how to create a PIPELINE\-DESCRIPTION.