我在python中有以下代码
from scipy.io.wavfile import read
rate, signal = read('./data/input.wav')
# get only one channel
signal = signal[:,0]
# do a bunch of processing here
现在我想使用“信号”和“速率”创建一个 pydub 段
audio_segment = pydub.AudioSegment()
那么我怎样才能创建这个音频片段,然后,我怎样才能将我的信号作为一个 numpy 数组取回呢?