> ## 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.

# Gemini Omni 1.1 Flash 비디오 연장

> - 선택적 참조 이미지로 입력 비디오 연장
- `video_urls`: HTTP/HTTPS로 접근 가능한 30초 이하 MP4 1개.
- `image_urls`: 선택적 참조 이미지 URL, 최대 10장. HTTP/HTTPS만 지원합니다.
- `quality`: 출력 해상도: 360p, 720p, 1080p, 4k, auto. 기본값 auto이며 입력 비디오를 따릅니다.
- `duration`: 입력 비디오 뒤에 추가할 초 수. 3~10 정수, 기본값 3.
- `aspect_ratio`: auto만 허용되며 기본값도 auto입니다. 출력 비율은 입력 비디오를 따릅니다.
- 모델이 동기화된 네이티브 오디오를 자동 생성합니다.
- 부정 요구사항은 prompt에 직접 작성합니다.
- 비동기 처리: [작업 상태 조회](/ko/api-manual/task-management/get-task-detail)
- 생성 링크는 24시간 동안 유효합니다.
- **과금 범위:** 출력 비디오 사용량은 추가된 초 수를 기준으로 계산됩니다. 입력 비디오, 레퍼런스 이미지, 프롬프트와 모델 추론도 사용량에 포함되며 최종 요금은 실제 token 사용량을 따릅니다.
- **입력 비디오 비용과 `quality`:** 입력 비디오 token은 원본 해상도가 아니라 선택한 출력 해상도로 계산됩니다.



## OpenAPI

````yaml ko/api-manual/video-series/gemini-omni-1.1-flash/gemini-omni-1.1-flash-video-extend.json POST /v1/videos/generations
openapi: 3.1.0
info:
  title: Gemini Omni 1.1 Flash 비디오 연장
  description: 선택적 참조 이미지로 입력 비디오 연장
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: 프로덕션 환경
security:
  - bearerAuth: []
paths:
  /v1/videos/generations:
    post:
      tags:
        - 비디오 생성
      summary: Gemini Omni 1.1 Flash 비디오 연장
      description: >-
        - 선택적 참조 이미지로 입력 비디오 연장

        - `video_urls`: HTTP/HTTPS로 접근 가능한 30초 이하 MP4 1개.

        - `image_urls`: 선택적 참조 이미지 URL, 최대 10장. HTTP/HTTPS만 지원합니다.

        - `quality`: 출력 해상도: 360p, 720p, 1080p, 4k, auto. 기본값 auto이며 입력 비디오를
        따릅니다.

        - `duration`: 입력 비디오 뒤에 추가할 초 수. 3~10 정수, 기본값 3.

        - `aspect_ratio`: auto만 허용되며 기본값도 auto입니다. 출력 비율은 입력 비디오를 따릅니다.

        - 모델이 동기화된 네이티브 오디오를 자동 생성합니다.

        - 부정 요구사항은 prompt에 직접 작성합니다.

        - 비동기 처리: [작업 상태 조회](/ko/api-manual/task-management/get-task-detail)

        - 생성 링크는 24시간 동안 유효합니다.

        - **과금 범위:** 출력 비디오 사용량은 추가된 초 수를 기준으로 계산됩니다. 입력 비디오, 레퍼런스 이미지, 프롬프트와 모델
        추론도 사용량에 포함되며 최종 요금은 실제 token 사용량을 따릅니다.

        - **입력 비디오 비용과 `quality`:** 입력 비디오 token은 원본 해상도가 아니라 선택한 출력 해상도로 계산됩니다.
      operationId: createGeminiOmni11FlashVideoExtendGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeminiOmni11FlashVideoExtendRequest'
            examples:
              video_extend:
                summary: 비디오 연장
                value:
                  model: gemini-omni-1.1-flash-video-extend
                  prompt: 인물이 계속 걸어 화면 밖으로 나간다.
                  video_urls:
                    - https://example.com/source.mp4
                  duration: 3
                  quality: auto
                  aspect_ratio: auto
              video_extend_with_reference:
                summary: 참조 이미지 포함 비디오 연장
                value:
                  model: gemini-omni-1.1-flash-video-extend
                  prompt: 참조 의상을 유지하며 계속 걸어간다.
                  video_urls:
                    - https://example.com/source.mp4
                  image_urls:
                    - https://example.com/reference.png
                  duration: 3
                  quality: auto
                  aspect_ratio: auto
      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_request
                  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:
                    gemini-omni-1.1-flash-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:
    GeminiOmni11FlashVideoExtendRequest:
      required:
        - model
        - prompt
        - video_urls
      type: object
      additionalProperties: false
      properties:
        model:
          type: string
          description: 모델 이름은 `gemini-omni-1.1-flash-video-extend`으로 고정됩니다
          enum:
            - gemini-omni-1.1-flash-video-extend
          example: gemini-omni-1.1-flash-video-extend
          default: gemini-omni-1.1-flash-video-extend
        prompt:
          type: string
          description: 입력 비디오 이후의 내용을 설명하는 프롬프트.
          example: 인물이 계속 걸어 화면 밖으로 나간다.
        video_urls:
          type: array
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 1
          description: HTTP/HTTPS로 접근 가능한 30초 이하 MP4 1개.
          example:
            - https://example.com/source.mp4
        image_urls:
          type: array
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 10
          description: |-
            선택적 레퍼런스 이미지 배열, 최대 10장입니다. 연장 구간의 주체, 스타일 또는 요소를 지정할 수 있습니다.

            **입력 요구사항:**
            - HTTP/HTTPS 이미지 URL만 지원
            - 지원 형식: `png`, `jpeg`, `webp`

            **과금:** 각 레퍼런스 이미지는 입력 token에 포함됩니다.
          example:
            - https://example.com/reference.png
        duration:
          type: integer
          description: |-
            추가 비디오 길이(초), 기본값은 `3`입니다.

            **설명:**
            - `3`~`10` 사이의 모든 정수를 지원합니다
            - 입력 비디오 뒤에 생성할 초 수이며 전체 출력 길이가 아닙니다
            - 전체 출력 길이 = 입력 비디오 길이 + `duration`
            - 추가 길이는 과금에 직접 영향을 줍니다
          minimum: 3
          maximum: 10
          default: 3
          example: 3
        quality:
          type: string
          description: |-
            출력 비디오 해상도, 기본값은 `auto`입니다.

            **지원 값:**
            - `360p`: 짧은 변 360
            - `720p`: 짧은 변 720
            - `1080p`: 짧은 변 1080
            - `4k`: 짧은 변 2160
            - `auto`: 입력 비디오 해상도를 따르며 기본값

            해상도를 명시하면 출력을 업스케일하거나 다운스케일할 수 있습니다.

            **과금:** 입력 및 출력 비디오 token은 모두 최종 출력 해상도로 계산되며 해상도가 높을수록 비용이 증가합니다.
          enum:
            - 360p
            - 720p
            - 1080p
            - 4k
            - auto
          default: auto
          example: auto
        aspect_ratio:
          type: string
          description: auto만 허용되며 기본값도 auto입니다. 출력 비율은 입력 비디오를 따릅니다.
          enum:
            - auto
          default: auto
          example: auto
        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: 1757169743
        id:
          type: string
          description: 작업 ID
          example: task-unified-1757169743-7cvnl5zw
        model:
          type: string
          description: 실제 사용된 모델 이름
          example: gemini-omni-1.1-flash-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: 작업 상태. 생성 API는 processing을 반환합니다.
          enum:
            - pending
            - processing
            - completed
            - failed
          example: processing
        task_info:
          $ref: '#/components/schemas/VideoTaskInfo'
          description: 비디오 작업 상세 정보
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: 작업 출력 유형
          example: video
        usage:
          $ref: '#/components/schemas/Usage'
          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: false
        estimated_time:
          type: integer
          description: 예상 완료 시간 (초)
          minimum: 0
          example: 60
        video_duration:
          type: integer
          description: 총 출력 길이는 입력 길이와 추가 길이의 합입니다.
          example: 6
    Usage:
      type: object
      description: 사용량 및 과금 정보
      properties:
        billing_rule:
          type: string
          description: 과금 규칙
          enum:
            - per_call
            - per_token
            - per_second
          example: per_token
        credits_reserved:
          type: number
          description: 예상 소비 크레딧
          minimum: 0
          example: 102.34
        user_group:
          type: string
          description: 사용자가 속한 과금 그룹
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |-
        ##모든 API는 Bearer Token 인증이 필요합니다##

        **API Key 받기:**

        [API Key 관리 페이지](https://evolink.ai/dashboard/keys)를 방문하여 API Key를 받으세요

        **요청 헤더에 추가:**
        ```
        Authorization: Bearer YOUR_API_KEY
        ```

````