@jellyfin/sdk
    Preparing search index...

    Interface LyricLineCue

    LyricLineCue model, holds information about the timing of words within a LyricLine.

    LyricLineCue

    interface LyricLineCue {
        End?: null | number;
        EndPosition?: number;
        Position?: number;
        Start?: number;
    }
    Index

    Properties

    End?: null | number

    Gets the end timestamp the lyric is synced to in ticks.

    LyricLineCue

    EndPosition?: number

    Gets the end character index of the cue.

    LyricLineCue

    Position?: number

    Gets the start character index of the cue.

    LyricLineCue

    Start?: number

    Gets the timestamp the lyric is synced to in ticks.

    LyricLineCue