Tested tool guide
Tested browser tools
Checked August 16, 2026
What Audio Metadata Editor does, with a checked example
This tool reads the metadata block at the start of an MP3 file and lays it out as a form: title, artist, album, year, track number, and cover art. Change any field, save, and you receive a corrected copy of the file; the audio data is copied through untouched, so the sound never changes. The surprise most people hit: a file can carry a second, older tag block at its very end, and players that prefer that block keep showing the old values no matter what this form says. Everything happens in the browser; the file never leaves your machine.
Worked example
A concrete input and expected output from the current implementation.
Input
Drop in 'beach-sunrise.mp3', a track whose ID3v2.3 tag carries TIT2 'Beach Sunrise', TPE1 'Coral Waves', TALB 'Salt Air', TYER '2021', TRCK '7', and an APIC frame with a JPEG front cover.
->
Expected output
The form fills in with Title 'Beach Sunrise', Artist 'Coral Waves', Album 'Salt Air', Year '2021', Track '7', and a thumbnail of the embedded cover. Edit Year to '2022' and save: the downloaded file's TYER frame now reads '2022', and the audio data itself is untouched.
Each four-character frame ID in the ID3v2 tag maps to a form field: TIT2 is the title, TPE1 the artist, TALB the album, TYER the year, TRCK the track number, and the APIC frame, which stores the image bytes themselves, becomes the cover preview. Saving rebuilds the tag from the edited values and copies the audio through untouched.