简单ID3标记器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单ID3标记器相关的知识,希望对你有一定的参考价值。

Require the ID3 lib.
Place the script in the directory containing the mp3 files.
  1. import os, sys
  2. from ID3 import *
  3.  
  4. files = os.listdir(os.getcwd())
  5.  
  6. for f in files:
  7. x = os.path.splitext(f)
  8. if x[1] == '.mp3':
  9. n = x[0].split(' - ')
  10. author = n[0]
  11. title = n[1]
  12. id3info = ID3(f)
  13. id3info['ARTIST'] = author
  14. id3info['TITLE'] = title
  15. print f+' id3 tagged.'
  16. print 'Done!'

以上是关于简单ID3标记器的主要内容,如果未能解决你的问题,请参考以下文章

如何为 Java 剪辑使用 ID3 标记(音频文件详细信息和信息)

JS document对象

ID3 标记 Objective-C

选择器

如何使用Android片段管理器传递变量[重复]

从文件名中提取并填充 id3 标记信息