Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Command line tool to edit mp3 ID3 tags

Tags:

mp3

id3-tag

I want a simple command line tool running on Windows Xp(or even cross platform) similar in functionality to Mp3tag to edit mp3 ID3 tags. I mostly want to organize my music according to artist , genre etc so a lightweight tool which can ask the user which tag to edit and then change all the mp3 files' tags in a directory will be good. Can I use perl to do this?

like image 632
iceman Avatar asked Feb 10 '10 02:02

iceman


People also ask

How do I edit ID3 tags in VLC?

If you want to view and edit ID3 audio or MP3 tags in VLC Media Player, then it has been really made simple. The quickest way to view/edit it is by using the CTRL + I shortcut key on your PC or by navigating to Tools > Media Information.


2 Answers

I use mpgtx in my Debian, but I see they have a Windows version at http://mpgtx.sourceforge.net/#Download

The commands I use are as follows:

 # Read Tag information from mp3
 mpginfo 05\ Fatty\ Boom\ Boom.mp3

 # Writes album information in mp3
 tagmp3 set "%a:Tension" 05\ Fatty\ Boom\ Boom.mp3
like image 139
diogovk Avatar answered Nov 07 '22 12:11

diogovk


use http://eyed3.nicfit.net/ . it's in python. python works on windows.

like image 21
Janus Troelsen Avatar answered Nov 07 '22 11:11

Janus Troelsen