Timeline Studio API Documentation - v0.26.0
    Preparing search index...
    interface ExportPreset {
        description: string;
        icon: ReactNode;
        id: string;
        name: string;
        settings: {
            audioTarget?: number;
            bitrate?: number;
            bitrateMode?: "auto" | "cbr" | "vbr";
            codec: "h264" | "h265" | "prores" | "vp8" | "vp9";
            codecProfile?: "high" | "main" | "main10";
            format: "mp4" | "mov" | "webm" | "quicktime";
            fps: "timeline" | "25" | "24" | "30" | "60";
            normalizeAudio?: boolean;
            optimizeForSpeed?: boolean;
            resolution: "timeline" | "720" | "1080" | "1440" | "2160";
            uploadDirectly?: boolean;
            useHardwareAcceleration?: boolean;
            useVerticalResolution?: boolean;
        };
    }
    Index

    Properties

    description: string
    icon: ReactNode
    id: string
    name: string
    settings: {
        audioTarget?: number;
        bitrate?: number;
        bitrateMode?: "auto" | "cbr" | "vbr";
        codec: "h264" | "h265" | "prores" | "vp8" | "vp9";
        codecProfile?: "high" | "main" | "main10";
        format: "mp4" | "mov" | "webm" | "quicktime";
        fps: "timeline" | "25" | "24" | "30" | "60";
        normalizeAudio?: boolean;
        optimizeForSpeed?: boolean;
        resolution: "timeline" | "720" | "1080" | "1440" | "2160";
        uploadDirectly?: boolean;
        useHardwareAcceleration?: boolean;
        useVerticalResolution?: boolean;
    }