如何使用python从.mp3文件中获取横幅艺术、艺术家名称和歌曲名称



**

我想制作一个音乐应用程序,我成功地从kivy.core.audio获得了歌曲并使用SoundLoader播放了它们

我还将它们添加到了OneLineIconList项目中,但我不知道如何仅使用python获得专辑艺术/横幅艺术、艺术家名称、歌曲名称和歌曲的持续时间

而且还可以将其全部离线。如果是,那么你能给我这个


的代码吗?提前感谢

**

import os
st = os.stat("file.dat")

此函数采用文件名,并返回一个包含以下内容的10成员元组:

(mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)

下面是一个简短的用法示例:

import os, time
from stat import * # ST_SIZE etc
try:
st = os.stat(file)
except IOError:
print "failed to get information about", file
else:
print "file size:", st[ST_SIZE]
print "file modified:", time.asctime(time.localtime(st[ST_MTIME]))

来源:http://effbot.org/zone/python-fileinfo.htm

相关内容

  • 没有找到相关文章

最新更新