eyed3


Nameeyed3 JSON
Version 0.9.7 PyPI version JSON
download
home_pagehttps://eyeD3.nicfit.net/
SummaryPython audio data toolkit (ID3 and MP3)
upload_time2022-10-08 03:30:35
maintainerTravis Shirk
docs_urlNone
authorTravis Shirk
requires_python>=3.7,<4.0
licenseGPL-3.0-or-later
keywords id3 mp3 python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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/status/eyeD3.svg
   :target: https://pypi.python.org/pypi/eyeD3/
   :alt: Project Status
.. image:: https://travis-ci.org/nicfit/eyeD3.svg?branch=master
   :target: https://travis-ci.org/nicfit/eyeD3
   :alt: Build Status
.. 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://coveralls.io/repos/nicfit/eyeD3/badge.svg
   :target: https://coveralls.io/r/nicfit/eyeD3
   :alt: Coverage 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`_.

.. _eyeD3: http://eyeD3.nicfit.net/
.. _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: http://eyeD3.nicfit.net/index.html#installation
.. _documentation: http://eyeD3.nicfit.net/index.html#documentation
.. _GPL: http://www.gnu.org/licenses/gpl-2.0.html
.. _ID3: http://id3.org/


            

Raw data

            {
    "_id": null,
    "home_page": "https://eyeD3.nicfit.net/",
    "name": "eyed3",
    "maintainer": "Travis Shirk",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "travis@pobox.com",
    "keywords": "id3,mp3,python",
    "author": "Travis Shirk",
    "author_email": "travis@pobox.com",
    "download_url": "https://files.pythonhosted.org/packages/75/a5/263664ef1f1be58f72c8bc66ef128781af0a8110aeb591428d5c3a67b356/eyeD3-0.9.7.tar.gz",
    "platform": null,
    "description": "Status\n------\n.. image:: https://img.shields.io/pypi/v/eyeD3.svg\n   :target: https://pypi.python.org/pypi/eyeD3/\n   :alt: Latest Version\n.. image:: https://img.shields.io/pypi/status/eyeD3.svg\n   :target: https://pypi.python.org/pypi/eyeD3/\n   :alt: Project Status\n.. image:: https://travis-ci.org/nicfit/eyeD3.svg?branch=master\n   :target: https://travis-ci.org/nicfit/eyeD3\n   :alt: Build Status\n.. image:: https://img.shields.io/pypi/l/eyeD3.svg\n   :target: https://pypi.python.org/pypi/eyeD3/\n   :alt: License\n.. image:: https://img.shields.io/pypi/pyversions/eyeD3.svg\n   :target: https://pypi.python.org/pypi/eyeD3/\n   :alt: Supported Python versions\n.. image:: https://coveralls.io/repos/nicfit/eyeD3/badge.svg\n   :target: https://coveralls.io/r/nicfit/eyeD3\n   :alt: Coverage Status\n\n\nAbout\n-----\neyeD3_ is a Python tool for working with audio files, specifically MP3 files\ncontaining ID3_ metadata (i.e. song info).\n\nIt provides a command-line tool (``eyeD3``) and a Python library\n(``import eyed3``) that can be used to write your own applications or\nplugins that are callable from the command-line tool.\n\nFor example, to set some song information in an mp3 file called\n``song.mp3``::\n\n  $ eyeD3 -a Integrity -A \"Humanity Is The Devil\" -t \"Hollow\" -n 2 song.mp3\n\nWith this command we've set the artist (``-a/--artist``), album\n(``-A/--album``), title (``-t/--title``), and track number\n(``-n/--track-num``) properties in the ID3 tag of the file. This is the\nstandard interface that eyeD3 has always had in the past, therefore it\nis also the default plugin when no other is specified.\n\nThe results of this command can be seen by running the ``eyeD3`` with no\noptions.\n\n::\n\n  $ eyeD3 song.mp3\n  song.mp3\t[ 3.06 MB ]\n  -------------------------------------------------------------------------\n  ID3 v2.4:\n  title: Hollow\n  artist: Integrity\n  album: Humanity Is The Devil\n  album artist: None\n  track: 2\n  -------------------------------------------------------------------------\n\nThe same can be accomplished using Python.\n\n::\n\n  import eyed3\n\n  audiofile = eyed3.load(\"song.mp3\")\n  audiofile.tag.artist = \"Token Entry\"\n  audiofile.tag.album = \"Free For All Comp LP\"\n  audiofile.tag.album_artist = \"Various Artists\"\n  audiofile.tag.title = \"The Edge\"\n  audiofile.tag.track_num = 3\n\n  audiofile.tag.save()\n\neyeD3_ is written and maintained by `Travis Shirk`_ and is licensed under\nversion 3 of the GPL_.\n\nFeatures\n--------\n\n* Python package (`import eyed3`) for writing applications and plugins.\n* `eyeD3` : Command-line tool driver script that supports plugins.\n* Easy ID3 editing/viewing of audio metadata from the command-line.\n* Plugins for: Tag to string formatting (display), album fixing (fixup),\n  cover art downloading (art), collection stats (stats),\n  and json/yaml/jabber/nfo output formats, and more included.\n* Support for ID3 versions 1.x, 2.2 (read-only), 2.3, and 2.4.\n* Support for the MP3 audio format exposing details such as play time, bit\n  rate, sampling frequency, etc.\n* Abstract design allowing future support for different audio formats and\n  metadata containers.\n\nGet Started\n-----------\n\nPython >= 3.7 is required.\n\nFor `installation instructions`_ or more complete `documentation`_ see\nhttp://eyeD3.nicfit.net/\n\nPlease post feedback and/or defects on the `issue tracker`_, or `mailing list`_.\n\n.. _eyeD3: http://eyeD3.nicfit.net/\n.. _Travis Shirk: travis@pobox.com\n.. _issue tracker: https://github.com/nicfit/eyeD3/issues\n.. _mailing list: https://groups.google.com/forum/?fromgroups#!forum/eyed3-users\n.. _installation instructions: http://eyeD3.nicfit.net/index.html#installation\n.. _documentation: http://eyeD3.nicfit.net/index.html#documentation\n.. _GPL: http://www.gnu.org/licenses/gpl-2.0.html\n.. _ID3: http://id3.org/\n\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Python audio data toolkit (ID3 and MP3)",
    "version": "0.9.7",
    "split_keywords": [
        "id3",
        "mp3",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "f0cff0fbcc79d0ac51aaf8ade08310ae",
                "sha256": "145797c36ce0085df1efcd3379b15224f4c8996f79d3575ceaab6dc95d834282"
            },
            "downloads": -1,
            "filename": "eyed3-0.9.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f0cff0fbcc79d0ac51aaf8ade08310ae",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 246107,
            "upload_time": "2022-10-08T03:30:37",
            "upload_time_iso_8601": "2022-10-08T03:30:37.597027Z",
            "url": "https://files.pythonhosted.org/packages/e1/33/b8b37a2d1a59d4f2856bf46ab54293cfc1b187532cba21512d60a6bac602/eyed3-0.9.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ce9bb8e31c24abebbe725bd1811e0376",
                "sha256": "93b18e9393376a45114f9409d7cca119fb6f4f9a37d4b697b500af48b4c5cf0f"
            },
            "downloads": -1,
            "filename": "eyeD3-0.9.7.tar.gz",
            "has_sig": false,
            "md5_digest": "ce9bb8e31c24abebbe725bd1811e0376",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 245122,
            "upload_time": "2022-10-08T03:30:35",
            "upload_time_iso_8601": "2022-10-08T03:30:35.487664Z",
            "url": "https://files.pythonhosted.org/packages/75/a5/263664ef1f1be58f72c8bc66ef128781af0a8110aeb591428d5c3a67b356/eyeD3-0.9.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-10-08 03:30:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "eyed3"
}
        
Elapsed time: 0.02488s