JVCL Help:TJvID3Text

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Class Hierarchy

TJvID3Persistent
TJvID3Text
run\JvId3v2.pas


Summary

Contains the data of text frames in an ID3 v2 tag.

run\JvId3v2.pas


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;

run\JvId3v2.pas


About

Navigation

run\JvId3v2.pas



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