沉默的Pydub分裂没有输出

时间:2017-01-22 05:36:19

标签: python python-3.5 pydub

我在这里完全空白。我有一个wav文件(试过来自多个来源的多个文件),我试图根据使用pydub.silence.split_on_silence方法的单词之间的沉默来分割。无论我做什么,我都没有得到任何输出,我的意思是没有。 使用Audiosegment读取文件。我也导出原始文件,以确保文件正确读取和导出的文件我就好了。但没有分裂的wavs。 我使用的是Python 3.5.2

sound_file = AudioSegment.from_wav(path)
sound_file.export('inputfile.wav', format="wav")
audio_chunks = pydub.silence.split_on_silence(sound_file)
print("Audio chunks generated ", audio_chunks)

打印audio_chun导致[]而不是显示对象数组。 没有错误抛出。

0 个答案:

没有答案