summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-04-14 15:38:09 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-04-14 15:38:09 +0000
commit62a4b5327a998ed7b6cf71a168bb76f66d3e6fac (patch)
tree8bbfc208537225050ea70ae39e5156871e2cf15a
parent7422fdf924c44348f238eff9e2a3e39c4387e4a3 (diff)
downloadgstreamer-BRANCH-RELEASE-0_3_4.tar.gz
Original commit message from CVS: going for a release
-rw-r--r--configure.ac2
-rw-r--r--tools/gst-launch.18
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.