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

FrameBodyTDLY

public class FrameBodyTDLY extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Playlist delay Text information frame.

The 'Playlist delay' defines the numbers of milliseconds of silence between every song in a playlist. The player should use the "ETC" frame, if present, to skip initial silence and silence at the end of the audio to match the 'Playlist delay' time. The time is represented as a numeric string.

For more details, please refer to the ID3 specifications:

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

Fields Summary
Constructors Summary
public FrameBodyTDLY()
Creates a new FrameBodyTDLY datatype.

    
public FrameBodyTDLY(FrameBodyTDLY body)

        super(body);
    
public FrameBodyTDLY(byte textEncoding, String text)
Creates a new FrameBodyTDLY datatype.

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTDLY(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTDLY 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_PLAYLIST_DELAY;