本文整理汇总了Python中playlist.Playlist.to_repeated_list方法的典型用法代码示例。如果您正苦于以下问题:Python Playlist.to_repeated_list方法的具体用法?Python Playlist.to_repeated_list怎么用?Python Playlist.to_repeated_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类playlist.Playlist
的用法示例。
在下文中一共展示了Playlist.to_repeated_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from playlist import Playlist [as 别名]
# 或者: from playlist.Playlist import to_repeated_list [as 别名]
def main(playlist, src, dest, scale=None, url=False):
"""Writes the playlist in m3u format to stdout, using repetition for weight.
src and dest args are for path rewriting - any paths under src will be rewritten
to be under dest instead."""
playlist = Playlist(playlist)
flattened = playlist.to_repeated_list(scale)
src = '{}/'.format(src.rstrip('/'))
for path in flattened:
if path.startswith(src):
path = os.path.join(dest, os.path.relpath(path, src))
print 'file://{}'.format(path) if url else path