Jump to content

How to read and write ID3 tags in MP3 files


Recommended Posts

Is it possible to use AutoIt3 to read the ID3 Tags in an MP3 file and also to write to the tags in the mp3 file?

(tag examples are

"Title", "Artist", "Album", "Year", "Track", "Genre", "Comment")

Does anybody know how to do this?

Many thanks for a tip.

Link to comment
Share on other sites

I did not find any autoitscript-integrated solution but there is a commandline tool available which will do that:

http://home.wanadoo.nl/squell/id3.html

; For change of album title in ID3v1-Tag
ShellExecuteWait(@ScriptDir & "id3.exe", "-1 -l TestalbumV1 " & """" & $Filename & """", @ScriptDir, "open", @SW_HIDE)
; For change of album title in ID3v2-Tag
ShellExecuteWait(@ScriptDir & "id3.exe", "-2 -l TestalbumV2 " & """" & $Filename & """", @ScriptDir, "open", @SW_HIDE)

UTA

Link to comment
Share on other sites

Search for ID3 in the example scripts forum, there are many examples

Thanks for the tip.

I have tested the script

"getID3Tag and setID3Tag" (from Xenobiologist)

and I was able to read and write tags to some MP3s on my machine.

Link to comment
Share on other sites

Thanks for the tip.

I have tested the script

"getID3Tag and setID3Tag" (from Xenobiologist)

and I was able to read and write tags to some MP3s on my machine.

Nice! :D

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...