From bb9ee76b841399a452a38dc321b28a641e86fe87 Mon Sep 17 00:00:00 2001 From: overcrash <3681221+overcrash66@users.noreply.github.com> Date: Wed, 18 Jun 2025 21:48:38 -0300 Subject: [PATCH] Update video_effects.py --- app/services/utils/video_effects.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/services/utils/video_effects.py b/app/services/utils/video_effects.py index e6213d2..62e8cdb 100644 --- a/app/services/utils/video_effects.py +++ b/app/services/utils/video_effects.py @@ -1,6 +1,5 @@ from moviepy import Clip, vfx -#from moviepy import Clip -#import moviepy.video.fx.all as vfx + # FadeIn def fadein_transition(clip: Clip, t: float) -> Clip: return clip.with_effects([vfx.FadeIn(t)])