在写一个Widget 显示当前播放音乐的资料 (因为Windows 那个不给我固定!!)

-artist - title -thumbnail 这三个都顺利抓到 亦跟Foobar2000成功同步 唯独是专辑名字无法顺利更新 / 抓不到 求高手解救Q_Q 先谢谢

情况1:Foobar2000 抓不到专辑名字 但同步率(? 基本是一致

情况2:Windows 11 的播放器:放进播放清单 竟然直接什么资料都没有读取

但将档案拖进挡放器又抓到资料 而且经常不能同步更新 (FOOBAR2000却可以?)(这是要我手动播放吗!?)

重开Python 程序 10次大概有3/4次抓到完整资料(Windows11那个播放器) 之后没有了 我完全不知道那里出错Q_Q

抓取档案部份:

def get_current_media_info(self):
try:
paths = [
r"Software\\Microsoft\\MediaPlayer\\Player\\CurrentMedia",
r"Software\\Microsoft\\Windows\\CurrentVersion\\Media Center\\MediaExperience",
r"Software\\Microsoft\\Windows\\CurrentVersion\\Media Player"
]

for reg_path in paths:
try:
key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, reg_path)
for i in range(0, winreg.QueryInfoKey(key)[1]):
name, value, _ = winreg.EnumValue(key, i)
if isinstance(value, str) and value.lower().endswith(\'.flac\'):
if value.startswith(\'file:///\'):
value = value.replace(\'file:///\', \'\')
return value
winreg.CloseKey(key)
except:
continue

music_path = os.path.expanduser(\'~\\\\Music\')
for flac_file in glob.glob(os.path.join(music_path, \'**\', \'*.flac\'), recursive=True):
return flac_file

API 部份:

current_file = self.get_current_media_info()
if current_file and os.path.exists(current_file):
from mutagen import File
audio = File(current_file)

if audio:
if hasattr(audio, \'pictures\') and audio.pictures:
return audio.pictures[0].data

if audio.tags and \'APIC:\' in audio.tags:
return audio.tags[\'APIC:\'].data
except Exception as e:
print(f"本地文件缩略图获取失败: {str(e)}")

return None

except Exception as e:
print(f"缩略图处理错误: {str(e)}")
return None

async def update_media_info(self):
while True:
try:
sessions = await MediaManager.request_async()
current_session = sessions.get_current_session()

if current_session:
info = await current_session.try_get_media_properties_async()
thumbnail_bytes = await self.get_thumbnail_bytes(current_session)

print(f"专辑信息: {info.album_title}")

self.root.after(0, self.update_ui, {
\'title\': info.title,
\'artist\': info.artist,
\'album\': info.album_title, # 这个我是 properties 我想应该没有错才对
\'thumbnail\': thumbnail_bytes,****
```