Amazon Vinyl
    Preparing search index...

    Type Alias MseTrackDeps

    MseTrackDeps: TrackBaseDeps & {
        abr: ObservableValue<VinylOptions["abr"]>;
        allowedContentTypes: ObservableValue<VinylOptions["allowedContentTypes"]>;
        audio: ObservableValue<VinylOptions["audio"]>;
        contentStreamFactory: (contentType: ContentType) => ContentStream;
        contentTypesValue: ContentTypesValue;
        manifestController: ManifestController<unknown>;
        mediaSourceController: MediaSourceController;
        mediaTimeline: ObservableValue<Promise<MediaTimeline>>;
        mediaTimelineTransformed: ObservableValue<Promise<MediaTimeline>>;
        playbackSource: PlaybackSource;
        textTrackController?: TextTrackController | null;
    }

    Type Declaration