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

# Seedance 2.5 Video Extend 動画延長

> - 入力動画を前方または後方に延長
- プロンプトに延長意図を明記する必要があります（例：「@video1 を後方に延長、人物がフレーム外へ歩き去る」）
- 延長対象の動画（必須）+ 任意の参考画像（0–30）+ 参考動画（合計最大 10 本）+ 参考音声（0–10）を入力
- **AIGCタイプの実写素材に対応**
- 非同期処理モード。返却されたタスクIDで[照会してください](/ja/api-manual/task-management/get-task-detail)
- 生成された動画リンクの有効期限は24時間です。お早めに保存してください



## OpenAPI

````yaml ja/api-manual/video-series/seedance2.5/seedance-2.5-video-extend.json POST /v1/videos/generations
openapi: 3.1.0
info:
  title: Seedance 2.5 Video Extend API
  description: Seedance 2.5 動画延長 API。入力動画を前方または後方に延長します
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: 本番環境
security:
  - bearerAuth: []
tags:
  - name: 動画生成
    description: AI動画生成関連API
paths:
  /v1/videos/generations:
    post:
      tags:
        - 動画生成
      summary: Seedance 2.5 Video Extend 動画延長
      description: >-
        - 入力動画を前方または後方に延長

        - プロンプトに延長意図を明記する必要があります（例：「@video1 を後方に延長、人物がフレーム外へ歩き去る」）

        - 延長対象の動画（必須）+ 任意の参考画像（0–30）+ 参考動画（合計最大 10 本）+ 参考音声（0–10）を入力

        - **AIGCタイプの実写素材に対応**

        -
        非同期処理モード。返却されたタスクIDで[照会してください](/ja/api-manual/task-management/get-task-detail)

        - 生成された動画リンクの有効期限は24時間です。お早めに保存してください
      operationId: createSeedance25VideoExtend
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoGenerationRequest'
            examples:
              extend_backward:
                summary: 後方へ延長（時間指定）
                value:
                  model: seedance-2.5-video-extend
                  prompt: '@video1 を後方に延長：人物がフレーム外へ歩き去り、カメラがゆっくり引いて無人の通りが現れる'
                  video_urls:
                    - https://example.com/original.mp4
                  duration: 12
                  quality: 720p
                  generate_audio: true
                  content_filter: true
              extend_forward:
                summary: 前方へ延長（自動時長）
                value:
                  model: seedance-2.5-video-extend
                  prompt: '@video1 を前方に延長：人物が夕日に向かって歩き続け、光が徐々に暗くなる'
                  video_urls:
                    - https://example.com/original.mp4
                  duration: -1
      responses:
        '200':
          description: 動画生成タスクの作成に成功
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoGenerationResponse'
        '400':
          description: リクエストパラメータエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_parameter
                  message: Invalid request parameters
                  type: invalid_request_error
        '401':
          description: 未認証、Tokenが無効または期限切れ
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Invalid or expired token
                  type: authentication_error
        '402':
          description: クォータ不足、チャージが必要
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: insufficient_quota
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: アクセス権限なし
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: model_access_denied
                  message: >-
                    Token does not have access to model:
                    seedance-2.5-video-extend
                  type: invalid_request_error
        '429':
          description: リクエスト頻度が上限を超過
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Too many requests, please try again later
                  type: rate_limit_error
        '500':
          description: サーバー内部エラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Internal server error
                  type: api_error
components:
  schemas:
    VideoGenerationRequest:
      type: object
      required:
        - model
        - prompt
        - video_urls
      properties:
        model:
          type: string
          description: 動画生成モデル名
          enum:
            - seedance-2.5-video-extend
          default: seedance-2.5-video-extend
          example: seedance-2.5-video-extend
        prompt:
          type: string
          description: >-
            希望する延長内容を記述するテキストプロンプト。日本語・中国語・英語に対応し、500 文字以内を推奨します。プロンプトの最大長：10000
            tokens


            **説明：**

            - プロンプトには延長意図を明記してください。例：「@video1 を後方に延長、人物がフレーム外へ歩き去る」

            - 各素材の用途は自然言語で指定できます。例：「@image1 のスタイルで @video1 を前方に延長する」

            - モデルは素材番号と用途の対応関係を自動的に理解します
          example: '@video1 を後方に延長：人物がフレーム外へ歩き去り、カメラがゆっくり引いて無人の通りが現れる'
        video_urls:
          type: array
          description: |-
            入力動画 URL 配列、**必須；1–10 本**

            **必須条件：** 少なくとも 1 本の動画（延長対象）が必要です。1 本目が延長対象となり、残りは参考素材として扱われます。

            **役割の説明：**

            | メディアタイプ | 役割 | 典型的な用途 |
            |---------|------|----------|
            | 動画 | `reference_video` | 延長対象の動画（1 本目）、カメラワークや動きの参考（それ以降） |

            **動画要件：**
            - 対応フォーマット：`.mp4`、`.mov`
            - 解像度：480p、720p、1080p、4K
            - 1本あたりの動画時間：`2` 〜 `30` 秒、最大10本、全動画の合計時間 ≤ `30` 秒
            - アスペクト比（幅/高さ）：`0.4` 〜 `2.5`
            - 幅・高さピクセル：`300` 〜 `6000` px
            - 画面ピクセル（幅 × 高さ）：`409,600` 〜 `8,295,044`（例：640×640 〜 3326×2494）
            - 1本あたりのサイズ：`200MB` 以内
            - フレームレート：`24` 〜 `60` FPS
            - リクエストボディの合計サイズは `64MB` 以内。Base64エンコードは使用しないでください
            - コーデック、解像度などの素材の有効性は、アップストリームモデルで追加確認されます
            - 動画参照を使用すると追加料金が発生します（入力動画の再生時間が課金に算入）
            - 動画URLはサーバーから直接アクセス可能である必要があります
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 10
          example:
            - https://example.com/original.mp4
        image_urls:
          type: array
          description: |-
            参照画像 URL 配列、**省略可。指定する場合は1〜30枚**

            **必須条件：** 本モデルでは `video_urls` が必須です。画像は任意の補助参考素材です。

            **役割の説明：**

            | メディアタイプ | 役割 | 典型的な用途 |
            |---------|------|----------|
            | 画像 | `reference_image` | スタイル参考、商品画像、シーン参考（prompt で指定） |

            **画像要件：**
            - 対応フォーマット：`.jpeg`、`.png`、`.webp`
            - アスペクト比（幅/高さ）：`0.4` 〜 `2.5`
            - 幅・高さピクセル：`300` 〜 `6000` px
            - 1枚あたりのサイズ：`30MB` 以内
            - リクエストボディの合計サイズは `64MB` 以内。Base64エンコードは使用しないでください
            - 画像URLはサーバーから直接アクセス可能である必要があります
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 30
          example:
            - https://example.com/ref1.jpg
            - https://example.com/ref2.jpg
        audio_urls:
          type: array
          description: |-
            参照音声 URL 配列、**省略可。指定する場合は1〜10本**

            **必須条件：** 本モデルでは `video_urls` が必須です。音声は任意の補助参考素材です。

            **役割の説明：**

            | メディアタイプ | 役割 | 典型的な用途 |
            |---------|------|----------|
            | 音声 | `reference_audio` | BGM、効果音、音声/セリフ参照 |

            **音声要件：**
            - 対応フォーマット：`.wav`、`.mp3`
            - 1本あたりの音声時間：`2` 〜 `30` 秒、最大10本、全音声の合計時間 ≤ `30` 秒
            - 1本あたりのサイズ：`15MB` 以内
            - リクエストボディの合計サイズは `64MB` 以内。Base64エンコードは使用しないでください
            - 音声URLはサーバーから直接アクセス可能である必要があります
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 10
          example:
            - https://example.com/bgm.mp3
        duration:
          type: integer
          description: |-
            出力動画の長さ（秒）、デフォルトは `5` 秒

            **説明：**
            - `4`〜`30` 秒の任意の整数値に対応
            - `-1`：自動時長。実際の出力時間に基づいて課金されます
            - 動画の長さは課金に直結します
          default: 5
          example: 12
        quality:
          type: string
          description: |-
            動画の解像度、デフォルトは `720p`

            **選択可能な値：**
            - `480p`：解像度が低め、料金も低め
            - `720p`：標準解像度、デフォルト値
          enum:
            - 480p
            - 720p
          default: 720p
          example: 720p
        aspect_ratio:
          type: string
          description: |-
            動画のアスペクト比、デフォルトは `adaptive`

            **選択可能な値：**
            - `adaptive`：出力比率は 1 本目の入力動画に従います。本モデルで指定できる唯一の値です
            - `16:9`、`9:16` などの固定比率を指定すると拒否されます
          enum:
            - adaptive
          default: adaptive
          example: adaptive
        generate_audio:
          type: boolean
          description: |-
            同期音声を生成するかどうか、デフォルトは `true`

            **選択可能な値：**
            - `true`：動画に同期音声を含む、追加料金なし
            - `false`：無音動画を出力
          default: true
          example: true
        content_filter:
          type: boolean
          description: >-
            コンテンツフィルター、デフォルトは `true`


            **選択可能な値：**

            - `true`：標準のコンテンツ安全チェック、これがデフォルトです

            - `false`：コンテンツ制限を緩和し、料金が
            +10%（`1.1x`）加算されます。違法および禁止されたコンテンツはこの設定に関係なく常に適用されます
          default: true
          example: true
        output_format:
          type: string
          description: >-
            出力コンテナ形式、デフォルトは `mp4`


            **選択可能な値：**

            - `mp4`：H.264 エンコード、互換性が最も高く標準的な色精度（デフォルト）

            - `mov`：H.264 + yuv444p クロマサンプリング + PCM
            音声。色再現性が高く、カラーグレーディングやキーイング、合成などのポストプロダクション向け。ブラウザ内での再生に対応しない場合があるため、ダウンロードして
            VLC / mpv / ffplay で再生してください。追加料金なし
          enum:
            - mp4
            - mov
          default: mp4
          example: mp4
        callback_url:
          type: string
          description: >-
            タスク完了後の HTTPS コールバックアドレス


            **コールバックタイミング：**

            - タスク完了（completed）、失敗（failed）、またはキャンセル（cancelled）時にトリガー

            - 課金確認完了後に送信


            **セキュリティ制限：**

            - HTTPS プロトコルのみ対応

            -
            プライベートIPアドレスへのコールバックは禁止（127.0.0.1、10.x.x.x、172.16-31.x.x、192.168.x.x
            など）

            - URL の長さは `2048` 文字以内


            **コールバックメカニズム：**

            - タイムアウト：`10` 秒

            - 失敗後最大 `3` 回リトライ（失敗後 `1`/`2`/`4` 秒でそれぞれリトライ）

            - コールバックレスポンスボディのフォーマットはタスク照会APIの返却フォーマットと同一

            - 2xx ステータスコードを成功とみなし、その他のステータスコードでリトライをトリガー
          format: uri
          example: https://your-domain.com/webhooks/video-task-completed
    VideoGenerationResponse:
      type: object
      properties:
        created:
          type: integer
          description: タスク作成タイムスタンプ
          example: 1761313744
        id:
          type: string
          description: タスクID
          example: task-unified-1774857405-abc123
        model:
          type: string
          description: 実際に使用されたモデル名
          example: seedance-2.5-video-extend
        object:
          type: string
          enum:
            - video.generation.task
          description: タスクの具体的なタイプ
        progress:
          type: integer
          description: タスク進捗パーセンテージ (0-100)
          minimum: 0
          maximum: 100
          example: 0
        status:
          type: string
          description: タスクステータス
          enum:
            - pending
            - processing
            - completed
            - failed
          example: pending
        task_info:
          $ref: '#/components/schemas/VideoTaskInfo'
          description: 動画タスクの詳細情報
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: タスクの出力タイプ
          example: video
        usage:
          $ref: '#/components/schemas/VideoUsage'
          description: 使用量と課金情報
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: エラーコード識別子
            message:
              type: string
              description: エラー説明情報
            type:
              type: string
              description: エラータイプ
    VideoTaskInfo:
      type: object
      properties:
        can_cancel:
          type: boolean
          description: タスクがキャンセル可能かどうか
          example: true
        estimated_time:
          type: integer
          description: 推定完了時間（秒）
          minimum: 0
          example: 165
        video_duration:
          type: integer
          description: 動画の再生時間（秒）
          example: 8
    VideoUsage:
      type: object
      description: 使用量と課金情報
      properties:
        billing_rule:
          type: string
          description: 課金ルール
          enum:
            - per_call
            - per_token
            - per_second
          example: per_second
        credits_reserved:
          type: number
          description: 推定消費クレジット数
          minimum: 0
          example: 50
        user_group:
          type: string
          description: ユーザーグループカテゴリ
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |-
        ##すべてのAPIはBearer Tokenによる認証が必要です##

        **APIキーの取得：**

        [APIキー管理ページ](https://evolink.ai/dashboard/keys) にアクセスしてAPIキーを取得してください

        **リクエストヘッダーに以下を追加：**
        ```
        Authorization: Bearer YOUR_API_KEY
        ```

````