使用 Spotipy 检测歌曲的结尾

Detect the end of a song using Spotipy

我正在使用 Spotipy and LyricsGenius 从终端在网络浏览器上打开歌词。

我可以为一首歌曲打开一个url,但每次都必须运行脚本连续运行。使用 Spotipy 检测歌曲结尾的方法有哪些?

import spotipy
import webbrowser
import lyricsgenius as lg

...

# Create our spotifyObject
spotifyObject = spotipy.Spotify(auth=token)

# Create out geniusObject
geniusObject = lg.Genius(access_token)

...

while True:

    currently_playing = spotifyObject.currently_playing()
    artist = currently_playing['item']['artists'][0]['name']
    title = currently_playing['item']['name']
    search_query = artist + " " + title

    # if (currently_playing has changed):
        song = geniusObject.search_songs(search_query)
        song_url = song['hits'][0]['result']['url']
        webbrowser.open(song_url)

    webbrowser.open(song_url)

我正在阅读相关主题,例如 this, ,并通读了文档,但找不到我的问题的答案,如果这可以由 Spotipy 处理的话。如果有任何建议,我将不胜感激。

我使用 time.sleep(长度) 和参数 'length' 代表当前曲目的剩余持续时间。