141

是否有可用于使用 Python 检索和设置 MP3 ID3 元数据的维护包?

4

16 回答 16

122

前几天我使用eyeD3取得了很大的成功。我发现它可以将艺术品添加到我查看的其他模块不能的 ID3 标签中。您必须使用 pip 安装或下载 tar 并python setup.py install从源文件夹执行。

网站上的相关示例如下。

读取包含 v1 或 v2 标签信息的 mp3 文件的内容:

 import eyeD3
 tag = eyeD3.Tag()
 tag.link("/some/file.mp3")
 print tag.getArtist()
 print tag.getAlbum()
 print tag.getTitle()

读取一个 mp3 文件(音轨长度、比特率等)并访问它的标签:

if eyeD3.isMp3File(f):
     audioFile = eyeD3.Mp3AudioFile(f)
     tag = audioFile.getTag()

可以选择特定的标签版本:

 tag.link("/some/file.mp3", eyeD3.ID3_V2)
 tag.link("/some/file.mp3", eyeD3.ID3_V1)
 tag.link("/some/file.mp3", eyeD3.ID3_ANY_VERSION)  # The default.

或者您可以遍历原始帧:

 tag = eyeD3.Tag()
 tag.link("/some/file.mp3")
 for frame in tag.frames:
    print frame

将标签链接到文件后,可以对其进行修改和保存:

 tag.setArtist(u"Cro-Mags")
 tag.setAlbum(u"Age of Quarrel")
 tag.update()

如果链接的标签是 v2 并且您想将其保存为 v1:

 tag.update(eyeD3.ID3_V1_1)

读入标签并将其从文件中删除:

 tag.link("/some/file.mp3")
 tag.remove()
 tag.update()

添加新标签:

 tag = eyeD3.Tag()
 tag.link('/some/file.mp3')    # no tag in this file, link returned False
 tag.header.setVersion(eyeD3.ID3_V2_3)
 tag.setArtist('Fugazi')
 tag.update()
于 2008-09-19T14:30:41.610 回答
38

我以前使用过诱变剂来编辑媒体文件中的标签。mutagen 的好处是它可以处理其他格式,例如 mp4、FLAC 等。我使用这个 API 编写了几个脚本并取得了很大的成功。

于 2008-08-14T09:46:21.270 回答
25

一个问题eyed3是它会抛出NotImplementedError("Unable to write ID3 v2.2")常见的 MP3 文件。

以我的经验,mutagen该类的EasyID3工作更可靠。例子:

from mutagen.easyid3 import EasyID3

audio = EasyID3("example.mp3")
audio['title'] = u"Example Title"
audio['artist'] = u"Me"
audio['album'] = u"My album"
audio['composer'] = u"" # clear
audio.save()

所有其他标签都可以通过这种方式访问​​并保存,这将用于大多数用途。更多信息可以在Mutagen 教程中找到。

于 2016-01-24T00:07:24.693 回答
13

你所追求的是ID3模块。它非常简单,可以为您提供所需的一切。只需将 ID3.py 文件复制到您的站点包目录中,您就可以执行以下操作:

from ID3 import *
try:
  id3info = ID3('file.mp3')
  print id3info
  # Change the tags
  id3info['TITLE'] = "Green Eggs and Ham"
  id3info['ARTIST'] = "Dr. Seuss"
  for k, v in id3info.items():
    print k, ":", v
except InvalidTagError, message:
  print "Invalid ID3 tag:", message
于 2008-08-13T00:44:26.090 回答
8

看看这个:

https://github.com/Ciantic/songdetails

使用示例:

>>> import songdetails
>>> song = songdetails.scan("data/song.mp3")
>>> print song.duration
0:03:12

保存更改:

>>> import songdetails
>>> song = songdetails.scan("data/commit.mp3")
>>> song.artist = "Great artist"
>>> song.save()
于 2010-12-30T01:40:52.153 回答
7

只是给你们的补充信息:

查看PythonInMusic页面中的“MP3 素材和元数据编辑器”部分。

于 2011-07-08T08:24:29.367 回答
6

我查看了上面的答案,发现由于 GPL 的许可问题,它们对我的项目不利。

我发现了这个:PyID3Lib,虽然那个特定的python 绑定发布日期很旧,但它使用ID3Lib,它本身是最新的。

值得注意的是,两者都是LGPL,并且很好。

于 2009-12-20T19:32:11.247 回答
6

最简单的方法是歌曲详细信息..

用于读取数据

import songdetails
song = songdetails.scan("blah.mp3")
if song is not None:
    print song.artist

同样用于编辑

import songdetails
song = songdetails.scan("blah.mp3")
if song is not None:
    song.artist = u"The Great Blah"
    song.save()

在你懂中文之前不要忘记在名字前加你。

您可以使用 python glob 模块批量读取和编辑

前任。

import glob
songs = glob.glob('*')   # script should be in directory of songs.
for song in songs:
    # do the above work.
于 2016-08-11T09:05:38.410 回答
6

我使用tinytag 1.3.1因为

  1. 积极支持:
1.3.0 (2020-03-09):
added option to ignore encoding errors ignore_errors #73
Improved text decoding for many malformed files
  1. 它支持主要格式:
MP3 (ID3 v1, v1.1, v2.2, v2.3+)
Wave/RIFF
OGG
OPUS
FLAC
WMA
MP4/M4A/M4B
  1. 该代码在短短几分钟的开发中就可以运行。
from tinytag import TinyTag

fileNameL ='''0bd1ab5f-e42c-4e48-a9e6-b485664594c1.mp3
0ea292c0-2c4b-42d4-a059-98192ac8f55c.mp3
1c49f6b7-6f94-47e1-a0ea-dd0265eb516c.mp3
5c706f3c-eea4-4882-887a-4ff71326d284.mp3
'''.split()

for fn in fileNameL:
    fpath = './data/'+fn
    tag = TinyTag.get(fpath)
    print()
    print('"artist": "%s",' % tag.artist)
    print('"album": "%s",' % tag.album)
    print('"title": "%s",' % tag.title)
    print('"duration(secs)": "%s",' % tag.duration)

  • 结果
JoeTagPj>python joeTagTest.py

"artist": "Conan O’Brien Needs A Friend",
"album": "Conan O’Brien Needs A Friend",
"title": "17. Thomas Middleditch and Ben Schwartz",
"duration(secs)": "3565.1829583532785",

"artist": "Conan O’Brien Needs A Friend",
"album": "Conan O’Brien Needs A Friend",
"title": "Are you ready to make friends?",
"duration(secs)": "417.71840447045264",

"artist": "Conan O’Brien Needs A Friend",
"album": "Conan O’Brien Needs A Friend",
"title": "Introducing Conan’s new podcast",
"duration(secs)": "327.22187551899646",

"artist": "Conan O’Brien Needs A Friend",
"album": "Conan O’Brien Needs A Friend",
"title": "19. Ray Romano",
"duration(secs)": "3484.1986772305863",

C:\1d\PodcastPjs\JoeTagPj>
于 2020-03-10T21:02:09.697 回答
6

在尝试了这里推荐的 eyeD3、pytaglib 和 ID3 模块的简单pip install路径后,我发现这第四个选项是唯一可行的。其余的有导入错误,缺少 C++ 中的依赖项或某些魔术或其他一些缺少的库pip。所以用这个来基本阅读 ID3 标签(所有版本):

https://pypi.python.org/pypi/tinytag/0.18.0

from tinytag import TinyTag
tag = TinyTag.get('/some/music.mp3')

您可以使用 TinyTag 获得的可能属性列表:

tag.album         # album as string
tag.albumartist   # album artist as string
tag.artist        # artist name as string
tag.audio_offset  # number of bytes before audio data begins
tag.bitrate       # bitrate in kBits/s
tag.disc          # disc number
tag.disc_total    # the total number of discs
tag.duration      # duration of the song in seconds
tag.filesize      # file size in bytes
tag.genre         # genre as string
tag.samplerate    # samples per second
tag.title         # title of the song
tag.track         # track number as string
tag.track_total   # total number of tracks as string
tag.year          # year or data as string

正如所宣传的那样,它很小且独立。

于 2018-04-16T01:34:52.833 回答
5

Dive Into Python 一书中的一个简单示例对我来说可以,是下载链接,示例是 fileinfo.py。不知道它是否是最好的,但它可以完成基本工作。

整本书可在此处在线获取。

于 2008-08-12T15:37:24.837 回答
3

使用eyed3的第一个答案已过时,因此这里是它的更新版本。

从 mp3 文件中读取标签:

 import eyed3

 audiofile = eyed3.load("some/file.mp3")
 print(audiofile.tag.artist)
 print(audiofile.tag.album)
 print(audiofile.tag.album_artist)
 print(audiofile.tag.title)
 print(audiofile.tag.track_num)

网站上修改标签的示例:

 import eyed3

 audiofile = eyed3.load("some/file.mp3")
 audiofile.tag.artist = u"Integrity"
 audiofile.tag.album = u"Humanity Is The Devil"
 audiofile.tag.album_artist = u"Integrity"
 audiofile.tag.title = u"Hollow"
 audiofile.tag.track_num = 2

我第一次尝试使用 eyed3 时遇到的一个问题与 libmagic 的导入错误有关,即使它已安装。要解决此问题,请从此处安装 magic-bin whl

于 2018-04-08T15:52:20.267 回答
2

我会建议mp3-tagger。最好的一点是它在MIT 许可下分发并支持所有必需的属性。

- artist;
- album;
- song;
- track;
- comment;
- year;
- genre;
- band;
- composer;
- copyright;
- url;
- publisher.

例子:

from mp3_tagger import MP3File

# Create MP3File instance.
mp3 = MP3File('File_Name.mp3')

# Get all tags.
tags = mp3.get_tags()
print(tags)

它支持设置、获取、更新和删除 mp3 文件的属性。

于 2018-06-26T13:50:36.257 回答
1

除了读取元数据之外,它还可以完全取决于您想要做什么。如果它只是您需要的比特率/名称等,没有别的,那么轻量级的东西可能是最好的。

如果您正在处理 mp3,那么 PyMedia 可能是合适的。

有很多,无论您得到什么,请确保并在大量示例媒体上进行测试。特别是有几个不同版本的 ID3 标签,所以请确保它不会太过时。

就个人而言,我很幸运地使用了这个小型 MP3Info 类。不过它已经很老了。

http://www.omniscia.org/~vivake/python/MP3Info.py

于 2008-08-12T15:37:59.080 回答
1

经过一些初步研究,我认为 songdetails 可能适合我的用例,但它不能处理 .m4b 文件。诱变剂可以。请注意,虽然有些人(合理地)对 Mutagen 的 format-native 键的表面处理提出了问题,但因格式而异(mp3 为 TIT2,ogg 为标题,mp4 为 \xa9nam,WMA 为标题等),mutagen.File( ) 有一个(新的?)easy=True 参数,它提供了 EasyMP3/EasyID3 标签,这些标签有一组一致但有限的​​键。到目前为止,我只进行了有限的测试,但是当使用 easy=True 时,.mb4 和 .mp3 文件的常用键,如专辑、艺术家、专辑艺术家、流派、曲目编号、光盘编号等都存在并且相同,使其成为非常方便我的目的。

于 2015-07-12T23:17:59.617 回答
1

使用https://github.com/nicfit/eyeD3

import eyed3
import os

for root,  dirs, files in os.walk(folderp):
    for file in files:
        try:
            if file.find(".mp3") < 0:
                continue
            path = os.path.abspath(os.path.join(root , file))
            t = eyed3.load(path)
            print(t.tag.title , t.tag.artist)
            #print(t.getArtist())
        except Exception as e:
            print(e)
            continue
于 2020-02-06T23:51:17.937 回答