KTaglib_Tag::getGenre

(0.0.1) Returns the genre from a ID3 tag public string KTaglib_Tag::getGenre ( void ) Returns the genre of an ID3 tag. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns the genre string

KTaglib_Tag::getTitle

(0.0.1) Returns the title string from a ID3 tag public string KTaglib_Tag::getTitle ( void ) Returns the title string of an ID3 tag. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns the title string

KTaglib_Tag::getTrack

(0.0.1) Returns the track number from a ID3 tag public int KTaglib_Tag::getTrack ( void ) Returns the track number of an ID3 tag. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns the track number as an integer

KTaglib_Tag::getYear

(0.0.1) Returns the year from a ID3 tag public int KTaglib_Tag::getYear ( void ) Returns the year of an ID3 tag. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns the year as an integer

KTaglib_Tag::isEmpty

(0.0.1) Returns true if the tag is empty public bool KTaglib_Tag::isEmpty ( void ) Returns true if the tag exists, but is empty. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns true if the tag is empty, otherwise false.

KTaglib_ID3v2_Tag::addFrame

(0.0.1) Add a frame to the ID3v2 tag public bool KTaglib_ID3v2_Tag::addFrame ( KTaglib_ID3v2_Frame $frame ) Adds a frame to the ID3v2 tag. The frame must be a valid KTaglib_ID3v2_Frame object. To save the tag, the save function needs to be invoked. Returns: Returns true on success, otherwise false.

KTaglib_ID3v2_Tag::getFrameList

(0.0.1) Returns an array of ID3v2 frames, associated with the ID3v2 tag public array KTaglib_ID3v2_Tag::getFrameList ( void ) Returns an array of ID3v2 frames, associated with the ID3v2 tag. Returns: Return an array of KTaglib_ID3v2_Frame objects

KTaglib_ID3v2_Frame::getSize

(0.0.1) Returns the size of the frame in bytes public int KTaglib_ID3v2_Frame::getSize ( void ) Returns the size of the frame in bytes. Please refer to id3.org to see what ID3v2 frames are and how they are defined. Returns: Returns the size of the frame in bytes

KTaglib_ID3v2_Frame::__toString

(0.0.1) Returns a string representation of the frame public string KTaglib_ID3v2_Frame::__toString ( void ) Returns a string representation of the frame. This might be just the frame id, but might contain more information. Please see the ktaglib documentation for more information Returns: Returns a string representation of the frame.

KTaglib_ID3v2_AttachedPictureFrame::getDescription

(0.0.1) Returns a description for the picture in a picture frame public string KTaglib_ID3v2_AttachedPictureFrame::getDescription ( void ) Returns the attached description for a picture frame in an ID3v2.x frame. Returns: Returns a description for the picture in a picture frame