Python audio data toolkit (ID3 and MP3)
Project description
Status
About
eyeD3 is a Python tool for working with audio files, specifically MP3 files containing ID3 metadata (i.e. song info).
It provides a command-line tool (eyeD3) and a Python library (import eyed3) that can be used to write your own applications or plugins that are callable from the command-line tool.
For example, to set some song information in an mp3 file called song.mp3:
$ eyeD3 -a Integrity -A "Humanity Is The Devil" -t "Hollow" -n 2 song.mp3
With this command we’ve set the artist (-a/--artist), album (-A/--album), title (-t/--title), and track number (-n/--track-num) properties in the ID3 tag of the file. This is the standard interface that eyeD3 has always had in the past, therefore it is also the default plugin when no other is specified.
The results of this command can be seen by running the eyeD3 with no options.
$ eyeD3 song.mp3 song.mp3 [ 3.06 MB ] ------------------------------------------------------------------------- ID3 v2.4: title: Hollow artist: Integrity album: Humanity Is The Devil album artist: None track: 2 -------------------------------------------------------------------------
The same can be accomplished using Python.
import eyed3 audiofile = eyed3.load("song.mp3") audiofile.tag.artist = "Token Entry" audiofile.tag.album = "Free For All Comp LP" audiofile.tag.album_artist = "Various Artists" audiofile.tag.title = "The Edge" audiofile.tag.track_num = 3 audiofile.tag.save()
eyeD3 is written and maintained by Travis Shirk and is licensed under version 3 of the GPL.
Features
Python package (import eyed3) for writing applications and plugins.
eyeD3 : Command-line tool driver script that supports plugins.
Easy ID3 editing/viewing of audio metadata from the command-line.
Plugins for: Tag to string formatting (display), album fixing (fixup), cover art downloading (art), collection stats (stats), and json/yaml/jabber/nfo output formats, and more included.
Support for ID3 versions 1.x, 2.2 (read-only), 2.3, and 2.4.
Support for the MP3 audio format exposing details such as play time, bit rate, sampling frequency, etc.
Abstract design allowing future support for different audio formats and metadata containers.
Get Started
Python >= 3.7 is required.
For installation instructions or more complete documentation see http://eyeD3.nicfit.net/
Please post feedback and/or defects on the issue tracker, or mailing list.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eyeD3-0.9.7.tar.gz
.
File metadata
- Download URL: eyeD3-0.9.7.tar.gz
- Upload date:
- Size: 245.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.7 Linux/5.19.9-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93b18e9393376a45114f9409d7cca119fb6f4f9a37d4b697b500af48b4c5cf0f |
|
MD5 | ce9bb8e31c24abebbe725bd1811e0376 |
|
BLAKE2b-256 | 75a5263664ef1f1be58f72c8bc66ef128781af0a8110aeb591428d5c3a67b356 |
File details
Details for the file eyed3-0.9.7-py3-none-any.whl
.
File metadata
- Download URL: eyed3-0.9.7-py3-none-any.whl
- Upload date:
- Size: 246.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.7 Linux/5.19.9-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 145797c36ce0085df1efcd3379b15224f4c8996f79d3575ceaab6dc95d834282 |
|
MD5 | f0cff0fbcc79d0ac51aaf8ade08310ae |
|
BLAKE2b-256 | e133b8b37a2d1a59d4f2856bf46ab54293cfc1b187532cba21512d60a6bac602 |