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

16 lines
501 B
Python
Raw Permalink Normal View History

2024-05-11 23:00:43 +03:00
import numpy as np
def audio_left_right(audioclip, left=1, right=1, merge=False):
"""
NOT YET FINISHED
For a stereo audioclip, this function enables to change the volume
of the left and right channel separately (with the factors `left`
and `right`)
Makes a stereo audio clip in which the volume of left and right
is controllable
"""
funleft = (lambda t: left) if np.isscalar(left) else left
funright = (lambda t: right) if np.isscalar(right) else right