wavinfo


Namewavinfo JSON
Version 2.2.1 PyPI version JSON
download
home_page
SummaryProbe WAVE Files for iXML, Broadcast-WAVE and other metadata.
upload_time2023-05-30 23:06:43
maintainer
docs_urlNone
author
requires_python~=3.8
license
keywords waveform metadata audio ebu smpte avi library film broadcast
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Documentation Status](https://readthedocs.org/projects/wavinfo/badge/?version=latest)](https://wavinfo.readthedocs.io/en/latest/?badge=latest) ![](https://img.shields.io/github/license/iluvcapra/wavinfo.svg) ![](https://img.shields.io/pypi/pyversions/wavinfo.svg) [![](https://img.shields.io/pypi/v/wavinfo.svg)](https://pypi.org/project/wavinfo/) ![](https://img.shields.io/pypi/wheel/wavinfo.svg)
[![Lint and Test](https://github.com/iluvcapra/wavinfo/actions/workflows/python-package.yml/badge.svg)](https://github.com/iluvcapra/wavinfo/actions/workflows/python-package.yml)

# wavinfo

The `wavinfo` package allows you to probe WAVE and [RF64/WAVE files][eburf64] and extract extended metadata, with an emphasis on film, video and professional music production metadata.


## Metadata Support

`wavinfo` reads:

* [Broadcast-WAVE][bext] metadata, including embedded program
  loudness, coding history and [SMPTE UMID][smpte_330m2011].
* [ADM][adm] track metadata and schema, including channel, pack formats, object, content and programme.
* [Dolby Digital Plus][ebu3285s6] and Dolby Atmos `dbmd` metadata.
* [iXML][ixml] production recorder metadata, including project, scene, and take tags, recorder notes
  and file family information.
  * iXML `STEINBERG` sound library attributes.
* Most of the common [RIFF INFO][info-tags] metadata fields.
* The __wav format__ is also parsed, so you can access the basic sample rate and channel count
  information.

In progress:
* Pro Tools __embedded regions__.

[bext]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html
[smpte_330m2011]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html#wavinfo.wave_bext_reader.WavBextReader.umid
[adm]:https://wavinfo.readthedocs.io/en/latest/scopes/adm.html
[ebu3285s6]:https://wavinfo.readthedocs.io/en/latest/scopes/dolby.html
[ixml]:https://wavinfo.readthedocs.io/en/latest/scopes/ixml.html
[info-tags]:https://wavinfo.readthedocs.io/en/latest/scopes/info.html
[eburf64]:https://tech.ebu.ch/docs/tech/tech3306v1_1.pdf


## How To Use

The entry point for wavinfo is the WavInfoReader class.

```python
from wavinfo import WavInfoReader

path = '../tests/test_files/A101_1.WAV'

info = WavInfoReader(path)

adm_metadata = info.adm
ixml_metadata = info.ixml
```

The package also installs a shell command:

```sh
$ wavinfo test_files/A101_1.WAV
```

## Other Resources

* For other file formats and ID3 decoding, look at [audio-metadata](https://github.com/thebigmunch/audio-metadata).


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "wavinfo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": "",
    "keywords": "waveform,metadata,audio,ebu,smpte,avi,library,film,broadcast",
    "author": "",
    "author_email": "Jamie Hardt <jamiehardt@me.com>",
    "download_url": "https://files.pythonhosted.org/packages/d6/bf/b3fd2088eb7ed36f8427200c15569b24ad18bb76d5f28df4b69b944c9824/wavinfo-2.2.1.tar.gz",
    "platform": null,
    "description": "[![Documentation Status](https://readthedocs.org/projects/wavinfo/badge/?version=latest)](https://wavinfo.readthedocs.io/en/latest/?badge=latest) ![](https://img.shields.io/github/license/iluvcapra/wavinfo.svg) ![](https://img.shields.io/pypi/pyversions/wavinfo.svg) [![](https://img.shields.io/pypi/v/wavinfo.svg)](https://pypi.org/project/wavinfo/) ![](https://img.shields.io/pypi/wheel/wavinfo.svg)\n[![Lint and Test](https://github.com/iluvcapra/wavinfo/actions/workflows/python-package.yml/badge.svg)](https://github.com/iluvcapra/wavinfo/actions/workflows/python-package.yml)\n\n# wavinfo\n\nThe `wavinfo` package allows you to probe WAVE and [RF64/WAVE files][eburf64] and extract extended metadata, with an emphasis on film, video and professional music production metadata.\n\n\n## Metadata Support\n\n`wavinfo` reads:\n\n* [Broadcast-WAVE][bext] metadata, including embedded program\n  loudness, coding history and [SMPTE UMID][smpte_330m2011].\n* [ADM][adm] track metadata and schema, including channel, pack formats, object, content and programme.\n* [Dolby Digital Plus][ebu3285s6] and Dolby Atmos `dbmd` metadata.\n* [iXML][ixml] production recorder metadata, including project, scene, and take tags, recorder notes\n  and file family information.\n  * iXML `STEINBERG` sound library attributes.\n* Most of the common [RIFF INFO][info-tags] metadata fields.\n* The __wav format__ is also parsed, so you can access the basic sample rate and channel count\n  information.\n\nIn progress:\n* Pro Tools __embedded regions__.\n\n[bext]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html\n[smpte_330m2011]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html#wavinfo.wave_bext_reader.WavBextReader.umid\n[adm]:https://wavinfo.readthedocs.io/en/latest/scopes/adm.html\n[ebu3285s6]:https://wavinfo.readthedocs.io/en/latest/scopes/dolby.html\n[ixml]:https://wavinfo.readthedocs.io/en/latest/scopes/ixml.html\n[info-tags]:https://wavinfo.readthedocs.io/en/latest/scopes/info.html\n[eburf64]:https://tech.ebu.ch/docs/tech/tech3306v1_1.pdf\n\n\n## How To Use\n\nThe entry point for wavinfo is the WavInfoReader class.\n\n```python\nfrom wavinfo import WavInfoReader\n\npath = '../tests/test_files/A101_1.WAV'\n\ninfo = WavInfoReader(path)\n\nadm_metadata = info.adm\nixml_metadata = info.ixml\n```\n\nThe package also installs a shell command:\n\n```sh\n$ wavinfo test_files/A101_1.WAV\n```\n\n## Other Resources\n\n* For other file formats and ID3 decoding, look at [audio-metadata](https://github.com/thebigmunch/audio-metadata).\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Probe WAVE Files for iXML, Broadcast-WAVE and other metadata.",
    "version": "2.2.1",
    "project_urls": {
        "Documentation": "https://wavinfo.readthedocs.io/",
        "Home": "https://github.com/iluvcapra/wavinfo",
        "Issues": "https://github.com/iluvcapra/wavinfo/issues",
        "Source": "https://github.com/iluvcapra/wavinfo.git"
    },
    "split_keywords": [
        "waveform",
        "metadata",
        "audio",
        "ebu",
        "smpte",
        "avi",
        "library",
        "film",
        "broadcast"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "834a75b76bdf3975fffc96ef909246a3bbc4e0a9c625ab444e4f2fc8cccfd822",
                "md5": "33ca31ca075eb912cf788488a51f166b",
                "sha256": "4b17ad07d2529d43d044515c1878af654a03132524c9b5a05475e7d896e934f6"
            },
            "downloads": -1,
            "filename": "wavinfo-2.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "33ca31ca075eb912cf788488a51f166b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 21040,
            "upload_time": "2023-05-30T23:06:42",
            "upload_time_iso_8601": "2023-05-30T23:06:42.639419Z",
            "url": "https://files.pythonhosted.org/packages/83/4a/75b76bdf3975fffc96ef909246a3bbc4e0a9c625ab444e4f2fc8cccfd822/wavinfo-2.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6bfb3fd2088eb7ed36f8427200c15569b24ad18bb76d5f28df4b69b944c9824",
                "md5": "595ce196100730a432b65e73a8e6f63f",
                "sha256": "1a53d90cd02f36ff404e0d6b8e51e94871d0475a3bb3a41623db41f283061c22"
            },
            "downloads": -1,
            "filename": "wavinfo-2.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "595ce196100730a432b65e73a8e6f63f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 18692,
            "upload_time": "2023-05-30T23:06:43",
            "upload_time_iso_8601": "2023-05-30T23:06:43.957785Z",
            "url": "https://files.pythonhosted.org/packages/d6/bf/b3fd2088eb7ed36f8427200c15569b24ad18bb76d5f28df4b69b944c9824/wavinfo-2.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-30 23:06:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "iluvcapra",
    "github_project": "wavinfo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "wavinfo"
}
        
Elapsed time: 0.08996s