Video Generation
imagetext
logo

Vidu Q1 Start-End

Vidu Q1 Start-End

Shengshu Technology start-end frame video model for cinematic transitions between two keyframes

输入

生成方式

当前模板仅支持以下输入方式

首尾帧图生

仅使用文本描述生成视频,无需上传图片。

参考图(可选)

支持 PNG、JPG、WebP · 可将文件拖到此区域

支持 PNG、JPG、WebP · 可将文件拖到此区域
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-start-end",
  "prompt": "A cat walking across a room",
  "size": "1920x1080",
  "duration": 5,
  "movement_amplitude": "auto",
  "frame_images": [
    {
      "type": "image_url",
      "frame_type": "first_frame",
      "image_url": {
        "url": "https://example.com/start.jpg"
      }
    },
    {
      "type": "image_url",
      "frame_type": "last_frame",
      "image_url": {
        "url": "https://example.com/end.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"