내장 오디오 생성 기능을 갖춘 Google의 최첨단 비디오 생성 모델로, 동기화된 사운드와 함께 시네마틱 품질의 비디오를 생성합니다.
이 모델의 사용법을 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/veo-3.1",
"input": {
"prompt": "A lone astronaut walks across a vast Martian desert at sunset, wind blowing dust, cinematic wide shot, dramatic orchestral score",
"duration": "8",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 비디오에 대한 텍스트 설명 |
image | string | No | - | 시작 프레임 이미지 URL |
duration | integer | No | 8 | 비디오 길이 초 (5 또는 8) 58 |
aspect_ratio | string | No | 16:9 | 출력 화면 비율 16:99:161:1 |
generate_audio | boolean | No | true | 내장 오디오 생성 활성화 |
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/veo-3.1",
"input": {
"prompt": "A lone astronaut walks across a vast Martian desert at sunset, wind blowing dust, cinematic wide shot, dramatic orchestral score",
"duration": "8",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'다이나믹한 제품 공개 비디오
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/veo-3.1",
"input": {
"prompt": "Luxury perfume bottle emerging from golden mist, slow camera orbit, elegant studio lighting, ambient music",
"duration": "5",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'POST /v1/predictions