Video Generation
imagetext
Vidu Q1 Image
Vidu Q1 Image
Shengshu Technology image-to-video model that animates a single input image
输入
生成方式
仅使用文本描述生成视频,无需上传图片。
Duration
Resolution
Generate_audio
准备开始生成API 参考
POSThttps://api.token360.ai/v1/videos# Step 1: Create video generation task
curl https://api.token360.ai/v1/videos \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-api-key" \
-d '{
"model": "viduq1-image",
"prompt": "A cat walking across a room",
"size": "1920x1080",
"duration": 5,
"movement_amplitude": "auto",
"input_references": [
{
"type": "image_url",
"image_url": {
"url": "https://example.com/image.jpg"
}
}
]
}'
# Step 2: Poll for completion (replace VIDEO_ID with the id from step 1)
curl https://api.token360.ai/v1/videos/VIDEO_ID \
-H "Authorization: Bearer your-api-key"