videosphere
    Preparing search index...

    Interface PreparedBackupMetadataVideo

    Prepared backup video stream after metadata injection.

    interface PreparedBackupMetadataVideo {
        stream: ReadableStream<Uint8Array<ArrayBufferLike>>;
        contentLength: number;
        contentType: string;
        dispose: () => Promise<void>;
    }
    Index

    Properties

    stream: ReadableStream<Uint8Array<ArrayBufferLike>>

    Stream of the metadata-injected container file.

    contentLength: number

    Byte length of stream.

    contentType: string

    MIME type of stream, matching the source container (e.g. MP4 or QuickTime).

    dispose: () => Promise<void>

    Releases temp staging files. Safe to call after the stream is fully consumed; required when an upload fails before reading stream (e.g. resumable session init errors).