구글의 빠른 멀티모달 비디오 생성·편집 모델로, Interactions API 기반에 네이티브 오디오를 지원합니다. 텍스트-비디오, 이미지-비디오, 키프레임 보간, 레퍼런스-비디오, 비디오 편집을 360p부터 4K까지 하나의 모델로 처리합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 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": "google/gemini-omni-1.1",
"input": {
"prompt": "A cinematic drone shot through misty pine mountains at sunrise, gentle wind and birdsong. No dialogue.",
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 비디오를 설명하는 텍스트 프롬프트 — 장면, 카메라 움직임, 조명, 분위기, 오디오까지. 피하고 싶은 요소도 프롬프트에 직접 적으세요 (예: 'no dialogue') |
image | string | No | - | 비디오로 애니메이션화할 시작 이미지. last_frame 없이 제공하면 이 이미지에서 비디오가 생성됨 |
last_frame | string | No | - | 끝 이미지. image와 함께 제공하면 두 프레임 사이를 부드럽게 보간 |
reference_images | array | No | [] | 피사체·스타일을 가이드하는 레퍼런스 이미지 (프레임으로 직접 사용되지 않음) — 특정 캐릭터·사물 유지에 사용 |
video | string | No | - | 편집할 기존 비디오. 바꿀 내용을 프롬프트로 설명하면 나머지는 유지됩니다. 과금은 원본 영상의 실측 길이 기준 |
resolution | string | No | 720p | 출력 해상도. 360p는 고속 드래프트 모드. 출력 초당 과금: 360p 116, 720p 349, 1080p 535, 4k 1046크레딧 360p720p1080p4k |
aspect_ratio | string | No | 16:9 | 화면 비율. 기존 비디오 편집 시에는 무시됨 16:99:16 |
이 모델의 imagelast_framereference_imagesvideo 파라미터에 파일을 전달하는 방법은 3가지입니다.
공개 접근 가능한 URL을 직접 전달합니다. Storage API(POST /v1/files/upload-url)로 업로드하면 파일이 S3로 직접 올라가고(파일당 50MB), 반환된 file_url을 그대로 쓰면 됩니다.
{
"model": "google/gemini-omni-1.1",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 없는 대신, 파일이 API 서버를 거치므로 요청 전체 10MB 제한이 적용됩니다.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=google/gemini-omni-1.1" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
프롬프트로 사운드까지 지정한 시네마틱 클립 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "google/gemini-omni-1.1",
"input": {
"prompt": "A cinematic drone shot through misty pine mountains at sunrise, gentle wind and birdsong. No dialogue.",
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'나머지는 유지한 채 기존 영상만 편집
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "google/gemini-omni-1.1",
"input": {
"prompt": "Make the sky stormy with distant thunder, keep everything else the same",
"video": "https://example.com/source.mp4",
"resolution": "720p"
}
}'시작·끝 프레임 사이의 부드러운 전환 생성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "google/gemini-omni-1.1",
"input": {
"prompt": "Smooth continuous timelapse from sunrise to sunset over the lake",
"image": "https://example.com/sunrise.jpg",
"last_frame": "https://example.com/sunset.jpg"
}
}'