curl --location 'https://api.emix.ai/api/v1/client/tasks' \
--header 'Content-Type: application/json' \
--data '{
"model": "veo-3-1/image-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "图片中的狗开始在公园里奔跑,镜头以低角度跟随移动。",
"imageUrls": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
],
"model": "veo3_fast",
"aspect_ratio": "16:9",
"enableTranslation": true,
"watermark": "MyBrand",
"resolution": "720p",
"duration": 8
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "veo_task_abcdef123456"
}
}