Interface SpeechAudioAnalysis

interface SpeechAudioAnalysis {
    duration: number;
    fileSize: number;
    estimatedCost: number;
    isOptimal: boolean;
    recommendations: string[];
    mimeType?: string;
}

Properties

duration: number
fileSize: number
estimatedCost: number
isOptimal: boolean
recommendations: string[]
mimeType?: string