12 lines
253 B
Python
12 lines
253 B
Python
from moviepy import Clip, vfx
|
|
|
|
|
|
# FadeIn
|
|
def fadein_transition(clip: Clip, t: float) -> Clip:
|
|
return clip.with_effects([vfx.FadeIn(t)])
|
|
|
|
|
|
# FadeOut
|
|
def fadeout_transition(clip: Clip, t: float) -> Clip:
|
|
return clip.with_effects([vfx.FadeOut(t)])
|