フォルダーとサブフォルダーを調べて、mp3 を含むフォルダーの名前でプレイリストを作成する単純な python スクリプトを作成したいと考えています。しかし、これまでのところ、Linuxで動作するPythonモジュールに出くわしたか、それらをインストールする方法がわかりませんでした(pymad)..
それは私のAndroidモバイル用なので、m3u形式で行う必要があると考えました..mp3ファイル自体の名前以外のメタデータは気にしません。
私は実際に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..
条件に基づいて、ネストされたすべてのプレイリスト候補のリストを返すコードを作成しました。
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('.')