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.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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.
      • Methods inherited from class com.theoplayer.android.api.player.track.texttrack.id3.ID3Frame

        getId
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • 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.