Author: stefano Date: Wed May 26 00:54:24 2010 New Revision: 5818 Log: Remove reference to the option -vfilters, replaced with -vf.
Modified: libavfilter/README Modified: libavfilter/README ============================================================================== --- libavfilter/README Mon May 24 18:43:37 2010 (r5817) +++ libavfilter/README Wed May 26 00:54:24 2010 (r5818) @@ -56,12 +56,12 @@ RUNNING IT: The command line syntax for specifying filters is similar to that of mplayer. For example, to vertically flip a video, you would do: -./ffplay -vfilters vflip input_video.avi +./ffplay -vf vflip input_video.avi -The argument to -vfilters lists the video filters to load. A comma separates +The argument to -vf lists the video filters to load. A comma separates sequential filters. For example, this command: -./ffplay -vfilters vflip,vflip input_video.avi +./ffplay -vf vflip,vflip input_video.avi will run the video through two instances of the vflip filter, which should result in the original, unflipped video. @@ -70,7 +70,7 @@ Some filters accept parameters, which ca would be done for mplayer. For example, to scale a video to 640x480, you could use this command: -./ffplay -vfilters scale=640:480 input_video.avi +./ffplay -vf scale=640:480 input_video.avi Be aware that some filters, notably the crop filter, interpret the parameters differently than mplayer does. Documentation for each filter is provided in the _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
