곧 출시 예정
작동하는 엔드포인트와 코드 예제를 복사하고, 모든 파라미터가 필요하면 전체 API 참조 문서를 여세요.
[모델 이름]의 포괄적인 샘플 코드와 API 리소스에 액세스하여 통합 프로세스를 간소화하세요. 자세한 문서는 단계별 가이드를 제공하여 프로젝트에서 [모델 이름]의 모든 잠재력을 활용할 수 있도록 돕습니다.
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을(를) 활용하고, 장기 통합 전에 다른 대안과 비교해 보세요.
텍스트-투-비디오 콘셉트와 소셜 콘텐츠
제품 데모와 시네마틱 스토리보드
이미지-투-비디오 모션과 창작 반복 작업
품질, 지연 시간, 기능, 가격 트레이드오프에 따라 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는 동기화된 오디오가 포함된 동영상을 생성할 수 있는, 당사에서 가장 진보되고 강력한 미디어 생성 모델입니다. 자연어 또는 이미지로부터 정교하고 역동적인 동영상 클립을 생성할 수 있습니다.
프로덕션 환경으로 전환하기 전에 실시간 하트비트 데이터, 엔드포인트 가용성, 실측 응답 시간을 확인하세요.