有没有可能解开文件?我已经使用覆盖来混合 2 个音频,但我想取回原始的第一个音频。pydub中有什么我可以使用的吗?
sound1 = AudioSegment.from_mp3("/path/to/file1.mp3")
sound2 = AudioSegment.from_mp3("/path/to/file2.mp3")
output = sound1.overlay(sound2, position=5000)
output.export("mixed_sounds.mp3", format="mp3")