Published On: January 30th, 2023Categories: AI News

Hey! Long time no post here on DEV. I’ve been dealing with my mental health issue for a while. I was diagnosed with Bipolar-mixed with Depression and Anxiety a while back after a village hacking group played with me(they’re still on the run but are currently under surveillance).

Anyway, here’s a quick post to check on how to display the tempo of an audio using librosa. You can check the ipython notebook in google colab if you wish to.

I’m using our song We are Monsters. Check it out if you like it.

You can follow the installation process in their documentation or follow this article 😉



Install and import librosa

python -m pip install librosa
import librosa
Enter fullscreen mode

Exit fullscreen mode



Upload and load the audio file in the notebook as a waveform in y and store the sample rate as sr

audio_file = librosa.load('We Are Monsters.wav')
y

Source link

Leave A Comment