@rendley/sdk - v1.15.19
    Preparing search index...

    Interface MediaInfoProbeRequest

    Parameters describing one pooled media info probe request.

    interface MediaInfoProbeRequest {
        filename: string;
        mediaId: string;
        mediaSource: File | Blob;
        needsWritableInput?: boolean;
    }
    Index

    Properties

    filename: string
    mediaId: string
    mediaSource: File | Blob

    Media payload to probe. Mounted through WORKERFS, so no main-thread byte copy is made.

    needsWritableInput?: boolean

    Set for formats the probe converts in place (HEIC). WORKERFS is read-only, so the payload is copied into the worker's own writable FS instead of being mounted — matching what the main worker does for these formats. Costs one byte copy, so only set it when needed.