How can i plot the frequency of audio file in same speed with audio speed?

2 views (last 30 days)
I am trying to plot the frequency of audio file continuously (By using drawnow). But when I started the audio file and plotting simultaneously, their finish times are not same. I can solve this by adjusting pause time for each audio files. But it's not desirable. How can I solve this?

Answers (1)

Gabriele Bunkheila
Gabriele Bunkheila on 5 Jul 2017
Hello,
I am not sure I fully understood your question, but I work at MathWorks and I will try tackling this from one possible angle. The documentation page Real-Time Audio in MATLAB will tell you how to :
  • Continuously read from an audio file
  • Plot as you read (this example uses dsp.TimeScope, but you can use dsp.SpectrumAnalyzer instead to plot the frequency-domain spectrum). Using these scopes is generally more efficient than the basic plotting commands, it doesn't require any use of drawnow in the loop, and it gives you access to in-scope measurement utilities such as those found in common benchtop instruments
  • Listen in real-time as you read and plot, so everything is synchronous with the audible audio content
I hope this helps.

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!