Timeline Studio API Documentation - v0.26.0
    Preparing search index...

    Пользовательские предпочтения для AI

    interface UserPreferencesContext {
        aiCommandHistory: {
            command: string;
            result?: string;
            success: boolean;
            timestamp: Date;
        }[];
        contentPreferences: {
            autoApplyColorCorrection: boolean;
            autoBalanceAudio: boolean;
            preferredTrackTypes: string[];
            preferredTransitionDuration: number;
        };
        defaultProjectSettings: {
            aspectRatio: string;
            fps: number;
            resolution: { height: number; width: number };
        };
    }
    Index

    Properties

    aiCommandHistory: {
        command: string;
        result?: string;
        success: boolean;
        timestamp: Date;
    }[]
    contentPreferences: {
        autoApplyColorCorrection: boolean;
        autoBalanceAudio: boolean;
        preferredTrackTypes: string[];
        preferredTransitionDuration: number;
    }
    defaultProjectSettings: {
        aspectRatio: string;
        fps: number;
        resolution: { height: number; width: number };
    }