moviepy.audio.fx#

All the audio effects that can be applied to AudioClip and VideoClip.

Modules

AudioDelay([offset, n_repeats, decay])

Repeats audio certain number of times at constant intervals multiplying their volume levels using a linear space in the range 1 to decay argument value.

AudioFadeIn(duration)

Return an audio (or video) clip that is first mute, then the sound arrives progressively over duration seconds.

AudioFadeOut(duration)

Return a sound clip where the sound fades out progressively over duration seconds at the end of the clip.

AudioLoop([n_loops, duration])

Loops over an audio clip.

AudioNormalize()

Return a clip whose volume is normalized to 0db.

MultiplyStereoVolume([left, right])

For a stereo audioclip, this function enables to change the volume of the left and right channel separately (with the factors left and right).

MultiplyVolume(factor[, start_time, end_time])

Returns a clip with audio volume multiplied by the value factor.