eyed3

eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).

https://github.com/nicfit/eyed3

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.3%) to scientific vocabulary

Keywords

id3v1 id3v2 mp3 mp3tag music python

Keywords from Contributors

cryptocurrencies closember notebook distribution annotation json-schema asyncio serializer shellcodes http-client
Last synced: 6 months ago · JSON representation

Repository

eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).

Basic Info
  • Host: GitHub
  • Owner: nicfit
  • License: gpl-3.0
  • Language: Python
  • Default Branch: 0.9.x
  • Homepage: http://eyed3.nicfit.net/
  • Size: 2.38 MB
Statistics
  • Stars: 592
  • Watchers: 6
  • Forks: 65
  • Open Issues: 30
  • Releases: 28
Topics
id3v1 id3v2 mp3 mp3tag music python
Created about 9 years ago · Last pushed 7 months ago
Metadata Files
Readme Changelog Contributing License Authors

README.rst

Status
------
.. image:: https://img.shields.io/pypi/v/eyeD3.svg
   :target: https://pypi.python.org/pypi/eyeD3/
   :alt: Latest Version
.. image:: https://img.shields.io/pypi/l/eyeD3.svg
   :target: https://pypi.python.org/pypi/eyeD3/
   :alt: License
.. image:: https://img.shields.io/pypi/pyversions/eyeD3.svg
   :target: https://pypi.python.org/pypi/eyeD3/
   :alt: Supported Python versions
.. image:: https://img.shields.io/pypi/dm/eyeD3
   :alt: PyPI - Downloads
.. image:: https://img.shields.io/github/stars/nicfit/eyeD3
   :alt: GitHub Repo stars


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.9 is required.

For `installation instructions`_ or more complete `documentation`_ see
https://eyed3.readthedocs.io/

Please post feedback and/or defects on the `issue tracker`_, or `mailing list`_.

.. _eyeD3: https://eyed3.readthedocs.io/
.. _Travis Shirk: travis@pobox.com
.. _issue tracker: https://github.com/nicfit/eyeD3/issues
.. _mailing list: https://groups.google.com/forum/?fromgroups#!forum/eyed3-users
.. _installation instructions: https://eyed3.readthedocs.io/en/latest/installation.html
.. _documentation: https://eyed3.readthedocs.io/
.. _GPL: http://www.gnu.org/licenses/gpl-2.0.html
.. _ID3: http://id3.org/

Owner

  • Name: nicfit
  • Login: nicfit
  • Kind: user
  • Location: Colorado, USA

GitHub Events

Total
  • Create event: 28
  • Release event: 2
  • Issues event: 57
  • Watch event: 57
  • Delete event: 31
  • Issue comment event: 71
  • Push event: 76
  • Pull request review event: 4
  • Pull request event: 52
  • Fork event: 9
Last Year
  • Create event: 28
  • Release event: 2
  • Issues event: 57
  • Watch event: 57
  • Delete event: 31
  • Issue comment event: 71
  • Push event: 76
  • Pull request review event: 4
  • Pull request event: 52
  • Fork event: 9

Committers

Last synced: 9 months ago

All Time
  • Total Commits: 1,299
  • Total Committers: 31
  • Avg Commits per committer: 41.903
  • Development Distribution Score (DDS): 0.232
Past Year
  • Commits: 33
  • Committers: 7
  • Avg Commits per committer: 4.714
  • Development Distribution Score (DDS): 0.303
Top Committers
Name Email Commits
nicfit t****s@p****m 997
pyup.io bot g****t@p****o 183
dependabot-preview[bot] 2****] 56
Hans Meine h****e 6
dependabot[bot] 4****] 6
gaetano-guerriero x****o@t****t 6
Hans Petter Jansson h****j@c****o 5
Sebastian Patschorke s****t 5
mafro g****b@m****t 4
Todd Zullinger t****z@p****m 4
Bouke Versteegh i****o@b****l 3
Gabriel Diego Teixeira g****a@g****m 2
Jordi Sabater g****r 2
Michał Górny m****y@g****g 2
Tim Gates t****s@i****m 2
zhu z****u@g****m 1
piatrashkakanstantinass 7****s 1
obskyr p****d@g****m 1
guiweber g****b@g****m 1
grun g****d@g****m 1
gersonkurz g****z@g****m 1
chamatht c****t@g****m 1
Thomas Klausner tk@g****t 1
TJ-59 8****9 1
Steve Kowalik s****n@w****g 1
Ramiro Gómez c****e@r****g 1
Jörg Thalheim M****2 1
Jonathan Herlin J****e@j****e 1
Emmanuel Ferdman e****n@g****m 1
Deoren Moor d****n 1
and 1 more...
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 116
  • Total pull requests: 94
  • Average time to close issues: over 1 year
  • Average time to close pull requests: 3 months
  • Total issue authors: 89
  • Total pull request authors: 20
  • Average comments per issue: 2.05
  • Average comments per pull request: 0.5
  • Merged pull requests: 49
  • Bot issues: 0
  • Bot pull requests: 38
Past Year
  • Issues: 14
  • Pull requests: 46
  • Average time to close issues: 3 months
  • Average time to close pull requests: 17 days
  • Issue authors: 12
  • Pull request authors: 9
  • Average comments per issue: 1.0
  • Average comments per pull request: 0.28
  • Merged pull requests: 30
  • Bot issues: 0
  • Bot pull requests: 8
Top Authors
Issue Authors
  • WGroleau (11)
  • nicfit (8)
  • atomGit (4)
  • foremtehan (3)
  • cyberdynesoftware (2)
  • odie5533 (2)
  • awsms (2)
  • morfikov (2)
  • mgorny (2)
  • UnixCro (1)
  • frsconsulting (1)
  • fluidblue (1)
  • aman-rohilla (1)
  • papadeltasierra (1)
  • BlastFM (1)
Pull Request Authors
  • dependabot[bot] (32)
  • nicfit (25)
  • dependabot-preview[bot] (11)
  • tmzullinger (10)
  • mgorny (4)
  • fmigneault (2)
  • s-t-e-v-e-n-k (2)
  • ferdnyc (2)
  • obskyr (2)
  • TJ-59 (2)
  • zvodd (1)
  • timgates42 (1)
  • Jonher937 (1)
  • gobater (1)
  • pierostrada (1)
Top Labels
Issue Labels
help wanted (13) Informational (10) invalid (4) feature (4) needs more info (2) duplicate (1) bug (1) task (1)
Pull Request Labels
dependencies (42) python (6) security (5) help wanted (1)

Packages

  • Total packages: 3
  • Total downloads:
    • pypi 78,806 last-month
  • Total docker downloads: 2,202
  • Total dependent packages: 27
    (may contain duplicates)
  • Total dependent repositories: 208
    (may contain duplicates)
  • Total versions: 81
  • Total maintainers: 1
pypi.org: eyed3

Python audio data toolkit (ID3 and MP3)

  • Versions: 13
  • Dependent Packages: 27
  • Dependent Repositories: 208
  • Downloads: 78,806 Last month
  • Docker Downloads: 2,202
Rankings
Dependent packages count: 0.5%
Dependent repos count: 1.1%
Downloads: 2.0%
Docker downloads count: 2.4%
Average: 2.4%
Stargazers count: 2.8%
Forks count: 5.5%
Maintainers (1)
Last synced: 6 months ago
proxy.golang.org: github.com/nicfit/eyed3
  • Versions: 34
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Stargazers count: 2.6%
Forks count: 3.2%
Average: 6.6%
Dependent packages count: 9.6%
Dependent repos count: 10.8%
Last synced: 6 months ago
proxy.golang.org: github.com/nicfit/eyeD3
  • Versions: 34
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Stargazers count: 2.7%
Forks count: 3.2%
Average: 6.6%
Dependent packages count: 9.6%
Dependent repos count: 10.8%
Last synced: 6 months ago

Dependencies

poetry.lock pypi
  • alabaster 0.7.12 develop
  • arrow 1.2.1 develop
  • babel 2.9.1 develop
  • binaryornot 0.4.4 develop
  • bleach 4.1.0 develop
  • cffi 1.15.0 develop
  • chardet 4.0.0 develop
  • click 8.0.3 develop
  • cogapp 3.3.0 develop
  • cookiecutter 1.7.3 develop
  • cryptography 36.0.1 develop
  • docutils 0.16 develop
  • gitchangelog 3.0.3 develop
  • imagesize 1.3.0 develop
  • jeepney 0.7.1 develop
  • jinja2 3.0.3 develop
  • jinja2-time 0.2.0 develop
  • keyring 22.3.0 develop
  • markupsafe 2.0.1 develop
  • nicfit.py 0.8.7 develop
  • paver 1.3.4 develop
  • pkginfo 1.8.2 develop
  • poetry-core 1.0.7 develop
  • poetry2setup 1.0.0 develop
  • poyo 0.5.0 develop
  • pycparser 2.21 develop
  • pygments 2.11.2 develop
  • python-slugify 5.0.2 develop
  • pytz 2021.3 develop
  • pywin32-ctypes 0.2.0 develop
  • pyyaml 6.0 develop
  • readme-renderer 32.0 develop
  • regarding 0.1.4 develop
  • requests-toolbelt 0.9.1 develop
  • rfc3986 2.0.0 develop
  • secretstorage 3.3.1 develop
  • snowballstemmer 2.2.0 develop
  • sphinx 3.5.4 develop
  • sphinx-issues 1.2.0 develop
  • sphinx-rtd-theme 0.5.2 develop
  • sphinxcontrib-applehelp 1.0.2 develop
  • sphinxcontrib-devhelp 1.0.2 develop
  • sphinxcontrib-htmlhelp 2.0.0 develop
  • sphinxcontrib-jsmath 1.0.1 develop
  • sphinxcontrib-qthelp 1.0.3 develop
  • sphinxcontrib-serializinghtml 1.1.5 develop
  • tqdm 4.62.3 develop
  • twine 3.3.0 develop
  • webencodings 0.5.1 develop
  • atomicwrites 1.4.0
  • attrs 21.4.0
  • build 0.7.0
  • certifi 2021.10.8
  • charset-normalizer 2.0.10
  • check-manifest 0.45
  • colorama 0.4.4
  • coverage 5.5
  • deprecation 2.1.0
  • distlib 0.3.4
  • factory-boy 3.2.1
  • faker 11.3.0
  • filelock 3.4.2
  • filetype 1.0.9
  • flake8 3.9.2
  • grako 3.99.9
  • idna 3.3
  • importlib-metadata 1.7.0
  • iniconfig 1.1.1
  • mccabe 0.6.1
  • packaging 21.3
  • pep517 0.12.0
  • pillow 9.0.0
  • platformdirs 2.4.1
  • pluggy 1.0.0
  • py 1.11.0
  • pycodestyle 2.7.0
  • pyflakes 2.3.1
  • pylast 4.4.0
  • pyparsing 3.0.6
  • pytest 6.2.5
  • pytest-cov 2.12.1
  • python-dateutil 2.8.2
  • requests 2.27.1
  • ruamel.yaml 0.16.13
  • ruamel.yaml.clib 0.2.6
  • six 1.16.0
  • text-unidecode 1.3
  • toml 0.10.2
  • tomli 2.0.0
  • tox 3.24.5
  • typing-extensions 4.0.1
  • urllib3 1.26.8
  • virtualenv 20.13.0
  • zipp 3.7.0
requirements/dev-requirements.txt pypi
  • certifi ==2021.10.8 development
  • charset-normalizer ==2.0.10 development
  • deprecation ==2.1.0 development
  • filetype ==1.0.9 development
  • idna ==3.3 development
  • packaging ==21.3 development
  • pyparsing ==3.0.6 development
  • requests ==2.27.1 development
  • urllib3 ==1.26.8 development
requirements/extra-requirements.txt pypi
  • certifi ==2021.10.8
  • charset-normalizer ==2.0.10
  • deprecation ==2.1.0
  • filetype ==1.0.9
  • grako ==3.99.9
  • idna ==3.3
  • importlib-metadata ==1.7.0
  • packaging ==21.3
  • pillow ==9.0.0
  • pylast ==4.4.0
  • pyparsing ==3.0.6
  • requests ==2.27.1
  • ruamel.yaml ==0.16.13
  • ruamel.yaml.clib ==0.2.6
  • urllib3 ==1.26.8
  • zipp ==3.7.0
requirements/requirements.txt pypi
  • certifi ==2021.10.8
  • charset-normalizer ==2.0.10
  • deprecation ==2.1.0
  • filetype ==1.0.9
  • idna ==3.3
  • packaging ==21.3
  • pyparsing ==3.0.6
  • requests ==2.27.1
  • urllib3 ==1.26.8
requirements/test-requirements.txt pypi
  • atomicwrites ==1.4.0 test
  • attrs ==21.4.0 test
  • build ==0.7.0 test
  • certifi ==2021.10.8 test
  • charset-normalizer ==2.0.10 test
  • check-manifest ==0.45 test
  • colorama ==0.4.4 test
  • coverage ==5.5 test
  • deprecation ==2.1.0 test
  • distlib ==0.3.4 test
  • factory-boy ==3.2.1 test
  • faker ==11.3.0 test
  • filelock ==3.4.2 test
  • filetype ==1.0.9 test
  • flake8 ==3.9.2 test
  • idna ==3.3 test
  • importlib-metadata ==1.7.0 test
  • iniconfig ==1.1.1 test
  • mccabe ==0.6.1 test
  • packaging ==21.3 test
  • pep517 ==0.12.0 test
  • platformdirs ==2.4.1 test
  • pluggy ==1.0.0 test
  • py ==1.11.0 test
  • pycodestyle ==2.7.0 test
  • pyflakes ==2.3.1 test
  • pyparsing ==3.0.6 test
  • pytest ==6.2.5 test
  • pytest-cov ==2.12.1 test
  • python-dateutil ==2.8.2 test
  • requests ==2.27.1 test
  • six ==1.16.0 test
  • text-unidecode ==1.3 test
  • toml ==0.10.2 test
  • tomli ==2.0.0 test
  • tox ==3.24.5 test
  • typing-extensions ==4.0.1 test
  • urllib3 ==1.26.8 test
  • virtualenv ==20.13.0 test
  • zipp ==3.7.0 test
.github/workflows/codeql-analysis.yml actions
  • actions/checkout v2 composite
  • github/codeql-action/analyze v1 composite
  • github/codeql-action/autobuild v1 composite
  • github/codeql-action/init v1 composite
.github/workflows/main.yml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
pyproject.toml pypi
  • Pillow >=8.0.1,<10.0.0
  • check-manifest ^0.45
  • coverage ^5.3.1
  • deprecation ^2.1.0
  • factory-boy ^3.1.0
  • filetype ^1.0.7
  • flake8 ^3.8.4
  • pylast ^4.0.0
  • pytest ^6.2.1
  • pytest-cov ^2.10.1
  • python ^3.7
  • requests ^2.25.0
  • ruamel.yaml ^0.16.12
  • tox ^3.20.1
setup.py pypi