SYNOPSIS

mp3tag [ -ssong ] [ -aartist ] [ -lalbum ] [ -yyear ] [ -ecomment ] [ -ktrack ] [ -ggenre ] [ -r ] file [ file ... ]

DESCRIPTION

This manual page briefly documents the mp3tag command. This manual page was written for the Debian GNU/Linux distribution because the original program does not have one.

mp3tag is a program that allows you to both view and manipulate ID3v1 metadata tags. Running the command with just a filename will display the file's current tag. Setting some options will cause the tag to be updated and displayed.

OPTIONS

-aartist

Set the artist name to artist. Strings over thirty characters are truncated.

-ecomment

Set the comment to comment. Strings over thirty characters are truncated.

-ggenre

Set the genre to genre. This is a single integer with a value of 0 to 254 corresponding to the appropriate Winamp compatible genre (use '-g list' to list all supported genres).

-ktrack

Set the track number to track. This is a single integer with a value of 0 to 255. Specifying this field truncates the comment field to twenty-eight characters, as per the ID3v1.1 standard.

-lalbum

Set the album name to album. Strings over thirty characters are truncated.

-r

Merge new tag with any preexisting tag in the file.

-ssong

Set the song name to song. Strings over thirty characters are truncated.

-yyear

Set the year to year. Strings over four characters are truncated.

EXAMPLES

Display foo.mp3's current ID3v1 info:

mp3tag foo.mp3

Set foo.mp3's artist to 'Bar', and album to 'Baz':

mp3tag -a Bar -l Baz foo.mp3

Set foo.mp3's year to 2001, merging it with any tag already present:

mp3tag -y 2001 -r foo.mp3

AUTHOR

mp3tag was written by Bram Avontuur <[email protected]>.

This manual page was written by Brian Boucheron <[email protected]>, for the Debian GNU/Linux distribution (but may be used by others).

RELATED TO mp3tag…

More info on ID3v1 can be found at <http://www.id3.org/id3v1.html>.