Interface PlaystateApiOnPlaybackProgressRequest

Request parameters for onPlaybackProgress operation in PlaystateApi.

PlaystateApiOnPlaybackProgressRequest

interface PlaystateApiOnPlaybackProgressRequest {
    audioStreamIndex?: number;
    isMuted?: boolean;
    isPaused?: boolean;
    itemId: string;
    liveStreamId?: string;
    mediaSourceId?: string;
    playMethod?: PlayMethod;
    playSessionId?: string;
    positionTicks?: number;
    repeatMode?: RepeatMode;
    subtitleStreamIndex?: number;
    volumeLevel?: number;
}

Properties

audioStreamIndex?: number

The audio stream index.

PlaystateApiOnPlaybackProgress

isMuted?: boolean

Indicates if the player is muted.

PlaystateApiOnPlaybackProgress

isPaused?: boolean

Indicates if the player is paused.

PlaystateApiOnPlaybackProgress

itemId: string

Item id.

PlaystateApiOnPlaybackProgress

liveStreamId?: string

The live stream id.

PlaystateApiOnPlaybackProgress

mediaSourceId?: string

The id of the MediaSource.

PlaystateApiOnPlaybackProgress

playMethod?: PlayMethod

The play method.

PlaystateApiOnPlaybackProgress

playSessionId?: string

The play session id.

PlaystateApiOnPlaybackProgress

positionTicks?: number

Optional. The current position, in ticks. 1 tick = 10000 ms.

PlaystateApiOnPlaybackProgress

repeatMode?: RepeatMode

The repeat mode.

PlaystateApiOnPlaybackProgress

subtitleStreamIndex?: number

The subtitle stream index.

PlaystateApiOnPlaybackProgress

volumeLevel?: number

Scale of 0-100.

PlaystateApiOnPlaybackProgress