近日公開
動作するエンドポイントとコード例をコピーし、全パラメーターが必要な場合は完全なAPIリファレンスを開いてください。
MiniMax H3 Maxの包括的なサンプルコードとAPIリソースにアクセスして、統合プロセスを効率化しましょう。詳細なドキュメントでは段階的なガイダンスを提供し、プロジェクトでMiniMax H3 Maxの潜在能力を最大限に活用できるよう支援します。
set -euo pipefail
# 1. Create the task.
task=$(curl --fail-with-body --silent --show-error \
https://api.cometapi.com/v1/videos \
-H "Authorization: Bearer $COMETAPI_KEY" \
--form-string 'model=minimax-h3-max' \
--form-string 'prompt=A cinematic view of clouds moving over green mountains, locked camera, no text.' \
--form-string 'seconds=5' \
--form-string 'size=1344x768')
# Add --form-string 'images=https://example.com/reference.jpg' for image-to-video.
task_id=$(jq -r '.id' <<<"$task")
echo "Task: ${task_id}"
# 2. Poll until the task finishes.
while true; do
task=$(curl --fail-with-body --silent --show-error \
--retry 3 --retry-all-errors --retry-delay 2 \
"https://api.cometapi.com/v1/videos/${task_id}" \
-H "Authorization: Bearer $COMETAPI_KEY")
status=$(jq -r '.status' <<<"$task")
echo "Status: $status"
[[ "$status" == "failed" ]] && { echo "$task" >&2; exit 1; }
[[ "$status" == "completed" ]] && break
sleep 10
done
# 3. Download the completed video.
curl --fail-with-body --silent --show-error \
--retry 3 --retry-all-errors --retry-delay 2 \
"https://api.cometapi.com/v1/videos/${task_id}/content" \
-H "Authorization: Bearer $COMETAPI_KEY" \
--output "${task_id}.mp4"
echo "Saved: ${task_id}.mp4"videoの機能に合った本番ワークフローにMiniMax H3 Maxを活用し、長期的な統合前に他の選択肢とも比較してください。
テキストから動画のコンセプトとSNS向けコンテンツ
商品デモと映画的な絵コンテ
画像から動画へのモーションと創作の反復
品質・レイテンシ・機能・料金のトレードオフに応じて、CometAPIで利用できる他のモデルと比較できます。
From fast verification to cinematic output, billing is based on the generated video duration, selecting the appropriate resolution, and turning every generation into a planned creative investment activity rule
FLUX 3 - Real World Models: Towards Multimodal Flow Models as the Backbone of Visual Intelligence.
HappyHorse 1.1 は、プロフェッショナルなコンテンツ制作、広告、短編映画、ソーシャルメディア制作、ストーリーテリング向けに設計されたマルチモーダル動画生成モデルです。 独立した動画生成評価で上位にランクインして大きな注目を集めた HappyHorse 1.0 の機能を拡張し、シーンの一貫性を強化し、映像の忠実度を向上させています。
Seedance 2.0 は、映画的で複数ショットのナラティブ動画生成に特化した、ByteDanceの次世代マルチモーダル動画基盤モデルです。単一ショットのテキストから動画へのデモとは異なり、Seedance 2.0 は、リファレンスベースのコントロール(画像、短尺クリップ、音声)、ショット間でのキャラクターやスタイルの一貫性、そしてネイティブな音声/映像の同期を重視し、プロフェッショナルなクリエイティブやプリビジュアライゼーションのワークフローで役立つAI動画を実現することを目指しています。
Gemini Omni Fast is a lightweight multimodal video generation model designed for fast and flexible content creation. It enables efficient video generation with support for multiple input types, making it suitable for interactive and iterative workflows.
Sora 2 Pro は、当社で最も高度かつ強力なメディア生成モデルで、音声と同期した動画を生成できます。自然言語または画像から、精細でダイナミックな動画クリップを生成します。
本番投入前に、リアルタイムのハートビートデータ、エンドポイントの可用性、実測レスポンスタイムを確認できます。