Page 1 of 1
Album Art Script
Posted: Tue Oct 25, 2011 12:14 am
by grimace66
I had a script that I found a long time ago that took a file (folder.jpg) and automatically went through the list of mp3's and added it to the tag. does anyone have anything like that.
Thanks
Joe
Re: Album Art Script
Posted: Tue Oct 25, 2011 5:12 pm
by jtclipper
There is a default script provided with the installation that does this , its the #load_cover.sct file.
This is what it does
Code: Select all
Program PictureFromFile;
var
i: integer;
begin
if not tg_init then exit;
i := 1;
sys_SetStatusText( 2, IntToStr( tg_GetRowCount ) );
repeat
tg_loadFile;
sys_SetStatusText( 1, IntToStr( i ) );
sys_SetStatusText( 3, gTag.Filename );
gTag.ClearPictures; // remove any existing
gTag.LoadPicture( ExtractFilePath( gTag.Filename ) + 'folder.jpg' );
gTag.SaveToFile( 0, false, '', false );
i := i + 1;
until not tg_skip;
end.