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

# Kling-o1 视频编辑

Kling Omni Video O1 视频编辑器支持通过自然语言命令进行对话式视频编辑。只需简单的文本指令，例如"移除行人"或"将白天改为黄昏"，即可移除物体、更换背景、修改样式、调整天气/光照以及转换场景。

<Tip>
  这是一个**异步**API，只会返回异步任务的 task\_id。您应该使用该 task\_id 请求 [查询任务结果 API](/models/reference-get-async-task-result) 来检索视频生成结果。
</Tip>

## 请求头

<ParamField header="Content-Type" type="string" required={true}>
  枚举值: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式，例如：Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="video" type="string" required={true}>
  视频URL
</ParamField>

<ParamField body="images" type="array" default="[]">
  包含元素、场景、风格等的参考图片。最多4张

  数组长度：0 - 4
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  生成的正向提示词
</ParamField>

<ParamField body="fast_mode" type="boolean" default={false}>
  是否使用 fast 模式
</ParamField>

<ParamField body="aspect_ratio" type="string">
  生成视频的宽高比

  可选值：`16:9`, `9:16`, `1:1`
</ParamField>

<ParamField body="keep_original_sound" type="boolean" default={true}>
  选择是否通过参数保留视频原始声音
</ParamField>

## 响应

<ResponseField name="task_id" type="string" required={true}>
  异步任务的 task\_id。您应该使用该 task\_id 请求 [查询任务结果 API](/models/reference-get-async-task-result) 以获取生成结果
</ResponseField>
