interface AudioScrubTrack {
    channelCount?: number;
    channelInterpretation?: ChannelInterpretation;
    masterElement: HTMLMediaElement;
    offset: number;
    shadowElement: HTMLMediaElement;
    trackId: string;
}

Properties

channelCount?: number

This is used by other plugins that may need to know the channel count, CCP for instance.

channelInterpretation?: ChannelInterpretation
masterElement: HTMLMediaElement
offset: number

offset to use for the audio track. Should match masters offset.

shadowElement: HTMLMediaElement
trackId: string