我使用 eyed3 来工作,id3
但每次我想加载一个带有特殊字符的文件时,"ü"
它都会崩溃,因为它无法打开这些文件......
这就是我改用诱变剂的原因。我想检查我的整个图书馆的专辑封面。
#pict_test function
def pict_test(filepath):
audio = File( filepath )
if 'covr' in audio or 'APIC:' in audio:
return True
return False
#main
filepath = "/home/jds/Desktop/M_M/"
#get all files in this directory including sub directories
files = getFiles.get_all_files( filepath )
files = getMp3Files( files )
print "%d mp3 files found.\n" % ( len(files) )
f = open( "No Img.txt", "w" )
for f in files:
if not pict_test( f ): #if no image is found write filepath to file
f.write( f + "\n" )
f.close()
这“有效”。我得到没有专辑封面的文件,但也有专辑封面的文件。
怎么了?