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

# PixVerse V6 動画延長

PixVerse V6 動画延長は、既存動画の末尾部分を分析し、新しいフレームを前方に生成することで、自然な動きとシーンのダイナミックな効果を維持しながら動画コンテンツを継続・強化します。

<Tip>
  これは**非同期**API であり、非同期タスクの task\_id のみを返します。この task\_id を使用して [タスク結果照会 API](/ja/docs/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 Key}}。
</ParamField>

## リクエストボディ

<ParamField body="seed" type="integer">
  再現可能な結果のために使用するランダムシード。
</ParamField>

<ParamField body="style" type="string">
  延長コンテンツに適用するビジュアルスタイル。
</ParamField>

<ParamField body="video" type="string" required={true}>
  延長する元動画の URL。公開アクセス可能なリンクである必要があります。
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  延長されるクリップ内で発生すべき内容を説明するテキストプロンプト。
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  延長時間（秒）。

  値の範囲：\[1, 15]
</ParamField>

<ParamField body="resolution" type="string" default="720p">
  出力動画の解像度。

  使用可能な値：`360p`, `540p`, `720p`, `1080p`
</ParamField>

<ParamField body="negative_prompt" type="string">
  延長コンテンツから除外する要素。
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  延長動画に同期音声を生成するかどうか。
</ParamField>

## レスポンス情報

<ResponseField name="task_id" type="string" required={true}>
  task\_id を使用して [タスク結果照会 API](/ja/docs/models/reference-get-async-task-result) にリクエストし、生成された出力を取得します。
</ResponseField>
