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은 생성된 동영상 초당 $0.08부터 시작합니다. 정확한 요금은 해상도, 생성 모드, 오디오에 따라 달라집니다. 사용한 만큼만 지불하며 월 고정 요금이 없습니다.