Skip to main content
Core.Today
|
MiniMax보통울트라

MiniMax Hailuo-03 (H3) Image to Video

Fal.AI를 통해 제공되는 MiniMax Hailuo-03(H3) 이미지-투-비디오 모델입니다. 첫 프레임 이미지를 기반으로 2K 해상도의 5~15초 영상을 생성하며, 네이티브 오디오와 end_image_url을 이용한 첫-마지막 키프레임 제어를 지원합니다.

3020 크레딧
초당 과금, 해상도에 따라 차등
단일 첫 프레임 이미지로부터 바로 영상 생성
최대 2K 해상도 출력
5~15초 범위에서 길이 조절 가능
영상과 함께 네이티브 오디오 생성
end_image_url로 첫-마지막 키프레임 제어 가능
출력 화면비는 입력 이미지 비율을 자동으로 따라감

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "minimax/h3/image-to-video",
  "input": {
    "prompt": "The camera slowly pulls back from the scene, revealing the full landscape as clouds drift overhead and light shifts across the terrain.",
    "image_url": "https://storage.googleapis.com/falserverless/example_inputs/hailuo23/pro_i2v_in.jpg",
    "duration": 5,
    "resolution": "2K"
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-영상 생성을 위한 텍스트 프롬프트
durationintegerNo5생성될 영상의 길이(초 단위)입니다.
resolutionstringNo2K생성될 영상의 해상도입니다.
768P2K
image_urlstringYes-첫 프레임으로 사용할 이미지의 URL입니다. 출력 화면비는 이 이미지를 따라갑니다.
end_image_urlstringNo-선택 항목으로, 첫-마지막 키프레임 생성을 위해 마지막 프레임으로 사용할 이미지 URL입니다.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

풍경 사진에서 서서히 물러나며 전경을 드러내는 카메라 무빙

정적인 풍경 이미지를 카메라가 뒤로 물러나며 전체 장면을 드러내는 5초짜리 2K 클립으로 애니메이션화합니다.

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "minimax/h3/image-to-video",
  "input": {
    "prompt": "The camera slowly pulls back from the scene, revealing the full landscape as clouds drift overhead and light shifts across the terrain.",
    "image_url": "https://storage.googleapis.com/falserverless/example_inputs/hailuo23/pro_i2v_in.jpg",
    "duration": 5,
    "resolution": "2K"
  }
}'

첫-마지막 키프레임 전환

시작 이미지와 종료 이미지를 함께 제공하여 두 이미지 사이를 잇는 더 긴 전환 영상을 생성합니다.

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "minimax/h3/image-to-video",
  "input": {
    "prompt": "A smooth cinematic transition as the scene transforms from day to night.",
    "image_url": "https://example.com/start-frame.jpg",
    "end_image_url": "https://example.com/end-frame.jpg",
    "duration": 10,
    "resolution": "2K"
  }
}'

팁 & 모범 사례

1특정 두 샷 사이를 제어된 방식으로 전환하고 싶다면 open-ended 카메라 무빙 대신 end_image_url을 사용하세요.
2출력 화면비는 항상 image_url을 따라가므로, 업로드 전에 원본 이미지를 목표 비율로 미리 크롭하세요.
315초에 가까운 긴 길이는 시작부터 끝까지의 카메라/장면 진행을 명확히 서술한 프롬프트에서 가장 잘 동작합니다.
4전체 2K 렌더링을 확정하기 전, 빠른 초안이나 미리보기용으로 768P 해상도를 먼저 사용해보세요.

사용 사례

정적인 제품 사진이나 인물 사진을 짧은 영상 클립으로 애니메이션화
스토리보드 프레임을 시네마틱한 카메라 무빙 시퀀스로 전환
두 개의 디자인된 샷 사이를 첫-마지막 키프레임으로 전환
하나의 대표 이미지로 소셜 미디어 티저 클립 생성