I need a comprehensive guide on how to use the librosa module on python
igro
July 29, 2019, 10:38am
#2
Hi!
You can find the documentation for librosa
at their website: https://librosa.github.io/librosa/tutorial.html
They also provide a demo:
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Librosa demo\n",
"\n",
"This notebook demonstrates some of the basic functionality of librosa version 0.4.\n",
"\n",
"Following through this example, you'll learn how to:\n",
"\n",
"* Load audio input\n",
"* Compute mel spectrogram, MFCC, delta features, chroma\n",
"* Locate beat events\n",
"* Compute beat-synchronous features\n",
"* Display features"
]
},
{
This file has been truncated. show original
And if you want to use this library in Datalore you need to install it using the Tools -> Library Manager dialog. You may also need to install ffmpeg
library to work with your files.
1 Like