You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="n">sep</span><spanclass="p">:</span><spanclass="n">Union</span><spanclass="p">[</span><spanclass="nb">str</span><spanclass="p">,</span><spanclass="nb">tuple</span><spanclass="p">[</span><spanclass="nb">str</span><spanclass="p">]]</span><spanclass="o">=</span><spanclass="p">(</span><spanclass="s2">", "</span><spanclass="p">,</span><spanclass="s2">" & "</span><spanclass="p">))</span><spanclass="o">-></span><spanclass="n">Union</span><spanclass="p">[</span><spanclass="nb">str</span><spanclass="p">,</span><spanclass="nb">list</span><spanclass="p">[</span><spanclass="n">Any</span><spanclass="p">]]:</span>
"* searching for the track on TIDAL via `minim.tidal.PrivateAPI.search()`,\n",
424
424
"* selecting the correct result by matching the ISRC,\n",
425
-
"* getting the track's composers and lyrics using `minim.tidal.PrivateAPI.get_track_composers()` and `minim.tidal.PrivateAPI.get_track_lyrics()`, respectively, and\n",
425
+
"* getting the track's composers using `minim.tidal.PrivateAPI.get_track_composers()`, and\n",
426
426
"* populating the file handler's metadata with the JSON results using `minim.audio.FLACAudio.set_metadata_using_tidal()`."
"The metadata for the track is now complete. (For this example, TIDAL did not have songwriting credits for the track. This happens sometimes when the track is not very popular.)\n",
480
+
"The metadata for the track is now practically complete. Lyrics are available through either `minim.spotify.PrivateLyricsService.get_lyrics()` or `minim.tidal.PrivateAPI.get_track_lyrics()` with active subscriptions. (For this example, TIDAL did not have songwriting credits for the track. This happens sometimes when the track is not very popular.)\n",
482
481
"\n",
483
482
"Don't forget to write the changes to file using `minim.audio.FLACAudio.write()`!"
484
483
]
@@ -604,7 +603,7 @@
604
603
"cell_type": "markdown",
605
604
"metadata": {},
606
605
"source": [
607
-
"The file has a poorly formatted copyright string and is missing lyrics, tempo, and cover art information. We can fix this by querying the three APIs as we did in the previous example, and overwrite the existing metadata:"
606
+
"The file has a poorly formatted copyright string and is missing tempo and cover art information. We can fix this by querying the three APIs as we did in the previous example, and overwrite the existing metadata:"
0 commit comments