
This is a freeware component, so as with all freeware components,
the authors are not liable in anyway for any damages resulting from
the use of this component.  Although we have thoroughly test this 
component and found it quite stable (after all, we do use this component
in our programs!!!), we will not be made liable for any damages if
you should decide to use this component.

ID3.PAS was written by Sergio Freue <freue@ccurq.uba.ar>.  Many thanks.

Installation:
Install as you would any other component.

Usage:
  All the methods and properties are declared public.  

  Properties:
	property FileName: TFileName read FFileName write SetFileName;
		The full path and filename of the mp3 file to edit/view.
	
	property Title: string read FTitle write SetTitle;
	property Artist: string read FArtist write SetArtist;
	property Album: string read FAlbum write SetAlbum;
	property Year: string read FYear write SetYear;
	property Comment: string read FComment write SetComment;
	property Genre: String read FGenre write SetGenre;

  Method:
	procedure Read; - Read the Tag
	procedure Write; - Write the Tag

    The component reads the file info when you assign a value to its 
    FileName property.  After assigning a value to the filename property,
    All the other fields will have the corresponding value from the file's
    id3tag.  update the fields then write. that's it.



