
October 7th, 2004, 08:24 AM
|
|
Registered User
|
|
Join Date: Sep 2003
Posts: 9
Time spent in forums: 7 m 42 sec
Reputation Power: 0
|
|
MP3 Tag Procedure help
oky i really need help on this..i look in my delphi book but couldent find anything..got lil help in my orther post..so making a more clear one in hope of somebody feeling happy and helping me 
i got a record like this
Code:
type
TID3Rec = packed record
Tag : array[0..2] of Char;
Title,
Artist,
Comment,
Album : array[0..29] of Char;
Year : array[0..3] of Char;
Genre : Byte;
end;
and then i got this procedure where i want to trowh the record into, i ofcourse want to change the tag so i try to fill the array with some new text for the new tag
Code:
MyNewRecord.Title:=edit1.text;
MyNewRecord.Artist:=edit2.text;
MyNewRecord.Album:=edit3.text;
MyNewRecord.Year:=edit4.text;
MyNewRecord.Genre:=edit5.text;
MyNewRecord.Comment:=edit6.text;
procedure ChangeID3Tag(NewID3: TID3Rec; mp3FileName: string);
plz help me  been working on this thing a few days lol! .. im getting pretty frustratet 
|