Playback restrictions that can be applied during content playback. Used for controlling user interactions during ad playback or other restricted content.

interface PlaybackRestrictions {
    playbackRate?: boolean;
    seeking?: boolean;
}

Properties

playbackRate?: boolean

If true, playback rate changes will be disabled during playback.

seeking?: boolean

If true, seeking will be disabled during playback.