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

# Seedance 1.0 Lite 文生视频

> 字节跳动 Seedance 1.0 Lite 文生视频 模型，支持从文本和图片生成视频，灵活控制时长、比例和分辨率。

Seedance 1.0 Lite 文生视频 是字节跳动 Seedance 系列的视频生成模型，通过 Anyfast API 提供服务。使用多模态内容格式，从文本提示词和参考图片创建视频。

## 核心能力

* **文生视频** — 从文本提示词生成视频
* **灵活时长** — 生成 2–12 秒视频
* **多种比例** — 16:9、4:3、1:1、3:4、9:16、21:9
* **多种分辨率** — 480p、720p、1080p

## 快速示例

<CodeGroup>
  ```bash cURL theme={null}
  curl https://www.anyfast.com.cn/v1/video/generations \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "model": "doubao-seedance-1-0-lite-t2v-250428",
      "content": [
        {"type": "text", "text": "一只猫在金色夕阳下穿过向日葵花田"}
      ],
      "ratio": "16:9",
      "duration": 5,
      "resolution": "720p"
    }'
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://www.anyfast.com.cn/v1/video/generations",
      headers={
          "Authorization": "Bearer YOUR_API_KEY",
          "Content-Type": "application/json"
      },
      json={
          "model": "doubao-seedance-1-0-lite-t2v-250428",
          "content": [
              {"type": "text", "text": "一只猫在金色夕阳下穿过向日葵花田"}
          ],
          "ratio": "16:9",
          "duration": 5,
          "resolution": "720p"
      }
  )

  task = response.json()
  print(f"任务 ID: {task['id']}")
  ```
</CodeGroup>

## 参数说明

| 参数             | 类型      | 必填 | 说明                                                          |
| -------------- | ------- | -- | ----------------------------------------------------------- |
| `model`        | string  | 是  | 固定为 `doubao-seedance-1-0-lite-t2v-250428`                   |
| `content`      | array   | 是  | 多模态数组：text（必须）+ image\_url（图生视频时添加，带 role）                  |
| `ratio`        | string  | 否  | `16:9`、`4:3`、`1:1`、`3:4`、`9:16`、`21:9`、`adaptive`，默认 `16:9` |
| `resolution`   | string  | 否  | `480p`、`720p`、`1080p`，默认 `720p`                             |
| `duration`     | integer | 否  | 2–12 秒，默认 `5`                                               |
| `watermark`    | boolean | 否  | 是否添加水印，默认 `false`                                           |
| `seed`         | integer | 否  | 随机种子，用于复现结果                                                 |
| `camera_fixed` | boolean | 否  | 是否固定摄像头，默认 `false`                                          |

<Card title="API 参考" icon="code" href="/api-reference/model-api/bytedance/doubao-seedance-1-0-lite-t2v-250428">
  查看 Seedance 1.0 Lite 文生视频 的交互式 API Playground。
</Card>

<script src="/feedback.js" />
