Author: victor Date: Fri Nov 7 08:20:18 2008 New Revision: 3767 Log: Filter labels are to be enclosed in square brackets, not parentheses.
Modified: libavfilter/README libavfilter/vsrc_movie.c Modified: libavfilter/README ============================================================================== --- libavfilter/README (original) +++ libavfilter/README Fri Nov 7 08:20:18 2008 @@ -79,7 +79,7 @@ splits the stream into two streams, send and the vflip filter before merging it back with the other stream by overlaying it on top. You can use the following command to do this filtering -./ffmpeg -i input_video.avi -s 240x320 -vfilters "(in)split (T1), fifo, (T2)overlay='0:240'(out); (T1)fifo, crop=0:0:-1:240, vflip(T2)" out.avi +./ffmpeg -i input_video.avi -s 240x320 -vfilters "[in]split [T1], fifo, [T2]overlay='0:240'(out); [T1]fifo, crop=0:0:-1:240, vflip[T2]" out.avi where input_video.avi has a vertical resolution of 480 pixels, the result should be that in output the top half of the video is mirroed onto the bottom Modified: libavfilter/vsrc_movie.c ============================================================================== --- libavfilter/vsrc_movie.c (original) +++ libavfilter/vsrc_movie.c Fri Nov 7 08:20:18 2008 @@ -35,7 +35,7 @@ To do that - 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 -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-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
