About 50 results
Open links in new tab
  1. What is a spectrogram and how do I set its parameters?

    A spectrogram is a visual representation of the Short-Time Fourier Transform. Think of this as taking chunks of an input signal and applying a local Fourier Transform on each chunk.

  2. Signal Processing: Can someone explain for me the different type of ...

    Jan 15, 2018 · Spectrogram: Splitting a sound into harmonics A spectrogram is a visualization of the frequency spectrum, a breakdown of the sound into pure sinusoids of different frequencies. A …

  3. How can I plot the results of the spectrogram function?

    Dec 14, 2012 · Within my figure I have 2 axes, the first is the time series of the signal and the second is the ifft of the signal. I'd like to add a 3rd axes that contains the spectrogram of the signal. How can...

  4. Python spectrogram in 3D (like matlab's spectrogram function)

    Jun 27, 2019 · Python spectrogram in 3D (like matlab's spectrogram function) Asked 6 years, 9 months ago Modified 3 years, 2 months ago Viewed 11k times

  5. Can I adjust spectogram frequency axes? - Stack Overflow

    May 29, 2015 · The MATLAB documentation examples for the spectrogram function gives examples that have the frequency axis set to [0 500]. Can I change this to something like [0 100]? Obviously …

  6. How to convert a .wav file to a spectrogram in python3

    Jun 27, 2017 · I am trying to create a spectrogram from a .wav file in python3. I want the final saved image to look similar to this image: I have tried the following: This stack overflow post: Spectrogram o...

  7. scipy.signal.spectrogram compared to matplotlib.pyplot.specgram

    Feb 3, 2018 · The following code generates a spectrogram using either scipy.signal.spectrogram or matplotlib.pyplot.specgram. The color contrast of the specgram function is, however, rather low.

  8. Reconstruction of audio signal from Spectrogram

    Jul 9, 2013 · A spectrogram matrix is lossy, so can't be used for reconstruction. But if you can reverse engineer a transform to produce your desired spectrogram, you can apply it to the original non-lossy …

  9. Python Audio Analysis, Spectrogram: Which spectrogram should I use …

    Dec 15, 2020 · Spectrogram results are displayed below: My question is, from the 3 spectrograms I have listed above, which spectrogram is best to use for input to CNN and why should I use that …

  10. Producing spectrogram from microphone - Stack Overflow

    Apr 20, 2017 · The spectrogram divides the signal into segments (default length is 256) and computes the spectrum for each. This means we have excellent frequency resolution but very poor time …