MP3 tag editor. Without touching the audio.

Edits the title, artist, album and cover art on an MP3 in your browser, with nothing uploaded. It reads the existing ID3 tags, writes a fresh ID3v2.3 tag, and leaves the audio frames completely untouched — so this is lossless, unlike any tool that re-encodes.

drop an MP3

One file at a time. MP3 only — other formats store tags differently.

At a glance

InputMP3 only — one file at a time
Tag version writtenID3v2.3 (the most widely supported)
Tag versions readID3v2.2, 2.3 and 2.4
FieldsTitle, artist, album, album artist, year, track, genre, comment
ArtworkJPEG or PNG, embedded as a front-cover APIC frame
AudioUntouched — not decoded, not re-encoded, bit-identical
Uploads your fileNo — runs entirely in the page
Signup requiredNo

Why this is lossless

An MP3 file is two things stuck together: an ID3 tag at the front holding the metadata, and the audio frames after it. Players read the tag for the title and artwork, then decode the frames for the sound. The two are entirely independent.

That means editing tags does not require touching the audio at all. This tool parses the existing tag to fill in the form, builds a brand new tag from what you type, and writes it out followed by the original audio bytes, unmodified. The sound that comes out is bit-for-bit identical to the sound that went in.

This is worth stating because a lot of online "tag editors" decode and re-encode the file, which costs you a generation of quality for a change that should cost nothing. If a tag editor asks you to choose a bitrate, it is re-encoding, and you should not use it.

When you'd want this

Fields that matter, and why

Album artist is the one people miss. On a compilation, every track has a different artist, and music apps will split the album into a dozen one-track albums unless album artist is set consistently across all of them. Setting it to "Various Artists" — the same string on every track — keeps the album together.

Track number determines play order. Without it, most players fall back to alphabetical filenames, which is why albums so often play in the wrong sequence. Plain numbers work; "3/12" style is also valid and tells a player how many tracks to expect.

Year is used for sorting and for grouping by decade. It expects a four-digit year.

Artwork is embedded in the file rather than referenced, so it travels with it. Square images work best — most players crop to a square regardless — and there is no need for anything larger than about 1000 pixels, since a large image inflates every copy of the file.

Limits worth knowing

MP3 only. Other formats store metadata in entirely different structures: M4A and MP4 use atoms, FLAC and OGG use Vorbis comments, WAV has no widely agreed system at all. Handling those properly means a different parser for each, so this tool is scoped to ID3.

One file at a time. Tagging is per-file work by nature — the whole point is that each file gets different values — so there is no batch mode.

It writes ID3v2.3 rather than 2.4. 2.4 is newer and technically better, but its syncsafe frame sizes still confuse some car head units and older hardware players, which then show no tags at all. 2.3 is read correctly by essentially everything.

Existing tags are replaced rather than merged, so anything already in the file that this tool does not expose — lyrics, ratings, replay gain — is not carried across. For most files that is nothing; if you rely on those, use a dedicated desktop tagger.

FAQ

Does editing tags reduce the audio quality?

No. The audio frames are copied across untouched — not decoded, not re-encoded. Only the tag at the front of the file is rewritten, so the output is bit-identical to the input where the sound is concerned.

Why does my compilation album split into separate albums?

Because album artist is not set consistently. Music apps group by album artist, so on a compilation every track needs the same value — usually 'Various Artists' — even though the artist field differs per track.

Can I edit M4A, FLAC or WAV files?

No. Those formats store metadata in completely different structures — MP4 atoms, Vorbis comments, or nothing standardised at all in WAV's case. This tool handles ID3, which means MP3.

What size should the cover art be?

Square, and no larger than about 1000 pixels. Most players crop to a square anyway, and the image is embedded in every copy of the file, so a very large one inflates the file for no visible benefit.

Why ID3v2.3 rather than the newer 2.4?

Compatibility. Version 2.4 uses syncsafe frame sizes that some car stereos and older hardware players misread, and they then display no tags at all. Version 2.3 is read correctly by effectively everything.