어떤 영상에든 AI 사운드를 입힙니다 (500만+ 실행). 영상 내용과 텍스트 프롬프트로 동기화된 오디오(앰비언스·효과음·폴리)를 합성합니다. 무음인 AI 생성 클립의 마무리에 완벽합니다.
콘솔의 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": "zsxkib/mmaudio",
"input": {
"video": "https://example.com/generated-clip.mp4",
"prompt": "ocean waves, seagulls, gentle wind"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | No | - | 원하는 사운드 설명 (예: 'rain on leaves, distant thunder') |
negative_prompt | string | No | music | 피할 사운드 (기본값은 음악 제외) |
video | string | No | - | 사운드를 입힐 영상 |
duration | number | No | 8 | 오디오 길이 (초) |
num_steps | integer | No | 25 | 추론 스텝 수 |
cfg_strength | number | No | 4.5 | 가이던스 강도 (CFG) |
seed | integer | No | - | 시드 (-1이면 랜덤) |
image | string | No | - | 이미지-오디오 생성을 위한 선택적 이미지 파일 (실험적 기능) |
이 모델의 video 파라미터에 파일을 전달하는 방법은 3가지입니다.
POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=zsxkib/mmaudio" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:video=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "zsxkib/mmaudio",
"input": {
"prompt": "your prompt here",
"video": "https://example.com/image.jpg"
}
}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": "zsxkib/mmaudio",
"input": {
"video": "https://example.com/generated-clip.mp4",
"prompt": "ocean waves, seagulls, gentle wind"
}
}'