I want to use the blend
or tblend
filters in conjunction with the t
variable's between
statement. I'm open to other solutions that will achieve the same effect.
I know an image can be transposed over a video, e.g. between 00:00:01.000
to 00:00:02.000
:
ffmpeg -i input.mkv -i input.jpg -filter_complex \ "[0:v][1:v] overlay=10:10:enable='between(t,1,2)'" output.mkv
Blurring a video at the same time can be done with smartblur
:
ffmpeg -i input.mkv -vf "smartblur=enable='between(t,1,2)'" output.mkv
Changing the hue angle
, e.g. by 90 degrees, can also be done:
ffmpeg -i input.mkv -vf "hue=h=-90:enable='between(t,1,2)'" output.mkv
Nothing from my searches or in the official documentation, however, explains how to compose a command using the blend
or tblend
filters in conjunction with the t
variable's between
statement. I've tried a number of formulations, but they all lead to errors. Is this simply not possible? Or is there another way to structure the command?