ai-content-maker/.venv/Lib/site-packages/moviepy/audio/fx/audio_fadein.py

22 lines
632 B
Python
Raw Normal View History

2024-05-11 23:00:43 +03:00
import numpy as np
from moviepy.decorators import audio_video_fx
@audio_video_fx
def audio_fadein(clip, duration):
""" Return an audio (or video) clip that is first mute, then the
sound arrives progressively over ``duration`` seconds. """
def fading(gf,t):
gft = gf(t)
if np.isscalar(t):
factor = min(1.0 * t / duration, 1)
factor = np.array([factor,factor])
else:
factor = np.minimum(1.0 * t / duration, 1)
factor = np.vstack([factor,factor]).T
return factor * gft
return clip.fl(fading, keep_duration = True)