0

您推荐哪些库来读取(解析)多媒体播放列表文件?如果该库支持不同的播放列表格式(如 M3U、WPL 等),这将很有用。

对于 Python,我发现这个页面http://wiki.python.org/moin/PythonInMusic指向 m3ute2 项目,但它似乎已经死了。

4

2 回答 2

1

这是一个解析播放列表的库。该库严重依赖播放列表的正确 mimetype。有几个可以测试库的样本。 http://t11.mine.nu/playlists_analysisr.tar.gz

于 2011-12-04T12:43:55.177 回答
0

就像 Misha 说的,它们是纯文本文件,所以你可以很容易地解析它们。

这是我不久前编写的一个快速 Python 脚本,用于解析 m3u 文件并计算总播放时间以及以分钟为单位打印长度:秒和播放列表中每首歌曲的名称。

#!/usr/local/bin/python

import string, sys

def sec_to_days(seconds) :
    return seconds / 86400

def sec_to_hours(seconds) :
    return seconds / 3600

def sec_to_minutes(seconds) :
    return seconds / 60

def sec_to_minutes_seconds(seconds) :
    minutes = sec_to_minutes(seconds)
    sec = seconds % 60
    return "%(n1)02d:%(n2)02d" % {"n1": minutes, "n2": sec}

# If no arguments were given, print a helpful message
if len(sys.argv)==1:
    print 'Usage:  m3utime filename.m3u'

    sys.exit(0)

filename = sys.argv[1]

items = [line.replace("#EXTINF:", "").strip() for line in file(filename) if line.startswith('#EXTINF')]

splitList = [line.split(",") for line in items ]

time = 0
for s in splitList : time = time + int(s[0])

days = sec_to_days(time)
hours = sec_to_hours(time) - (days * 24)
minutes = sec_to_minutes(time) - (days * 1440) - (hours * 60)
seconds = time % 60

print filename + " : " + str(time) + "s\n"

for s in splitList :
    print sec_to_minutes_seconds(int(s[0])), s[1]

print

print "Total play time : " + str(days) + ":" + str(hours) + ":" + str(minutes) + ":" + str(seconds) + "\n"
于 2011-03-28T21:57:15.393 回答