Other Video Models
Vidrush S1, Runway, and Gemini Omni modes, pricing, and Vidrush API examples.
Overview
This page covers the remaining configured models: Vidrush S1, Runway, Gemini Omni Flash Cheap, and Gemini Omni Flash.
Supported modes
| Model | Mode | Durations | Resolutions | Aspect ratios | Audio |
|---|---|---|---|---|---|
p-video | text-to-video, image-to-video | 5s, 10s, 15s, 20s | 720p, 1080p | 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 1:1 | No |
runway | text-to-video, image-to-video | 5s, 10s | 720p, 1080p | 16:9, 4:3, 1:1, 3:4, 9:16 | No |
gemini-omni-cheap | text-to-video, image-to-video | 10s | 720p | 16:9, 9:16 | No |
gemini-omni-video | text-to-video, image-to-video, video-to-video | 4s, 6s, 8s, 10s | 720p, 1080p, 4k | 16:9, 9:16 | No |
For gemini-omni-video video-to-video, provide video_urls. The v1 public request accepts image_urls and video_urls; it does not expose an audio_urls field.
Credit pricing
Vidrush S1
The public API identifier for Vidrush S1 is p-video.
The matrix is identical for text-to-video and image-to-video.
| Resolution | 5s | 10s | 15s | 20s |
|---|---|---|---|---|
| 720p | 20 | 40 | 60 | 80 |
| 1080p | 40 | 80 | 120 | 160 |
runway
The matrix is identical for text-to-video and image-to-video. At 1080p, only 5s is a configured duration-price combination.
| Resolution | 5s | 10s |
|---|---|---|
| 720p | 12 | 30 |
| 1080p | 30 | Not configured |
gemini-omni-cheap
The price is identical for text-to-video and image-to-video.
| Resolution | 10s |
|---|---|
| 720p | 35 |
gemini-omni-video
For text-to-video and image-to-video:
| Resolution | 4s | 6s | 8s | 10s |
|---|---|---|---|---|
| 720p | 45 | 60 | 75 | 90 |
| 1080p | 45 | 60 | 75 | 90 |
| 4k | 105 | 120 | 135 | 150 |
For video-to-video with video input, the configured per-generation prices are 120 credits at 720p, 120 at 1080p, and 180 at 4k.
cURL
curl -X POST https://vidrush-ai.com/api/v1/videos \
-H "Authorization: Bearer $VIDRUSH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "p-video",
"mode": "text-to-video",
"prompt": "A red origami crane folding itself",
"options": {
"duration": "5s",
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'CLI
vidrush generate -m p-video -p "A red origami crane folding itself" \
--duration 5s --resolution 720p --aspect-ratio 16:9 --waitMCP
Use get_video_model before generate_video when choosing among Vidrush S1, Runway, and Gemini Omni configurations.
Notes
- Do not send
audio: truefor models on this page. gemini-omni-cheapuses a fixed 10-second, 720p configuration and accepts at most twoimage_urls.gemini-omni-videohas a separate video-input price branch; usevideo_urlsonly withvideo-to-video.- The public catalog is authoritative when a detailed price matrix is unavailable.