嗨,我想提取一些Webradio流的元数据。
我可以使用python-vlc
这是我到目前为止所得到的
url = "http://address.com"
instance = vlc.Instance()
#Create a MediaPlayer with the default instance
player = instance.media_player_new()
#Load the media file
media = instance.media_new(url)
#Add the media to the player
player.set_media(media)
这里缺少“播放”部分,我真正感兴趣的是元数据。我想提取歌曲和歌手。我摆弄了一下,但可以找到任何东西。
有人可以帮我吗?