[FFmpeg-soc] [soc]: r5853 - libavfilter/diffs/03_doc_filters.diff

victor subversion at mplayerhq.hu
Thu Jul 8 18:40:35 CEST 2010


Author: victor
Date: Thu Jul  8 18:40:35 2010
New Revision: 5853

Log:
svn-23100 in ffmpeg-trunk superseded -vfilter by -vf

Modified:
   libavfilter/diffs/03_doc_filters.diff

Modified: libavfilter/diffs/03_doc_filters.diff
==============================================================================
--- libavfilter/diffs/03_doc_filters.diff	Thu Jul  8 18:10:38 2010	(r5852)
+++ libavfilter/diffs/03_doc_filters.diff	Thu Jul  8 18:40:35 2010	(r5853)
@@ -9,7 +9,7 @@ Index: doc/filters.texi
 + at section drawbox
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "drawbox=10:20:200:60:red" out.avi
++./ffmpeg -i in.avi -vf "drawbox=10:20:200:60:red" out.avi
 + at end example
 +
 +Draw a box with @var{x}:@var{y}:@var{width}:@var{height}:@var{color}
@@ -111,7 +111,7 @@ Index: doc/filters.texi
 + at section fifo
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "fifo" out.avi
++./ffmpeg -i in.avi -vf "fifo" out.avi
 + at end example
 +
  @section format
@@ -124,7 +124,7 @@ Index: doc/filters.texi
 + at section fps
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "fps=30000:1001" out.avi
++./ffmpeg -i in.avi -vf "fps=30000:1001" out.avi
 + at end example
 +
 +Modifies the framerate of the input video to a chosen one.
@@ -132,7 +132,7 @@ Index: doc/filters.texi
 + at section hflip
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "hflip" out.avi
++./ffmpeg -i in.avi -vf "hflip" out.avi
 + at end example
 +
 +Flip the video horizontally.
@@ -140,7 +140,7 @@ Index: doc/filters.texi
 + at section negate
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "negate" out.avi
++./ffmpeg -i in.avi -vf "negate" out.avi
 + at end example
 +
 +Convert a video to its negative.
@@ -212,7 +212,7 @@ Index: doc/filters.texi
 + at section rotate
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "rotate=30" out.avi
++./ffmpeg -i in.avi -vf "rotate=30" out.avi
 + at end example
 +
 +Rotate video by a chosen amount in degrees. By default, 45 degrees.
@@ -228,16 +228,16 @@ Index: doc/filters.texi
 +
 + at example
 +# Start counting PTS from zero
-+ffmpeg -i input.avi -vfilters setpts=PTS-STARTPTS output.avi
++ffmpeg -i input.avi -vf setpts=PTS-STARTPTS output.avi
 +
 +# Fast motion
-+ffmpeg -i input.avi -vfilters setpts=0.5*PTS output.avi
++ffmpeg -i input.avi -vf setpts=0.5*PTS output.avi
 +
 +# Fixed rate 25 fps
-+ffmpeg -i input.avi -vfilters setpts=N*AVTB/25 output.avi
++ffmpeg -i input.avi -vf setpts=N*AVTB/25 output.avi
 +
 +# Fixed rate 25 fps with some jitter
-+ffmpeg -i input.avi -vfilters 'setpts=AVTB/25*(N+0.05*sin(N*2*PI/25))' output.avi
++ffmpeg -i input.avi -vf 'setpts=AVTB/25*(N+0.05*sin(N*2*PI/25))' output.avi
 + at end example
 +
 +Modifies the presentation timestamp (PTS) of the input video.
@@ -257,7 +257,7 @@ Index: doc/filters.texi
 + at section transpose
 +
 + at example
-+./ffmpeg -i in.avi -vfilters "transpose" out.avi
++./ffmpeg -i in.avi -vf "transpose" out.avi
 + at end example
 +
 +Transpose (line => column) input video to next video filter.
@@ -292,7 +292,7 @@ Index: doc/filters.texi
 +To do that
 +
 + at example
-+ffmpeg -i in.avi -s 240x320 -vfilters "[in]setpts=PTS-STARTPTS, [T1]overlay=16:16[out]; movie=3200000:avi:in.avi, scale=180:144, setpts=PTS-STARTPTS[T1]" -y out.avi
++ffmpeg -i in.avi -s 240x320 -vf "[in]setpts=PTS-STARTPTS, [T1]overlay=16:16[out]; movie=3200000:avi:in.avi, scale=180:144, setpts=PTS-STARTPTS[T1]" -y out.avi
 + at end example
 +
  @section nullsrc


More information about the FFmpeg-soc mailing list