You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
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()
)
The text was updated successfully, but these errors were encountered: