FrameBodyTBPMpublic class FrameBodyTBPM extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBodyBeats Per Minute Text information frame.
The 'BPM' frame contains the number of beats per minute in the mainpart of the audio. The BPM is an integer and represented as a numerical string.
For more details, please refer to the ID3 specifications:
|
Constructors Summary |
---|
public FrameBodyTBPM()Creates a new FrameBodyTBPM datatype.
| public FrameBodyTBPM(FrameBodyTBPM body)
super(body);
| public FrameBodyTBPM(byte textEncoding, String text)Creates a new FrameBodyTBPM datatype.
super(textEncoding, text);
| public FrameBodyTBPM(ByteBuffer byteBuffer, int frameSize)Creates a new FrameBodyTBPM datatype.
super(byteBuffer, frameSize);
|
Methods Summary |
---|
public java.lang.String | getIdentifier()The ID3v2 frame identifier
return ID3v24Frames.FRAME_ID_BPM;
|
|