ffmpeg-python icon indicating copy to clipboard operation
ffmpeg-python copied to clipboard

Add motion blur to xfade transition

Open dey-d opened this issue 1 year ago • 0 comments

Hi,

What would be the best way to add some motion blur to an xfade transition. Below is my code so far. I want to add some motion blur when the transition happens. What would be the best way to do this?

Thanks!

in1 = ffmpeg.input('/config/workspace/browndog.mp4') in2 = ffmpeg.input('/config/workspace/jackdog.mp4') ( ffmpeg .filter([in1, in2], 'xfade', transition='slideright', duration='1', offset='5') .output('output4.mp4') .run() )

dey-d avatar Feb 28 '24 17:02 dey-d