Vinyl
    Preparing search index...

    Interface SourceObjectTrackLoadOptions

    interface SourceObjectTrackLoadOptions {
        config?: Maybe<SourceTrackBaseOptions>;
        srcObjectProvider: (uri: string) => MediaStream | Promise<MediaStream>;
        type: "srcObject";
        uri: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Configuration options for the SourceObjectTrack. Will be provided on preload and activate.

    srcObjectProvider: (uri: string) => MediaStream | Promise<MediaStream>

    A function to produce a MediaStream, or Promise.

    type: "srcObject"

    The track type, used to map to a track factory.

    uri: string

    The track identifier.