diff --git a/lib/ffmpeg/vppbase.py b/lib/ffmpeg/vppbase.py index da92d931..1ede8554 100644 --- a/lib/ffmpeg/vppbase.py +++ b/lib/ffmpeg/vppbase.py @@ -51,7 +51,7 @@ def gen_output_opts(self): opts = "-filter_complex" if self.vpp_op in fcomplex else "-vf" opts += f" '{','.join(vpfilter)}'" opts += " -pix_fmt {mformat}" if self.vpp_op not in ["csc", "tonemap", "overlay"] else "" - opts += " -f rawvideo -fps_mode passthrough -an -vframes {frames} -y {osdecoded}" + opts += " -f rawvideo -fps_mode cfr -an -vframes {frames} -y {osdecoded}" return opts