Text → High‑Quality Video Generator

Text → High‑Quality Video Generator

Bring prompts to life. Works with any polling‑style API or use Demo Mode to simulate output locally.

Prompt

Use to anchor style or do img→video.
Idle
Pro tip: press Ctrl + Enter to generate.

How to connect your own API

  1. Set Endpoint to Generic Polling API and enter your Base URL.
  2. Implement server routes:
    POST {BASE_URL}/generate
    Body: {
      prompt, negative_prompt, duration, fps, width, height, seed, guidance, motion, image (optional)
    }
    → { job_id: "abc123" }
    
    GET  {BASE_URL}/status/:job_id
    → { status: "queued|running|succeeded|failed", progress: 0..100, video_url?: "https://.../file.mp4", eta_seconds?: 42, message?: "..." }
    
  3. Return CORS headers on your API so the browser can access it.