MiniMax H3

Video Generation
minimax/hailuo-3

MiniMax 新一代全模态视频生成模型,原生输出带同步音轨。支持文本、图片、视频、音频混合输入,可用首帧/尾帧锚定画面,或用参考图/参考视频/参考音频引导风格。4-15 秒任意整数时长,768P 与 2K 两档分辨率,7 种画幅(含自适应)。

長さ
4-15s
音声
対応
リリース日
2026-07-31
生成モード
t2vテキストから動画i2v画像から動画v2v動画から動画
解像度
768p2k
アスペクト比
21:916:94:31:13:49:16adaptive
機能
動画入力
利用可能なプロバイダー
MiniMaxBedrock2
対応プロトコル
openai

料金

$0.08/秒〜
解像度モード音声秒あたりの価格
768pすべてすべて$0.08/秒
2kすべてすべて$0.13/秒
その他すべての組み合わせ$0.13/秒

生成した動画の秒数に応じて課金されます。対応するパラメータの組み合わせと価格は API のリアルタイムの応答に準じ、モデルのバージョンによって変わる場合があります。

Providers

MiniMax
Protocols
openai/v1/videos
Bedrock2
Protocols
openai/v1/videos

コード例

import time
import requests
BASE = "https://api.ofox.ai/v1/videos"
HEADERS = {"Authorization": "Bearer YOUR_OFOX_API_KEY"}
# Create the generation task
task = requests.post(BASE, headers=HEADERS, json={
"model": "minimax/hailuo-3",
"prompt": "A golden retriever running on the beach at sunset",
"duration": 4,
"resolution": "768p",
"generate_audio": True,
"provider": {"type": "minimax"},
# Or: "provider": {"type": "novita"}
}).json()
# Poll until the task reaches a terminal state
while True:
task = requests.get(f"{BASE}/{task['id']}", headers=HEADERS).json()
if task["status"] in ("completed", "failed", "cancelled", "expired"):
break
time.sleep(10)
# Prefer mirror_urls (persistent) then fall back to unsigned_urls (24h)
print((task.get("mirror_urls") or task.get("unsigned_urls") or [None])[0])

よくある質問

Ofox.ai の MiniMax H3 は、生成した動画 1 秒あたり $0.08〜 で利用できます。実際の料金は解像度・生成モード・音声によって異なります。従量課金制で、月額料金はかかりません。