diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-05 12:59:59 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-06 00:54:46 +0200 |
commit | 7775992c65e50c13272d828560532430eb926a05 (patch) | |
tree | fd147975ecdbd3ad2e65b385927bf945c8e0c3d9 /doc | |
parent | 37f080f6f6a8d757271f946be03408731527a8a5 (diff) | |
download | ffmpeg-7775992c65e50c13272d828560532430eb926a05.tar.gz |
doc/filters: fix main/over mismatch in movie examples
Found-By: littlebat <dashing.meng@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 630db433cb..483d8a13e2 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -7134,16 +7134,18 @@ movie --> scale--> deltapts1 -------+ Skip 3.2 seconds from the start of the avi file in.avi, and overlay it on top of the input labelled as "in": @example -movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie]; -[in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out] +movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over]; +[in] setpts=PTS-STARTPTS [main]; +[main][over] overlay=16:16 [out] @end example @item Read from a video4linux2 device, and overlay it on top of the input labelled as "in": @example -movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie]; -[in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out] +movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over]; +[in] setpts=PTS-STARTPTS [main]; +[main][over] overlay=16:16 [out] @end example @item |