Pauletp Posted April 15, 2008 Posted April 15, 2008 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.
UTA Posted April 15, 2008 Posted April 15, 2008 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
AdmiralAlkex Posted April 15, 2008 Posted April 15, 2008 (edited) Search for ID3 in the example scripts forum, there are many examples Edited April 15, 2008 by AdmiralAlkex .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
UTA Posted April 15, 2008 Posted April 15, 2008 I did that but did not find one which would WRITE the data into ID3v2.
Pauletp Posted April 16, 2008 Author Posted April 16, 2008 AdmiralAlkex said: Search for ID3 in the example scripts forum, there are many examplesThanks 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.
Xenobiologist Posted April 16, 2008 Posted April 16, 2008 Pauletp said: 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! 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now