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