FileDocCategorySizeDatePackage
FrameBodyTBPM.javaAPI DocJaudiotagger 2.0.42613Wed Mar 30 16:12:02 BST 2011org.jaudiotagger.tag.id3.framebody

FrameBodyTBPM

public class FrameBodyTBPM extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Beats 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:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTBPM.java 832 2009-11-12 13:25:38Z paultaylor $

Fields Summary
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.

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTBPM(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTBPM datatype.

param
byteBuffer
param
frameSize
throws
InvalidTagException

        super(byteBuffer, frameSize);
    
Methods Summary
public java.lang.StringgetIdentifier()
The ID3v2 frame identifier

return
the ID3v2 frame identifier for this frame type

        return ID3v24Frames.FRAME_ID_BPM;