fix: align video generation payloads
This commit is contained in:
+75
-38
@@ -662,46 +662,83 @@ export async function createImageEditTask(
|
||||
});
|
||||
}
|
||||
|
||||
export type VideoGenerationContentRole =
|
||||
| 'first_frame'
|
||||
| 'last_frame'
|
||||
| 'reference_image'
|
||||
| 'reference_video'
|
||||
| 'reference_audio'
|
||||
| 'digital_human_frame'
|
||||
| 'reference'
|
||||
| 'element'
|
||||
| 'video_feature'
|
||||
| 'video_base'
|
||||
| 'shot_prompt';
|
||||
|
||||
export interface VideoGenerationContent {
|
||||
type: 'text' | 'image_url' | 'audio_url' | 'video_url' | 'element';
|
||||
text?: string;
|
||||
image_url?: {
|
||||
url: string;
|
||||
};
|
||||
video_url?: {
|
||||
url: string;
|
||||
refer_type?: 'feature' | 'base';
|
||||
keep_original_sound?: 'yes' | 'no';
|
||||
};
|
||||
audio_url?: {
|
||||
url: string;
|
||||
};
|
||||
role?: VideoGenerationContentRole;
|
||||
shot_index?: number;
|
||||
duration?: number;
|
||||
name?: string;
|
||||
element?: {
|
||||
system_element_id?: string;
|
||||
inline_element?: {
|
||||
name: string;
|
||||
description?: string;
|
||||
frontal_image_url: string;
|
||||
refer_images: Array<{ url: string; slot_key?: string }>;
|
||||
tags?: string[];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
export interface VideoGenerationParams {
|
||||
content: VideoGenerationContent[];
|
||||
model: string;
|
||||
aspect_ratio?: string;
|
||||
resolution?: string;
|
||||
duration?: number;
|
||||
audio_list?: Array<{
|
||||
url?: string;
|
||||
audio_url?: string;
|
||||
name?: string;
|
||||
}>;
|
||||
audio?: boolean;
|
||||
framespersecond?: number;
|
||||
watermark?: boolean;
|
||||
seed?: number;
|
||||
camerafixed?: boolean;
|
||||
camera_control?: string;
|
||||
camera_control_strength?: number;
|
||||
prompt_extend?: boolean;
|
||||
size?: string;
|
||||
task_id?: string;
|
||||
conversation_id?: string;
|
||||
histories?: string;
|
||||
callback_url?: string;
|
||||
prompt_optimizer?: boolean;
|
||||
fast_pretreatment?: boolean;
|
||||
mode?: 'std' | 'pro';
|
||||
negative_prompt?: string;
|
||||
cfg_scale?: number;
|
||||
}
|
||||
|
||||
export async function createVideoGenerationTask(
|
||||
token: string,
|
||||
input: {
|
||||
audio?: boolean;
|
||||
audioUrl?: string | string[];
|
||||
audio_url?: string | string[];
|
||||
capabilityType?: string;
|
||||
content?: Array<Record<string, unknown>>;
|
||||
firstFrame?: string;
|
||||
first_frame?: string;
|
||||
model: string;
|
||||
model_type?: string;
|
||||
prompt: string;
|
||||
aspect_ratio?: string;
|
||||
count?: number;
|
||||
duration?: number;
|
||||
duration_seconds?: number;
|
||||
height?: number;
|
||||
image?: string | string[];
|
||||
imageUrl?: string | string[];
|
||||
image_url?: string | string[];
|
||||
imageUrls?: string[];
|
||||
image_urls?: string[];
|
||||
lastFrame?: string;
|
||||
last_frame?: string;
|
||||
n?: number;
|
||||
output_audio?: boolean;
|
||||
referenceAudio?: string | string[];
|
||||
referenceVideo?: string | string[];
|
||||
reference_audio?: string | string[];
|
||||
reference_image?: string | string[];
|
||||
reference_video?: string | string[];
|
||||
resolution?: string;
|
||||
runMode?: string;
|
||||
simulation?: boolean;
|
||||
size?: string;
|
||||
videoUrl?: string | string[];
|
||||
video_url?: string | string[];
|
||||
width?: number;
|
||||
},
|
||||
input: VideoGenerationParams,
|
||||
): Promise<{ task: GatewayTask; next: Record<string, string> }> {
|
||||
return request<{ task: GatewayTask; next: Record<string, string> }>('/api/v1/videos/generations', {
|
||||
body: input,
|
||||
|
||||
Reference in New Issue
Block a user