|
175 | 175 | },
|
176 | 176 | {
|
177 | 177 | "cell_type": "code",
|
178 |
| - "execution_count": 10, |
| 178 | + "execution_count": null, |
179 | 179 | "metadata": {},
|
180 | 180 | "outputs": [
|
181 | 181 | {
|
|
197 | 197 | "plt.figure(figsize=(15, 17))\n",
|
198 | 198 | "\n",
|
199 | 199 | "ax = plt.subplot(3, 1, 1)\n",
|
200 |
| - "librosa.display.waveplot(debussy, alpha=0.5)\n", |
| 200 | + "librosa.display.waveshow(debussy, alpha=0.5)\n", |
201 | 201 | "plt.plot(t, rms_debussy, color=\"r\")\n",
|
202 | 202 | "plt.ylim((-1, 1))\n",
|
203 | 203 | "plt.title(\"Debusy\")\n",
|
204 | 204 | "\n",
|
205 | 205 | "plt.subplot(3, 1, 2)\n",
|
206 |
| - "librosa.display.waveplot(redhot, alpha=0.5)\n", |
| 206 | + "librosa.display.waveshow(redhot, alpha=0.5)\n", |
207 | 207 | "plt.plot(t, rms_redhot, color=\"r\")\n",
|
208 | 208 | "plt.ylim((-1, 1))\n",
|
209 | 209 | "plt.title(\"RHCP\")\n",
|
210 | 210 | "\n",
|
211 | 211 | "plt.subplot(3, 1, 3)\n",
|
212 |
| - "librosa.display.waveplot(duke, alpha=0.5)\n", |
| 212 | + "librosa.display.waveshow(duke, alpha=0.5)\n", |
213 | 213 | "plt.plot(t, rms_duke, color=\"r\")\n",
|
214 | 214 | "plt.ylim((-1, 1))\n",
|
215 | 215 | "plt.title(\"Duke Ellington\")\n",
|
|
253 | 253 | },
|
254 | 254 | {
|
255 | 255 | "cell_type": "code",
|
256 |
| - "execution_count": 13, |
| 256 | + "execution_count": null, |
257 | 257 | "metadata": {},
|
258 | 258 | "outputs": [
|
259 | 259 | {
|
|
273 | 273 | "plt.figure(figsize=(15, 17))\n",
|
274 | 274 | "\n",
|
275 | 275 | "ax = plt.subplot(3, 1, 1)\n",
|
276 |
| - "librosa.display.waveplot(debussy, alpha=0.5)\n", |
| 276 | + "librosa.display.waveshow(debussy, alpha=0.5)\n", |
277 | 277 | "plt.plot(t, rms_debussy, color=\"r\")\n",
|
278 | 278 | "plt.plot(t, rms_debussy1, color=\"y\")\n",
|
279 | 279 | "plt.ylim((-1, 1))\n",
|
280 | 280 | "plt.title(\"Debusy\")\n",
|
281 | 281 | "\n",
|
282 | 282 | "plt.subplot(3, 1, 2)\n",
|
283 |
| - "librosa.display.waveplot(redhot, alpha=0.5)\n", |
| 283 | + "librosa.display.waveshow(redhot, alpha=0.5)\n", |
284 | 284 | "plt.plot(t, rms_redhot, color=\"r\")\n",
|
285 | 285 | "plt.plot(t, rms_redhot1, color=\"y\")\n",
|
286 | 286 | "plt.ylim((-1, 1))\n",
|
287 | 287 | "plt.title(\"RHCP\")\n",
|
288 | 288 | "\n",
|
289 | 289 | "plt.subplot(3, 1, 3)\n",
|
290 |
| - "librosa.display.waveplot(duke, alpha=0.5)\n", |
| 290 | + "librosa.display.waveshow(duke, alpha=0.5)\n", |
291 | 291 | "plt.plot(t, rms_duke, color=\"r\")\n",
|
292 | 292 | "plt.plot(t, rms_duke1, color=\"y\")\n",
|
293 | 293 | "plt.ylim((-1, 1))\n",
|
|
0 commit comments