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
 +...@section drawbox
 +
 +...@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
 +...@end example
 +
 +Draw a box with @var{x}:@var{y}:@var{width}:@var{height}:@var{color}
@@ -111,7 +111,7 @@ Index: doc/filters.texi
 +...@section fifo
 +
 +...@example
-+./ffmpeg -i in.avi -vfilters "fifo" out.avi
++./ffmpeg -i in.avi -vf "fifo" out.avi
 +...@end example
 +
  @section format
@@ -124,7 +124,7 @@ Index: doc/filters.texi
 +...@section fps
 +
 +...@example
-+./ffmpeg -i in.avi -vfilters "fps=30000:1001" out.avi
++./ffmpeg -i in.avi -vf "fps=30000:1001" out.avi
 +...@end example
 +
 +Modifies the framerate of the input video to a chosen one.
@@ -132,7 +132,7 @@ Index: doc/filters.texi
 +...@section hflip
 +
 +...@example
-+./ffmpeg -i in.avi -vfilters "hflip" out.avi
++./ffmpeg -i in.avi -vf "hflip" out.avi
 +...@end example
 +
 +Flip the video horizontally.
@@ -140,7 +140,7 @@ Index: doc/filters.texi
 +...@section negate
 +
 +...@example
-+./ffmpeg -i in.avi -vfilters "negate" out.avi
++./ffmpeg -i in.avi -vf "negate" out.avi
 +...@end example
 +
 +Convert a video to its negative.
@@ -212,7 +212,7 @@ Index: doc/filters.texi
 +...@section rotate
 +
 +...@example
-+./ffmpeg -i in.avi -vfilters "rotate=30" out.avi
++./ffmpeg -i in.avi -vf "rotate=30" out.avi
 +...@end example
 +
 +Rotate video by a chosen amount in degrees. By default, 45 degrees.
@@ -228,16 +228,16 @@ Index: doc/filters.texi
 +
 +...@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
 +...@end example
 +
 +Modifies the presentation timestamp (PTS) of the input video.
@@ -257,7 +257,7 @@ Index: doc/filters.texi
 +...@section transpose
 +
 +...@example
-+./ffmpeg -i in.avi -vfilters "transpose" out.avi
++./ffmpeg -i in.avi -vf "transpose" out.avi
 +...@end example
 +
 +Transpose (line => column) input video to next video filter.
@@ -292,7 +292,7 @@ Index: doc/filters.texi
 +To do that
 +
 +...@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
 +...@end example
 +
  @section nullsrc
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to