简单ID3标记器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单ID3标记器相关的知识,希望对你有一定的参考价值。
Require the ID3 lib.Place the script in the directory containing the mp3 files.
import os, sys from ID3 import * files = os.listdir(os.getcwd()) for f in files: x = os.path.splitext(f) if x[1] == '.mp3': n = x[0].split(' - ') author = n[0] title = n[1] id3info = ID3(f) id3info['ARTIST'] = author id3info['TITLE'] = title print f+' id3 tagged.' print 'Done!'
以上是关于简单ID3标记器的主要内容,如果未能解决你的问题,请参考以下文章