moviepy.audio.fx.AudioLoop#
- class moviepy.audio.fx.AudioLoop.AudioLoop(n_loops: int = None, duration: float = None)[source]#
Loops over an audio clip.
Returns an audio clip that plays the given clip either n_loops times, or during duration seconds.
Examples
from moviepy import * videoclip = VideoFileClip('myvideo.mp4') music = AudioFileClip('music.ogg') audio = music.with_effects([afx.AudioLoop(duration=videoclip.duration)]) videoclip.with_audio(audio)
- copy()#
Return a shallow copy of an Effect.
You must always copy an
Effectbefore applying, because some of them will modify their own attributes when applied. For example, setting a previously unset property by using target clip property.If we was to use the original effect, calling the same effect multiple times could lead to different properties, and different results for equivalent clips.
By using copy, we ensure we can use the same effect object multiple times while maintaining the same behavior/result.
In a way, copy makes the effect himself being kind of idempotent.