WAV Audio Info
DataRead sample rate, channel count, bit depth, and duration directly from a WAV file's RIFF/fmt/data chunk headers
Drop in a WAV file and get its audio format, channel count, sample rate, bit depth, byte rate, and duration back immediately, without decoding a single audio sample. It reads this straight out of the file's RIFF container header, walking the fmt and data chunks the same way an audio player would before it starts playback, which keeps it fast even on a large file and works even if the actual PCM data is corrupted. It only understands the canonical RIFF/WAVE container, so the rarer RF64 variant used for files over 4GB, or compressed formats like MP3 wrapped in other containers, aren't supported here.
How to use WAV Audio Info
- 1.Drop a .wav file (or click to browse) to read its format, channels, sample rate, bit depth, and duration.
- 2.Check the byte rate and data size fields to estimate how much bandwidth or storage a recording needs before transcoding it.
- 3.Use the REST API or an SDK to batch-read metadata across a folder of WAV files, e.g. to audit a sample library's formats.
Frequently asked questions
Use via API, SDK, or MCP
cURLcurl "https://api.utilix.tech/v1/tools/wav-audio-info" \
-H "Authorization: Bearer utx_live_..."
# Free: 1,000 req/day · Pro: 10,000 req/dayGet an API key from your dashboard · Full API docs →