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

# Vidu One-Click General Film

> [Core Function] Vidu One-Click General Film is an automated cinematic film generation model. [Strengths] It excels at automatically stringing together 1 to 7 user-provided images into a cohesive, cinematic film (up to 180s) with appropriate transitions and pacing. [Best For] Highly recommended for: instant music videos, cinematic montages, automated travel vlogs, and turning photo albums into compelling short films. [Limitations] Do NOT use this model if the user needs precise, frame-by-frame control over camera movements or specific character actions in each shot. [Routing] Use this when the user wants an automated 'done-for-you' long video from a batch of images without manually prompting every single shot.



## OpenAPI

````yaml /model-api/vidu/vidu-i2v.json post /vidu/one-click-general-film
openapi: 3.1.0
info:
  description: >-
    The image-to-video models API from Vidu. Includes standard I2V, first-last
    frame, reference-to-video, digital human, multi-frame animation, template
    story, and one-click film/ad generation.
  version: 1.0.0
  contact:
    name: Modellix Support
    email: support@modellix.ai
  title: Vidu Image-to-Video Models API
servers:
  - url: https://api.modellix.ai/api/v1
    description: The image-to-video models API from Vidu.
security:
  - bearerAuth: []
paths:
  /vidu/one-click-general-film:
    post:
      summary: Vidu One-Click General Film
      description: >-
        [Core Function] Vidu One-Click General Film is an automated cinematic
        film generation model. [Strengths] It excels at automatically stringing
        together 1 to 7 user-provided images into a cohesive, cinematic film (up
        to 180s) with appropriate transitions and pacing. [Best For] Highly
        recommended for: instant music videos, cinematic montages, automated
        travel vlogs, and turning photo albums into compelling short films.
        [Limitations] Do NOT use this model if the user needs precise,
        frame-by-frame control over camera movements or specific character
        actions in each shot. [Routing] Use this when the user wants an
        automated 'done-for-you' long video from a batch of images without
        manually prompting every single shot.
      operationId: viduOneClickGeneralFilmAsync
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ViduOneClickGeneralFilmRequest'
            examples:
              basic:
                summary: Images and duration only
                value:
                  images:
                    - https://example.com/scene1.jpg
                    - https://example.com/scene2.jpg
                  duration: 30
              with_prompt:
                summary: With narrative prompt
                value:
                  images:
                    - https://example.com/mountains.jpg
                    - https://example.com/river.jpg
                    - https://example.com/village.jpg
                    - https://example.com/sunset.jpg
                  prompt: >-
                    A journey through the highlands, following a winding river
                    from the mountains to a peaceful village at sunset
                  duration: 60
                  aspect_ratio: '16:9'
      responses:
        '200':
          description: Task submitted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskResponse'
              example:
                code: 0
                message: success
                data:
                  status: pending
                  task_id: task-vidu-film-001
                  model_id: vidu/one-click-general-film
                  get_result:
                    method: GET
                    url: https://api.modellix.ai/api/v1/tasks/task-vidu-film-001
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    ViduOneClickGeneralFilmRequest:
      type: object
      required:
        - images
        - duration
      description: Vidu one-click general film request.
      properties:
        prompt:
          type: string
          minLength: 1
          maxLength: 3000
          description: Narrative or thematic description for the film
          example: A journey through the highlands
        images:
          type: array
          minItems: 1
          maxItems: 7
          description: Scene or subject images (1-7) as URLs or base64 data URIs
          items:
            type: string
            minLength: 1
          example:
            - https://example.com/scene1.jpg
        duration:
          type: integer
          minimum: 10
          maximum: 180
          description: Video duration in seconds (10-180)
          example: 30
        aspect_ratio:
          type: string
          enum:
            - '1:1'
            - '16:9'
            - '9:16'
            - '4:3'
            - '3:4'
          default: '16:9'
          description: Video aspect ratio
          example: '16:9'
    AsyncTaskResponse:
      type: object
      required:
        - code
        - message
        - data
      properties:
        code:
          type: integer
          description: Response code, 0 indicates success
          example: 0
        message:
          type: string
          description: Response message
          example: success
        data:
          type: object
          required:
            - status
            - task_id
            - model_id
          properties:
            status:
              type: string
              enum:
                - pending
                - processing
              description: Task status
              example: pending
            task_id:
              type: string
              description: Unique task identifier for polling
              example: task-abc123
            model_id:
              type: string
              description: Model ID in `provider/model` format
              example: vidu/viduq3-pro-fast-i2v
            get_result:
              type: object
              description: API information to query the task result
              properties:
                method:
                  type: string
                  example: GET
                url:
                  type: string
                  example: https://api.modellix.ai/api/v1/tasks/task-abc123
          description: Detailed data about the submitted asynchronous task.
    ErrorResponse:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: 'Invalid parameters: parameter ''first_frame_image'' is required'
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 400
            message: 'Invalid parameters: parameter ''first_frame_image'' is required'
    Unauthorized:
      description: Unauthorized - Invalid or missing API Key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 401
            message: 'Authentication failed: invalid API key'
    TooManyRequests:
      description: Too many requests - Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          description: Maximum requests per minute
          schema:
            type: integer
            example: 100
        X-RateLimit-Remaining:
          description: Remaining quota in current window
          schema:
            type: integer
            example: 0
        X-RateLimit-Reset:
          description: Rate limit window reset time (Unix timestamp)
          schema:
            type: integer
            example: 1704067260
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 429
            message: >-
              Rate limit exceeded: 100 requests per minute, retry after 60
              seconds
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 500
            message: Internal server error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API Key authentication. Format: `Bearer YOUR_API_KEY`.'

````