Python模块创建音乐播放列表(windows)

时间:2013-01-01 20:55:23

标签: python windows

我想创建一个简单的python脚本,查看文件夹和子文件夹,并创建一个播放列表,其中包含包含mp3的文件夹的名称。但到目前为止,我只遇到了在Linux上运行的python模块,或者我无法弄清楚如何安装它们(pymad)..

这只是我的Android手机所以认为m3u格式应该这样做..我不关心任何其他元数据而不是mp3文件本身的名称。

2 个答案:

答案 0 :(得分:2)

我实际上只是看了http://en.wikipedia.org/wiki/M3U,看到写m3u文件很容易......应该可以用简单的python写入文本文件来做到这一点。

这是我的解决方案

import os
import glob

dir = os.getcwd()

for (path, subdirs, files) in os.walk(dir):
    os.chdir(path)
    if glob.glob("*.mp3") != []:
        _m3u = open( os.path.split(path)[1] + ".m3u" , "w" )
        for song in glob.glob("*.mp3"):
            _m3u.write(song + "\n")
        _m3u.close()

os.chdir(dir) # Not really needed.. 

答案 1 :(得分:1)

我写了一些代码,根据您的标准返回所有嵌套播放列表候选列表:

import os

#Input: A path to a folder
#Output: List containing paths to all of the nested folders of path
def getNestedFolderList(path):

    rv = [path]
    ls = os.listdir(path)
    if not ls:
        return rv

    for item in ls:
        itemPath = os.path.join(path,item)
        if os.path.isdir(itemPath):
            rv= rv+getNestedFolderList(itemPath)

    return rv

#Input:  A path to a folder
#Output: (folderName,path,mp3s) if the folder contains mp3s. Else None
def getFolderPlaylist(path):
    mp3s = []
    ls = os.listdir(path)
    for item in ls:
        if item.count('mp3'):
            mp3s.append(item)

    if len(mp3s) > 0:
        folderName = os.path.basename(path)
        return (folderName,path,mp3s)
    else:
        return None

#Input:  A path to a folder
#Output: List of all candidate playlists
def getFolderPlaylists(path):
    rv = []
    nestedFolderList = getNestedFolderList(path)
    for folderPath in nestedFolderList:
        folderPlaylist = getFolderPlaylist(folderPath)
        if folderPlaylist:
            rv.append(folderPlaylist)

    return rv

print getFolderPlaylists('.')