diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2019-11-19 14:08:39 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2019-11-19 14:08:39 +0530 |
commit | f394d7b382aa038c4ba34d9f9be0bb0645fc64e3 (patch) | |
tree | 2c0c59902664d3ff2459139cf44b9afd38083bf4 /doc/filters.texi | |
parent | 6e0461d8d446d07c77d780ffda4942db9f94b8c6 (diff) | |
download | ffmpeg-f394d7b382aa038c4ba34d9f9be0bb0645fc64e3.tar.gz |
doc/filters: correct ssim example
AVTB is 1/AV_TIME_BASE
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 035094d8f8..22d4f9d9a8 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -17136,7 +17136,7 @@ ffmpeg -i main.mpg -i ref.mpg -lavfi "ssim;[0:v][1:v]psnr" -f null - @item Another example with different containers: @example -ffmpeg -i main.mpg -i ref.mkv -lavfi "[0:v]settb=1/AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=1/AVTB,setpts=PTS-STARTPTS[ref];[main][ref]ssim" -f null - +ffmpeg -i main.mpg -i ref.mkv -lavfi "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]ssim" -f null - @end example @end itemize |