如何使用 Python 3 从 .mp3 文件中检测名称

How to detect a name from an .mp3 file with Python 3

我是 Whosebug 的新手。我只想检测一个已经存在的 .mp3 文件中的名称,当它识别出该名称时,我希望程序发出蜂鸣声或发出声音。我已经知道 .mp3 元数据,但它无法按我想要的方式工作。请帮我! :)

import winsound
import os

frequency = 2500  
duration = 1000  

keyword = 'file'
for fname in os.listdir('directory/with/files'):
    if keyword in fname:
        print(fname, "has the keyword")
        winsound.Beep(frequency, duration)