> ## 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 전체 파라미터 개요

> - 다섯 가지 비디오 모드의 전체 파라미터
- 텍스트, 이미지, 참조, 비디오 편집, 비디오 연장의 다섯 모드가 있습니다.
- `quality`: 텍스트/이미지/참조 모드는 4단계, 기본 720p. 편집/연장은 auto 추가, 기본 auto.
- `duration`: 길이: 생성 모드 3~10, 편집은 auto만, 연장은 추가 초 3~10.
- `aspect_ratio`: 기본값 auto. 편집과 연장은 auto만 허용됩니다.
- 모델이 동기화된 네이티브 오디오를 자동 생성합니다.
- 부정 요구사항은 prompt에 직접 작성합니다.
- 비동기 처리: [작업 상태 조회](/ko/api-manual/task-management/get-task-detail)
- 생성 링크는 24시간 동안 유효합니다.



## OpenAPI

````yaml ko/api-manual/video-series/gemini-omni-1.1-flash/gemini-omni-1.1-flash-overview.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: |-
        - 다섯 가지 비디오 모드의 전체 파라미터
        - 텍스트, 이미지, 참조, 비디오 편집, 비디오 연장의 다섯 모드가 있습니다.
        - `quality`: 텍스트/이미지/참조 모드는 4단계, 기본 720p. 편집/연장은 auto 추가, 기본 auto.
        - `duration`: 길이: 생성 모드 3~10, 편집은 auto만, 연장은 추가 초 3~10.
        - `aspect_ratio`: 기본값 auto. 편집과 연장은 auto만 허용됩니다.
        - 모델이 동기화된 네이티브 오디오를 자동 생성합니다.
        - 부정 요구사항은 prompt에 직접 작성합니다.
        - 비동기 처리: [작업 상태 조회](/ko/api-manual/task-management/get-task-detail)
        - 생성 링크는 24시간 동안 유효합니다.
      operationId: createGeminiOmni11FlashGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeminiOmni11FlashRequest'
            examples:
              text_to_video:
                summary: 텍스트-투-비디오
                value:
                  model: gemini-omni-1.1-flash-text-to-video
                  prompt: 유리 구슬이 나무 트랙을 굴러 물에 떨어진다.
                  quality: 720p
                  duration: 3
                  aspect_ratio: '16:9'
              image_to_video:
                summary: 첫 프레임과 마지막 프레임으로 비디오 생성
                value:
                  model: gemini-omni-1.1-flash-image-to-video
                  prompt: 인물이 천천히 고개를 돌리며 미소 짓는다.
                  image_urls:
                    - https://example.com/first-frame.png
                    - https://example.com/last-frame.png
                  quality: 720p
                  duration: 3
                  aspect_ratio: '16:9'
              reference_to_video:
                summary: 레퍼런스-투-비디오
                value:
                  model: gemini-omni-1.1-flash-reference-to-video
                  prompt: 참조 인물과 카메라 움직임을 유지한다.
                  image_urls:
                    - https://example.com/character.png
                  video_urls:
                    - https://example.com/reference.mp4
                  quality: 720p
                  duration: 3
                  aspect_ratio: '16:9'
              video_edit:
                summary: 비디오 편집
                value:
                  model: gemini-omni-1.1-flash-video-edit
                  prompt: 나머지는 유지하면서 조명을 따뜻하게 바꾼다.
                  video_urls:
                    - https://example.com/source.mp4
                  quality: auto
                  duration: auto
                  aspect_ratio: auto
              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
      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-text-to-video
                  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:
    GeminiOmni11FlashRequest:
      type: object
      required:
        - model
        - prompt
      additionalProperties: false
      properties:
        model:
          type: string
          description: |-
            작업과 입력 미디어에 맞는 모델 ID를 선택하세요:

            - `gemini-omni-1.1-flash-text-to-video`
            - `gemini-omni-1.1-flash-image-to-video`
            - `gemini-omni-1.1-flash-reference-to-video`
            - `gemini-omni-1.1-flash-video-edit`
            - `gemini-omni-1.1-flash-video-extend`
          enum:
            - gemini-omni-1.1-flash-text-to-video
            - gemini-omni-1.1-flash-image-to-video
            - gemini-omni-1.1-flash-reference-to-video
            - gemini-omni-1.1-flash-video-edit
            - gemini-omni-1.1-flash-video-extend
          example: gemini-omni-1.1-flash-text-to-video
        prompt:
          type: string
          description: 생성, 편집 또는 연장 목표를 설명하는 프롬프트.
          example: 유리 구슬이 나무 트랙을 굴러 물에 떨어진다.
        image_urls:
          type: array
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 10
          description: '이미지 URL: 이미지 모드는 1~2장, 참조 모드는 최대 10장, 편집/연장은 선택적으로 최대 10장.'
          example:
            - https://example.com/character.png
            - https://example.com/scene.png
        video_urls:
          type: array
          items:
            type: string
            format: uri
          minItems: 1
          maxItems: 3
          description: '비디오 URL: 참조는 최대 3개, 편집은 10초 이하 1개, 연장은 30초 이하 1개.'
          example:
            - https://example.com/reference.mp4
        quality:
          type: string
          description: >-
            비디오 해상도


            **지원 값:**

            - `360p`: 가로 640×360 / 세로 360×640

            - `720p`: 가로 1280×720 / 세로 720×1280

            - `1080p`: 가로 1920×1080 / 세로 1080×1920

            - `4k`: 가로 3840×2160 / 세로 2160×3840

            - `auto`: 비디오 편집과 연장만 지원하며 입력 비디오 해상도를 따름


            **기본값:**

            - 텍스트/이미지/레퍼런스-투-비디오: `720p`

            - 비디오 편집/연장: `auto`


            **과금:** 출력 비디오는 출력 token 기준으로 과금됩니다. 편집과 연장에서는 입력 및 출력 비디오 token 모두
            최종 출력 해상도로 계산됩니다.
          enum:
            - 360p
            - 720p
            - 1080p
            - 4k
            - auto
          example: 720p
        duration:
          description: |-
            비디오 길이

            - 텍스트/이미지/레퍼런스-투-비디오: `3`~`10`초 정수, 기본값 `3`
            - 비디오 편집: `auto`만 허용, 기본값 `auto`, 출력 길이는 입력 비디오를 따름
            - 비디오 연장: `3`~`10`초 정수, 기본값 `3`, 추가할 초 수를 의미
          oneOf:
            - type: integer
              minimum: 3
              maximum: 10
            - type: string
              enum:
                - auto
          example: 3
        aspect_ratio:
          type: string
          description: 기본값 auto. 편집과 연장은 auto만 허용됩니다.
          enum:
            - '16:9'
            - '9:16'
            - 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
      allOf:
        - if:
            properties:
              model:
                const: gemini-omni-1.1-flash-text-to-video
            required:
              - model
          then:
            properties:
              duration:
                type: integer
                default: 3
              quality:
                enum:
                  - 360p
                  - 720p
                  - 1080p
                  - 4k
                default: 720p
            not:
              anyOf:
                - required:
                    - image_urls
                - required:
                    - video_urls
        - if:
            properties:
              model:
                const: gemini-omni-1.1-flash-image-to-video
            required:
              - model
          then:
            required:
              - image_urls
            properties:
              image_urls:
                maxItems: 2
              duration:
                type: integer
                default: 3
              quality:
                enum:
                  - 360p
                  - 720p
                  - 1080p
                  - 4k
                default: 720p
            not:
              anyOf:
                - required:
                    - video_urls
        - if:
            properties:
              model:
                const: gemini-omni-1.1-flash-reference-to-video
            required:
              - model
          then:
            required:
              - image_urls
            properties:
              video_urls:
                maxItems: 3
              duration:
                type: integer
                default: 3
              quality:
                enum:
                  - 360p
                  - 720p
                  - 1080p
                  - 4k
                default: 720p
        - if:
            properties:
              model:
                const: gemini-omni-1.1-flash-video-edit
            required:
              - model
          then:
            required:
              - video_urls
            properties:
              video_urls:
                maxItems: 1
              image_urls:
                maxItems: 10
              duration:
                type: string
                enum:
                  - auto
                default: auto
              aspect_ratio:
                enum:
                  - auto
              quality:
                enum:
                  - 360p
                  - 720p
                  - 1080p
                  - 4k
                  - auto
                default: auto
        - if:
            properties:
              model:
                const: gemini-omni-1.1-flash-video-extend
            required:
              - model
          then:
            required:
              - video_urls
            properties:
              video_urls:
                maxItems: 1
              image_urls:
                maxItems: 10
              duration:
                type: integer
                default: 3
              aspect_ratio:
                enum:
                  - auto
              quality:
                enum:
                  - 360p
                  - 720p
                  - 1080p
                  - 4k
                  - auto
                default: auto
    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-text-to-video
        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: 3
    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
        ```

````