JVCL Help:TJvID3Text
From Project JEDI Wiki
Jump to navigationJump to searchJVCL Help: TJvID3Text Class
[+] JvId3v2.pas Classes
[+] TJvID3Text Methods
[+] TJvID3Text Properties
Search in JVCL Help
Search in all projectsClass Hierarchy
TJvID3Persistent
TJvID3Text
run\JvId3v2.pas
Summary
Contains the data of text frames in an ID3 v2 tag.
Pascal
run\JvId3v2.pas
TJvID3Text = class(TJvID3Persistent);
Description
The TJvID3Text object contains the data of text information frames in an ID3 v2 tag.
The following table lists the relation between Winamp's description of frames and properties of a TJvID3Text object:
Winamp | Property |
Genre | ContentType |
Comment | - |
Year | RecordingTime or Year depending on the tag version. |
Album | Album |
Artist | LeadArtist |
Songname | Title AlbumTrack TrackNum |
The TJvID3ContentFrame object can be used to access comments in the tag. The following example alters the first comment frame in a tag of JvID3v21 (if the tag has no comment frame, then one is inserted):withTJvID3ContentFrame.FindOrCreate(JvID3v21, fiComment) do
beginDescription := 'My comment';
Language := 'eng';
Text := 'Some'#13#10'Multi'#13#10'line'#13#10'comment' end;
About
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page