mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2026-01-01 01:10:40 +00:00
Merge branch 'master' of https://github.com/iluvcapra/wavinfo
This commit is contained in:
20
README.md
Normal file
20
README.md
Normal file
@@ -0,0 +1,20 @@
|
||||
[](https://travis-ci.com/iluvcapra/wavinfo)
|
||||
[](https://wavinfo.readthedocs.io/en/latest/?badge=latest)   [](https://pypi.org/project/wavinfo/) 
|
||||
|
||||
|
||||
# wavinfo
|
||||
|
||||
The `wavinfo` package allows you to probe WAVE files and extract extended metadata, with an emphasis on
|
||||
production metadata.
|
||||
|
||||
`wavinfo` reads:
|
||||
|
||||
* Broadcast-WAVE metadata, compliant with [EBU Tech 3285v2 (2011)][ebu], though other versions are easy to implement. This includes the [SMPTE 330M:2011 Unique Material Identifier (UMID)][smpte_330m2011] for the file, if it exists.
|
||||
* [iXML production recorder metadata][ixml], including project, scene, and take tags, recorder notes and file family information.
|
||||
* The format is also parsed, so you can access the basic sample rate and channel count information.
|
||||
|
||||
This module is presently under construction and not sutiable for production at this time.
|
||||
|
||||
[ebu]:https://tech.ebu.ch/docs/tech/tech3285.pdf
|
||||
[smpte_330m2011]:http://standards.smpte.org/content/978-1-61482-678-1/st-330-2011/SEC1.abstract
|
||||
[ixml]:http://www.ixml.info
|
||||
18
setup.rb
Normal file
18
setup.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
from setuptools import setup
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(name='wavinfo',
|
||||
version='0.1',
|
||||
author='Jamie Hardt',
|
||||
author_email='jamiehardt@me.com',
|
||||
description='WAVE sound file metadata parser.',
|
||||
long_description_content_type="text/markdown",
|
||||
long_description=long_description,
|
||||
url='https://github.com/iluvcapra/wavinfo',
|
||||
classifiers=['Development Status :: 2 - Pre-Alpha',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Topic :: Multimedia',
|
||||
'Topic :: Multimedia :: Sound/Audio'],
|
||||
packages=['wavinfo'])
|
||||
BIN
tests/test_files/PT A101_4.A1.wav
Normal file
BIN
tests/test_files/PT A101_4.A1.wav
Normal file
Binary file not shown.
Reference in New Issue
Block a user