Tested tool guide
Tested browser tools
Checked August 16, 2026
What Audio Metadata Viewer does, with a checked example
Select an MP3, FLAC, WAV, or OGG file and this tool reads it locally in the browser, reporting title, artist, album, track number, album art, duration, bitrate, sample rate, channels, and codec. Tags are not one block: MP3s carry ID3v2 frames at the start and a fixed 128-byte ID3v1 trailer at the end, FLAC and OGG use Vorbis comments, and WAV uses RIFF LIST chunks. The common surprise: nothing is uploaded, and duration is computed from the file structure rather than stored - the same for bitrate on lossless files, while an MP3's bitrate is read from its frame headers.
Worked example
A concrete input and expected output from the current implementation.
Input
sample.wav - 16-bit PCM at 44,100 Hz, stereo, 882,000 bytes of audio data, with a LIST INFO chunk carrying the title "Harbor Drift" and artist "Aria Chen"
->
Expected output
Format: WAVE (RIFF)
Codec: PCM (uncompressed)
Sample rate: 44,100 Hz
Bit depth: 16-bit
Channels: 2 (stereo)
Duration: 5.00 s
Bitrate: 1411.2 kbps
Title: Harbor Drift
Artist: Aria Chen
Album: (none)
Album art: none
Byte rate is 44,100 x 2 (bit depth) x 2 (channels) = 176,400 bytes per second, so 882,000 bytes is exactly 5 seconds, and 176,400 x 8 = 1,411,200 bps, or 1411.2 kbps. A WAV stores neither duration nor bitrate; both follow from the fmt chunk values.