音频文件上传 | AI创作模块兼容音频

This commit is contained in:
2026-07-03 11:44:32 +08:00
parent 899732aa54
commit 28b1d24173
14 changed files with 209 additions and 8 deletions
+10
View File
@@ -287,6 +287,11 @@ export interface GenerationAiVideoEngine {
supportedResolutions: string[];
supportedDurations: number[];
maxDuration: number;
maxImageCount?: number;
maxVideoCount?: number;
maxAudioCount?: number;
supportsFirstLastFrame?: boolean;
supportsUniversalReference?: boolean;
priority: number;
}
@@ -309,6 +314,11 @@ export interface GenerationAiEngineOption {
supportedSizes?: Record<string, Record<string, string>>;
defaultSize?: string;
maxDuration?: number;
maxImageCount?: number;
maxVideoCount?: number;
maxAudioCount?: number;
supportsFirstLastFrame?: boolean;
supportsUniversalReference?: boolean;
priority: number;
genType: GenerationAiGenType;
}