1. wavinfo Quickstart

All metadata is read by an instance of WaveInfoReader. Each type of metadata, iXML, Broadcast-WAV etc. is accessible through scopes, properties on an instance of WaveInfoReader.

Using wavinfo
import wavinfo

path = 'path/to/your/wave/audio.wav'

info = wavinfo.WavInfoReader(path)

adm_metadata = info.adm
ixml_metadata = info.ixml

1.1. WavInfoReader Class Documentation