About 50 results
Open links in new tab
  1. python - What does librosa.load return? - Stack Overflow

    May 24, 2020 · I'm working with the librosa library, and I would like to know what information is returned by the librosa.load function when I read a audio (.wav) file. Is it the instantaneous sound pressure in p...

  2. Reading a wav file with scipy and librosa in python

    Feb 5, 2019 · import librosa (sig, rate) = librosa.load(_wav_file_, sr=None) That is working properly for all cases, however, I noticed a difference in the colors of the spectrogram. While it was the same …

  3. Newest 'librosa' Questions - Stack Overflow

    Mar 31, 2018 · i have plotted a spectogram from an audio file imported with librosa and converted it to a logarithmic scale: mel_spectrogram = librosa.feature.melspectrogram(y=audio_data, sr=sr, …

  4. python - STFT understanding using librosa - Stack Overflow

    Jul 16, 2019 · I have an audio sample of about 14 seconds in 8khz Sample Rate. Im using librosa to extract some features from this audio file. y, sr = librosa.load(file_name) stft = np.abs(librosa.stft(y, …

  5. audio - How to get complete fundamental (f0) frequency extraction …

    Nov 28, 2022 · times = librosa.times_like(o_env, sr=sr) onset_frames = librosa.onset.onset_detect(onset_envelope=o_env, sr=sr) Another view with power spectrogram: I …

  6. ModuleNotFoundError: No module named 'librosa' - Stack Overflow

    Currently I am working on voice recognition where I wanted to use Librosa library. I install librosa with the command on ubuntu: conda install -c conda-forge librosa But when I run the code I got ...

  7. Getting the frequencies associated with STFT in Librosa

    Aug 11, 2020 · When using librosa.stft() to calculate a spectrogram, how does one get back the associated frequency values? I am not interested in generating an image as in …

  8. What is the conceptual purpose of librosa.amplitude_to_db?

    Aug 11, 2020 · The default for librosa.amplitude_to_db is to compute numpy.max, meaning that the max value of the input will be mapped to 0 dB. All other values will then be negative. The function also …

  9. python - Downsampling wav audio file - Stack Overflow

    Mar 17, 2019 · I have to downsample a wav file from 44100Hz to 16000Hz without using any external Python libraries, so preferably wave and/or audioop. I tried just changing the wav files framerate to …

  10. audioread.exceptions.NoBackendError in librosa - Stack Overflow

    Jan 3, 2020 · librosa can't read mp3 files directly so it tries to use the audioread package. Audioread tries to utilise a number of different packages that may or may not be installed. One of those is …