FLAC Metadata Reader
DataRead sample rate, channels, bit depth, total samples, and duration from a FLAC file's STREAMINFO block, plus Vorbis comment tags like artist, title, and album, without decoding any audio
Drop in a FLAC file and get its sample rate, channel count, bit depth, total sample count, and duration back immediately, read straight from the STREAMINFO metadata block that every valid FLAC file starts with. If the file also carries a VORBIS_COMMENT block, the tool pulls out the encoder vendor string plus common tags like artist, title, album, date, genre, and track number, along with the full raw tag list for anything less common. None of this touches the actual compressed audio frames, so it works even on a very large file and stays fast regardless of bit depth or channel count. Files with no VORBIS_COMMENT block simply come back without tag fields rather than erroring, since tags are optional in the format.
How to use FLAC Metadata Reader
- 1.Drop a .flac file (or click to browse) to read its sample rate, channels, bit depth, and duration from the STREAMINFO block.
- 2.Check the artist, title, album, and other tag fields, pulled from the file's VORBIS_COMMENT block when present.
- 3.Use the REST API or an SDK to batch-read metadata across a music library, e.g. to audit sample rates or find files missing tags.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/flac-metadata-reader \
-H "Authorization: Bearer utx_live_..." \
-F "file=@track.flac"Get an API key from your dashboard · Full API docs →