mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2026-01-01 17:30:41 +00:00
13 lines
325 B
Python
13 lines
325 B
Python
"""
|
|
methods to probe a WAV file for various kinds of production metadata.
|
|
|
|
See the documentation for `wavinfo.WavInfoReader` for more information.
|
|
"""
|
|
|
|
from .wave_reader import WavInfoReader
|
|
from .riff_parser import WavInfoEOFError
|
|
|
|
__version__ = '2.1.0'
|
|
__author__ = 'Jamie Hardt <jamiehardt@gmail.com>'
|
|
__license__ = "MIT"
|