I have some audio files.
I mixed audio files.
for idx,f in enumerate(files):
if idx == 0:
sound = pydub.AudioSegment.from_file(f)
else:
temp = pydub.AudioSegment.from_file(f)
sound = sound.overlay(temp, position=0)
sound.export("totakmix.wav",format="wav")
Each audio file is not clipping.
However, mix file is clipping.
Is there any way to prevent this??