如何在PyQtGraph中绘制音频波形

时间:2018-06-25 08:26:59

标签: python matplotlib audio plot pyqtgraph

我正在研究需要处理音频波形的论文项目。而且我真的在用PyQtGraph绘制音频波形时遇到麻烦,找不到任何解决方案。

我尝试使用matplotlib对其进行绘制,并且工作得很好。

这里是通过在tkinter窗口中嵌入matplotlib进行绘图的代码(不会发布tkinter画布嵌入的完整代码,因为我认为这不是我的问题的重点):

 def waveform(self, audio):
    self.waveFile = wave.open(audio, 'rb')  # reading wave file
    format = p.get_format_from_width(self.waveFile.getsampwidth())
    channel = self.waveFile.getnchannels()
    rate = self.waveFile.getframerate()
    self.frame = self.waveFile.getnframes()
    self.stream = p.open(format=format,  # DATA needed for streaming
                         channels=channel,
                         rate=rate,
                         output=True)

    durationF = self.frame / float(rate)
    plt.title('Audio Waveform')
    self.data_int = self.waveFile.readframes(self.frame)
    self.data_plot = np.fromstring(self.data_int, dtype=np.short)
    self.data_plot.shape = -1, 2
    self.data_plot = self.data_plot.T
    self.time = np.arange(0, self.frame) * (1.0 / rate)
    self.fig = Figure(figsize=(30, 6), dpi=30)
    self.fig.set_size_inches(34, 5.3)
    self.fig.subplots_adjust(left=0.05, bottom=0.09, right=1.05, top=1.00, wspace=0, hspace=0)
    self.fig.tight_layout()
    self.xticks = np.arange(0, self.timeDuration, 15)
    self.wavePlot = self.fig.add_subplot(111)
    self.wavePlot.set_xticks(self.xticks)
    if (channel == 1):
        print 'Just mono files only'
        self.wavePlot.plot(self.time, self.data_plot[0])

    elif (channel == 2):
        print 'Just stereo files only'
        self.wavePlot.plot(self.time, self.data_plot[1], c="b")

    self.wavePlot.tick_params(axis='both', which="major", labelsize=20)
    self.wavePlot.tick_params(axis='both', which="minor", labelsize=30)

    self.canvas = FigureCanvasTkAgg(self.fig, self.waveFrame)
    self.canvas.get_tk_widget().grid(row=0, column=0, sticky="nsew")

当我发现PyQtGraph时,我切换到它进行更多的交互和快速绘图。 现在,当我在PyQt / PyQtGraph中使用几乎完全相同的方法执行此操作时,出现了错误,我无法绘制它了。

这是我在PyQT4中使用PyQtGraph进行绘图的代码:

 def waveform(self, audio):
    self.waveFile = wave.open(audio,'rb')
    self.format = p.get_format_from_width(self.waveFile.getsampwidth())
    channel = self.waveFile.getnchannels()
    self.rate = self.waveFile.getframerate()
    self.frame = self.waveFile.getnframes()
    self.stream = p.open(format=self.format,  # DATA needed for streaming
                         channels=channel,
                         rate=self.rate,
                         output=True)

    durationF = self.frame / float(self.rate)

    #Setting up waveform plot
    self.data_int = self.waveFile.readframes(self.frame)
    self.data_plot = np.fromstring(self.data_int, 'Int16')
    self.time = np.arange(0, self.frame) * (1.0 / self.rate)

     self.win = pg.GraphicsWindow(title='Spectrum Analyzer')
    self.win.setWindowTitle('Spectrum Analyzer')
    self.win.setGeometry(5, 115, 1910, 1070)

    wf_xlabels = [(0, '0'), (2048, '2048'), (4096, '4096')]
    wf_xaxis = pg.AxisItem(orientation='bottom')
    wf_xaxis.setTicks([wf_xlabels])

    wf_ylabels = [(0, '0'), (127, '128'), (255, '255')]
    wf_yaxis = pg.AxisItem(orientation='left')
    wf_yaxis.setTicks([wf_ylabels])

    self.waveform = self.win.addPlot(
        title='WAVEFORM', row=1, col=1, axisItems={'bottom': wf_xaxis, 
              'left': wf_yaxis},
              )
    self.waveform.plot(pen='c', width=3)
    self.waveform.setYRange(0,255, padding=0)
    self.waveform.setXRange(0,2 * self.chunk, padding = 0.005)
    self.waveform.plot(self.time, self.data_plot)

运行上面的代码时,在updateData中显示---错误 引发Exception(“ X和Y数组必须具有相同的形状-获得%s和%s。”%(self.xData.shape,self.yData.shape)) 例外:X和Y数组必须具有相同的形状,即(1535696L,)和(767848L,)。

我尝试了不同的绘图方式,但仍未提出解决方案。我想知道为什么matplotlib代码可以正常使用而PyQtGraph无法正常工作吗? 任何回应都是大帮助。

1 个答案:

答案 0 :(得分:0)

X和Y必须具有相同的长度。在错误消息中,一个的长度是另一个的两倍。

在您的MatPlotLib代码示例中,有些代码似乎将self.data_plot重塑为两行。

self.data_plot.shape = -1, 2
self.data_plot = self.data_plot.T

PyQtGraph代码中缺少此功能。