Commit ef2aad82 authored by Sudara's avatar Sudara

A few more librosa keyword arg tweaks

parent 9e46b7f7
...@@ -471,7 +471,7 @@ ...@@ -471,7 +471,7 @@
"outputs": [], "outputs": [],
"source": [ "source": [
"# See http://musicinformationretrieval.com/stft.html for more details on displaying spectrograms.\n", "# See http://musicinformationretrieval.com/stft.html for more details on displaying spectrograms.\n",
"S_busta = librosa.feature.melspectrogram(x_busta, fs_busta)" "S_busta = librosa.feature.melspectrogram(x_busta, sr=fs_busta)"
] ]
}, },
{ {
...@@ -514,7 +514,7 @@ ...@@ -514,7 +514,7 @@
} }
], ],
"source": [ "source": [
"librosa.display.specshow(S_log_busta, fs_busta, x_axis='time', y_axis='mel')" "librosa.display.specshow(S_log_busta, sr=fs_busta, x_axis='time', y_axis='mel')"
] ]
}, },
{ {
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment