How to Read / Write ID3 Tags in MP3 Files

Posted December 15th @ 9:30 pm by m3Rlin

The thing that makes MPEG Layer 3 files good (besides their size:) are ID3 tags. Thanks to them you can save information about the song. Here’s the ID3 tag structure and information on reading/modifying them. Enjoy!
The ID3 tag is saved in the last 128 bytes of a MPEG Layer 3 file. It starts with a [...]

How to Clear Multiple Edits Without Refering to Them One by One

Posted December 15th @ 9:23 pm by m3Rlin

Let’s say you have a data entry form or a MP3 ID3 tag editor form. The user clicks the “Clear” button. The more edit controls you have the less you want to write the code to clear them Well, here’s a better idea:

procedure TMainForm.btnClear(Sender: TObject);
var
iI: Integer;
begin
for iI := 0 to [...]