> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vibetoken.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# Vidu Q1 — 图生视频

> Vidu Q1 图生视频，通过统一的 OpenAI 兼容端点。

|           |                  |
| --------- | ---------------- |
| **模型 ID** | `vidu/q1-i2v`    |
| **家族**    | `vidu-q1`        |
| **任务**    | `image-to-video` |
| **分辨率**   | 1080p（固定）        |
| **时长**    | 5 秒（固定）          |
| **模态**    | 视频               |

## 端点

```http theme={null}
POST https://vibetoken.cn/v1/videos/generations
```

异步 —— 返回 `{id, status: "pending"}`；轮询 `GET /v1/videos/generations/{id}` 直到 `success` 或 `failed`。

## 定价

统一 **$0.40/视频** 刊例价 → 实扣 **$0.34**（85 折）。

## 参数

<ParamField body="prompt" type="string">
  可选文本提示词；源图像已承载创作意图。最多 1500 个字符。
</ParamField>

<ParamField body="image_urls" type="string[]" required>
  恰好一张源图像 —— 公开的 HTTPS URL 或 base64 `data:` URI。
</ParamField>

<ParamField body="movement_amplitude" type="enum" default="auto">
  镜头/主体运动。取值为 `auto`、`small`、`medium`、`large` 之一。
</ParamField>

<ParamField body="bgm" type="boolean" default="false">
  添加一段自动生成的背景音乐音轨。
</ParamField>

<ParamField body="seed" type="integer">
  随机数生成器的初始化种子。范围 `[0, 2147483647]`。
</ParamField>

## 示例

```bash theme={null}
curl https://vibetoken.cn/v1/videos/generations \
  -H "Authorization: Bearer $VIBETOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "vidu/q1-i2v",
    "image_urls": ["https://example.com/scene.jpg"],
    "prompt": "镜头缓缓扫过场景"
  }'
```

## 参见

完整的请求/响应结构与定价：[视频生成](/api-reference/videos)。
