Ovi Text to Video
Generate a video from a prompt with cinematic direction, spoken dialogue markup, and ambient-audio captions.
The Ovi API hub combines prompt-driven text-to-video with image-to-video animation. Describe camera movement, action, dialogue, and ambient sound cues in the prompt, or provide a required image_url to guide the starting frame.
Generate a video from a prompt with cinematic direction, spoken dialogue markup, and ambient-audio captions.
Animate a required source image with a prompt describing camera motion, dialogue, action, and sound cues.
Ovi is a two-endpoint video family on Muapi. Text to Video creates a clip from a prompt, while Image to Video requires image_url and uses the prompt to direct movement and performance from that source frame.
Ovi prompts can include dialogue between <S> and <E> markers and ambient sound descriptions between <AUDCAP> and <ENDAUDCAP>. Text to Video accepts 16:9 or 9:16; Image to Video uses the submitted image as its source. Both endpoints cost $0.20 per video generation.
Create video scenes from a text prompt with direction for action, camera, and composition.
Start from a required image_url and describe the desired motion and performance.
Use <S> and <E> markers in prompts to structure spoken lines.
Use <AUDCAP> and <ENDAUDCAP> markers to describe environmental sound.
Generate a vertical or landscape scene with structured dialogue and ambient sound cues.
Use Image to Video to animate a supplied character or portrait with prompt-directed performance.
Prototype camera moves, action, and atmosphere from a concise text brief.
Submit an Ovi text-to-video task with your Muapi key, receive a request ID, and poll the shared predictions endpoint for the completed video URL.
curl -X POST https://api.muapi.ai/api/v1/ovi-text-to-video \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"A busy railway station. <S>Attention: the express is now boarding.<E> <AUDCAP>Train whistle and crowd murmur<ENDAUDCAP>","aspect_ratio":"16:9"}'
# Response: {"request_id":"REQUEST_ID"}The example calls Text to Video with dialogue and ambient-audio markup plus a 16:9 aspect ratio. Switch to ovi-image-to-video and include image_url for image-guided animation.
curl https://api.muapi.ai/api/v1/predictions/REQUEST_ID/result \ -H "x-api-key: YOUR_API_KEY"
Poll until the task completes, then read the generated video URL from the result response.
Muapi lists ovi-text-to-video for prompt-driven generation and ovi-image-to-video for animation from a required source image.
It requires both prompt and image_url. The prompt describes the motion, camera, dialogue, and sound cues for the generated clip.
Text to Video supports 16:9 and 9:16, with 16:9 as the schema default. Image to Video does not expose an aspect_ratio field.
Use <S> and <E> around spoken dialogue, and <AUDCAP> and <ENDAUDCAP> around ambient sound descriptions in the prompt.
Both Ovi endpoints cost $0.20 per video generation.
Connect prompt-driven and image-guided video generation through one Muapi API key and a shared asynchronous workflow.