Vidu Q3 Image To Video

vidu/q3/image-to-video

Vidu Q3 Image-to-Video turns text prompts into high-quality videos with exceptional visual fidelity and diverse motion. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

Examples

Vidu Q3 Image To Video example 1

Parameters

NameTypeDefaultConstraintsDescription
image *Imageimage_upload0–1 itemsThe URL of the image to generate an image from.
prompt *Prompttextarea≤ 5000 charsThe positive prompt for the generation.
resolutionResolutionselect720p540p | 720p | 1080pThe resolution of the generated media.
durationDurationslider51 ~ 16 · step 1The duration of the generated media in seconds.
movement_amplitudeMovement Amplitudeselectautoauto | small | medium | largeThe movement amplitude of objects in the frame. Defaults to auto, accepted value: auto small medium large.
generate_audioGenerate AudiobooleantrueWhether to generate audio.
bgmBgmbooleantrueThe background music for generating the output.
seedSeednumberThe random seed to use for the generation. -1 means a random seed will be used.

API

Call this model through one unified REST API. Get a key on the API Keys page.

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/vidu/q3/image-to-video" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "image": [
      "https://assets-public.namifusion.com/uploads/images/2026-03-06/b7a05ad27202.png"
    ],
    "prompt": "Transform the serene sunset image into a dynamic video showcasing the transition from day to night, with gentle ocean waves and a sky full of stars.",
    "resolution": "1080p",
    "duration": 8,
    "movement_amplitude": "medium",
    "generate_audio": true,
    "bgm": true,
    "seed": 42
  }
}'

# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
  -H "Authorization: Bearer YOUR_API_KEY"
Python
import time, requests

API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1) Submit
resp = requests.post(
    "https://www.namifusion.com/api/v1/marketplace/run/vidu/q3/image-to-video",
    headers=HEADERS,
    json={
        "input": {
            "image": [
                "https://assets-public.namifusion.com/uploads/images/2026-03-06/b7a05ad27202.png"
            ],
            "prompt": "Transform the serene sunset image into a dynamic video showcasing the transition from day to night, with gentle ocean waves and a sky full of stars.",
            "resolution": "1080p",
            "duration": 8,
            "movement_amplitude": "medium",
            "generate_audio": True,
            "bgm": True,
            "seed": 42
        }
    },
)
resp.raise_for_status()  # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()

# 2) Poll until a terminal state (completed / failed / cancelled).
#    This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
    if time.time() > deadline:
        raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
    time.sleep(3)
    poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
    poll.raise_for_status()
    task = poll.json()

print(task["status"], task.get("output"))
JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };

// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/vidu/q3/image-to-video", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "image": [
        "https://assets-public.namifusion.com/uploads/images/2026-03-06/b7a05ad27202.png"
      ],
      "prompt": "Transform the serene sunset image into a dynamic video showcasing the transition from day to night, with gentle ocean waves and a sky full of stars.",
      "resolution": "1080p",
      "duration": 8,
      "movement_amplitude": "medium",
      "generate_audio": true,
      "bgm": true,
      "seed": 42
    }
  }),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();

// 2) Poll until a terminal state (completed / failed / cancelled).
//    This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
  if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
  await new Promise((r) => setTimeout(r, 3000));
  const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
  if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
  task = await poll.json();
}

console.log(task.status, task.output);

Documentation

Vidu Q3 Image To Video

Transform Text Prompts into High-Quality Videos

Vidu Q3 Image-to-Video is a cutting-edge AI model that converts text prompts into stunning videos with exceptional visual fidelity and diverse motion. With a ready-to-use REST inference API, it offers the best performance with no cold starts and affordable pricing.

🚀 Key Features

  • Image-driven Generation: Transform any image into dynamic video with natural motion.
  • High Resolution Output: Generate videos in 540p, 720p, or 1080p quality.
  • Flexible Duration: Create videos from 1 to 16 seconds in length.
  • Audio Generation: Optional synchronized audio and background music.
  • Motion Control: Adjust movement amplitude for subtle or dynamic animations.

🛠️ Technical Specifications

SpecificationDetails
Model ArchitectureAdvanced AI video generation
Input FormatImage URL, Text Prompt
Output FormatVideo
Resolution540p, 720p, 1080p
Duration1-16 seconds
Frame RateVariable, based on resolution and duration
LatencyMinimal, optimized for performance

💰 Pricing

ResolutionCost per Second
540p$0.07
720p$0.15
1080p$0.16

💡 Best Use Cases

  • Photo Animation: Bring portraits, landscapes, and product images to life.
  • Social Media Content: Create engaging video content from static images.
  • Marketing & Ads: Generate dynamic promotional videos from product photos.
  • Storytelling: Animate illustrations and artwork for narratives.

🔗 Related Models

  • Vidu Q3 Text-to-Video: Generate video directly from text descriptions.

Related models

xAI Grok Imagine Video v1.5 Image to Video
Image to VideoX Ai

xAI Grok Imagine Video v1.5 Image to Video

Animate one input image with a text prompt into a 1-15 second video at 480p or 720p.

from $0.840 / per run
Nami Wan 2.7 I2V Spicy Prime
Image to Video

Nami Wan 2.7 I2V Spicy Prime

Create a 2–15 second video from a reference image and prompt, with 720p/1080p output and optional audio guidance.

from $1.00 / per run
MiniMax H3 Image to Video
Image to VideoMinimax

MiniMax H3 Image to Video

MiniMax H3 Image to Video animates a first-frame image into a coherent 2K video, with natural-language motion instructions and optional last-frame control for consistent motion, scene continuity, and cinematic video generation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

from $0.650 / per run
Kling Omni Video O3 Image-To-Video
Image to VideoKling

Kling Omni Video O3 Image-To-Video

Kling Omni Video O3 Image-to-Video transforms static images into dynamic cinematic videos using MVL (Multi-modal Visual Language) technology. Maintains subject consistency while adding natural motion, physics simulation, and seamless scene dynamics. Supports audio generation. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.

from $0.420 / per run
Kling Omni Video O1 Image-to-Video
Image to VideoKling

Kling Omni Video O1 Image-to-Video

Kling Omni Video O1 Image-to-Video transforms static images into dynamic cinematic videos using MVL (Multi-modal Visual Language) technology. Maintains subject consistency while adding natural motion, physics simulation, and seamless scene dynamics. Ready-to-use REST API, best performance, no coldstarts, affordable pricing.

from $0.560 / per run
Kling 3.0 Standard
Image to VideoKling

Kling 3.0 Standard

Kling 3.0 Standard delivers high-quality image-to-video generation with smooth motion, cinematic visuals, accurate prompt adherence, and native audio for ready-to-share clips. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

from $0.420 / per run
Kling V2.6 Image to Video API
Image to VideoKling

Kling V2.6 Image to Video API

Kling 2.6 delivers top-tier image-to-video generation with smooth motion, cinematic visuals, accurate prompt adherence, and native audio for ready-to-share clips. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

from $0.210 / per run
Image to Video
Image to VideoGoogle

Gemini Omni Flash Image to Video API

Gemini Omni Flash Image to Video animates input images into short AI videos with synchronized audio, adding motion and sound while following the source image. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

from $1.12 / per run