FrameBodyTLENpublic class FrameBodyTLEN extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBodyLength Text information frame.
The 'Length' frame contains the length of the audiofile in milliseconds, represented as a numeric string.
For more details, please refer to the ID3 specifications:
|
Constructors Summary |
---|
public FrameBodyTLEN()Creates a new FrameBodyTLEN datatype.
| public FrameBodyTLEN(FrameBodyTLEN body)
super(body);
| public FrameBodyTLEN(byte textEncoding, String text)Creates a new FrameBodyTLEN datatype.
super(textEncoding, text);
| public FrameBodyTLEN(ByteBuffer byteBuffer, int frameSize)Creates a new FrameBodyTLEN datatype.
super(byteBuffer, frameSize);
|
Methods Summary |
---|
public java.lang.String | getIdentifier()The ID3v2 frame identifier
return ID3v24Frames.FRAME_ID_LENGTH;
|
|