Timeline Studio API Documentation - v0.26.0
    Preparing search index...
    MediaMetadata:
        | {
            bitrate?: number;
            codec?: string;
            creation_time?: string;
            duration?: number;
            fps?: number;
            height?: number;
            size?: number;
            type: "Video";
            width?: number;
        }
        | {
            bitrate?: number;
            channels?: number;
            codec?: string;
            creation_time?: string;
            duration?: number;
            sample_rate?: number;
            size?: number;
            type: "Audio";
        }
        | {
            creation_time?: string;
            format?: string;
            height?: number;
            size?: number;
            type: "Image";
            width?: number;
        }
        | { type: "Unknown" }