ffmpeg-python
ffmpeg-python copied to clipboard
Add motion blur to xfade transition
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() )