You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mmx video generate --prompt "Ocean waves at sunset" --download sunset.mp4
89
90
mmx video generate --prompt "A robot painting" --async
91
+
92
+
# MiniMax-H3 (Video Generation V2)
93
+
mmx video generate --api-key "$MINIMAX_API_KEY" --model MiniMax-H3 --prompt "Ocean waves at sunset"
94
+
mmx video generate --api-key "$MINIMAX_API_KEY" --model MiniMax-H3 --prompt "The subject walks forward" --image start.jpg
95
+
mmx video generate --api-key "$MINIMAX_API_KEY" --model MiniMax-H3 --prompt "Keep the same character" --reference-image character.png --reference-video motion.mp4
96
+
90
97
mmx video task get --task-id 123456
98
+
mmx video task get --task-id 424010985738629 --model MiniMax-H3
91
99
mmx video download --file-id 176844028768320 --out video.mp4
92
100
```
93
101
102
+
For MiniMax-H3, local files and Base64 data URIs are preflight-checked against the documented limits: image 30 MB, reference video 50 MB, reference audio 15 MB, and total JSON request body 64 MB. The API validates dimensions, aspect ratio, duration, frame rate, and codecs for all media.
103
+
104
+
`--region` is an existing global CLI option, not an H3 parameter. Normal video generation does not need it; the CLI uses the saved or automatically detected region. H3 defaults to 2K, 5 seconds, and 16:9 for text-to-video.
Generate video. Default model: `MiniMax-Hailuo-2.3`. This is an async task — by default it polls until completion.
120
+
Generate video. Default model: `MiniMax-Hailuo-2.3`. Select `MiniMax-H3` to use the Video Generation V2 multimodal API. This is an async task — by default it polls until completion.
121
121
122
122
```bash
123
123
mmx video generate --prompt <text> [flags]
@@ -126,8 +126,14 @@ mmx video generate --prompt <text> [flags]
126
126
| Flag | Type | Description |
127
127
|---|---|---|
128
128
|`--prompt <text>`| string, **required**| Video description |
129
-
|`--model <model>`| string |`MiniMax-Hailuo-2.3` (default) or `MiniMax-Hailuo-2.3-Fast`|
130
-
|`--first-frame <path-or-url>`| string | First frame image |
129
+
|`--model <model>`| string |`MiniMax-Hailuo-2.3` (default), `MiniMax-Hailuo-2.3-Fast`, or `MiniMax-H3`|
130
+
|`--image <path-or-url>`| string | Input image for image-to-video |
0 commit comments