Class ID3Frame.Chapter
-
- All Implemented Interfaces:
public final class ID3Frame.Chapter extends ID3Frame
A chapter ID3 frame.
See section 3.1 of https://id3.org/id3v2-chapters-1.0 for more information.
-
-
Method Summary
Modifier and Type Method Description final String
getElementId()
The unique identifier for this chapter. final Integer
getStartTimeMs()
The start time of the chapter, in milliseconds from the beginning of the file. final Integer
getEndTimeMs()
The end time of the chapter, in milliseconds from the beginning of the file. final Long
getStartOffset()
The offset of the first byte of the first audio frame in this chapter, in bytes from the beginning of the file. final Long
getEndOffset()
The offset of the first byte of the audio frame following this chapter, in bytes from the beginning of the file. final List<ID3Frame>
getSubFrames()
The sub-frames describing this chapter. -
-
Method Detail
-
getElementId
final String getElementId()
The unique identifier for this chapter.
-
getStartTimeMs
final Integer getStartTimeMs()
The start time of the chapter, in milliseconds from the beginning of the file.
-
getEndTimeMs
final Integer getEndTimeMs()
The end time of the chapter, in milliseconds from the beginning of the file.
-
getStartOffset
final Long getStartOffset()
The offset of the first byte of the first audio frame in this chapter, in bytes from the beginning of the file.
-
getEndOffset
final Long getEndOffset()
The offset of the first byte of the audio frame following this chapter, in bytes from the beginning of the file.
-
getSubFrames
final List<ID3Frame> getSubFrames()
The sub-frames describing this chapter.
-
-
-
-