Interactive Audio Editor - plotting

is pyqtgraph the best choice if I wanted to build an audio editor? I know there are a lot of good free audio editors out there, but I and looking to do something meant for sound quality engineering. the screenshot below shows the left and right time series at the bottom with the running spectrum and some dsp filtering in the top plot. Looking for ideas to accomplish in python

image

Yep, for something like this I would definitely recommend PyQtGraph. It’s got two main advantages over matplotlib –

  1. it uses native Qt drawing, so it’s fast, but you can also extend with custom widgets to add markers/etc. very easily.
  2. interactions are far more natural, particularly for zooming panning

I created something similar for NMR spectra, with a overview plot and then scalable/zoomable main plot + annotations. You can take a look here if it helps nmrbrew/spectra.py at master · mfitzp/nmrbrew · GitHub

There will be some more PyQtGraph tutorials in future, so if there is something specific you need let me know.

Thanks Martin,

I will start playing with PyQtGraph. I will also look at the link.

I have some more basic questions, But I will start another topic.

thanks again