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

3 visualizaciones (últimos 30 días)
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?

Respuestas (1)

Gabriele Bunkheila
Gabriele Bunkheila el 5 de Jul. de 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.

Categorías

Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!