Moin!
In meiner Library mache ich das so:
Trim(String(Buffer.Artist));
Das String brauche ich, da mein Buffer direkt aus den Char's besteht:
Delphi-Quellcode:
typID3v1Record = Packed Record
HeaderID : Array[0..2] Of Char;
Title,
Artist,
Album : Array[0..29] Of Char;
Year : Array[0..3] Of Char;
Comment : Array[0..29] Of Char;
Genre : Byte;
End;
MfG
Muetze1