어떤 곡이든 다른 스타일로 재해석합니다. 입력 오디오에서 멜로디 구조를 추출해 트랙을 재생성합니다 — 멜로디와 곡 길이는 유지되고, 목소리·악기·장르·편곡은 모두 바뀔 수 있습니다.
콘솔의 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": "minimax/music-cover",
"input": {
"audio_url": "https://example.com/original-song.mp3",
"prompt": "Jazz arrangement, saxophone lead, smooth female vocal, mellow piano chords, late night club",
"audio_format": "mp3",
"bitrate": 256000,
"sample_rate": 44100
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 타깃 스타일 (최대 2,000자). 장르(가장 강한 스타일 전환), 보컬 스타일, 악기, 프로덕션 질감 순으로 쓰세요. 예: 'Jazz arrangement, saxophone lead, smooth female vocal, mellow piano chords' |
audio_url | string | Yes | - | 커버할 원곡의 URL. 공개 접근 가능한 MP3/WAV. 보컬과 멜로디가 선명한 곡일수록 결과가 좋습니다 |
lyrics | string | No | - | 원곡에서 추출한 가사를 대체할 새 가사 (선택). 생략하면 원곡 가사를 그대로 부릅니다. \n과 [Verse], [Chorus] 구조 태그 사용 가능 |
sample_rate | integer | No | 44100 | 생성 음악의 샘플레이트 16000240003200044100 |
bitrate | integer | No | 256000 | 생성 음악의 비트레이트 3200064000128000256000 |
audio_format | string | No | mp3 | 출력 형식. 프로덕션 작업에는 wav 권장 mp3wavpcm |
이 모델의 audio_url 파라미터에 파일을 전달하는 방법은 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=minimax/music-cover" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:audio_url=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "minimax/music-cover",
"input": {
"prompt": "your prompt here",
"audio_url": "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": "minimax/music-cover",
"input": {
"audio_url": "https://example.com/original-song.mp3",
"prompt": "Jazz arrangement, saxophone lead, smooth female vocal, mellow piano chords, late night club",
"audio_format": "mp3",
"bitrate": 256000,
"sample_rate": 44100
}
}'발라드를 강렬한 EDM 트랙으로 변환
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/music-cover",
"input": {
"audio_url": "https://example.com/ballad.mp3",
"prompt": "EDM remix, 128 BPM, synth bass, atmospheric pads, driving beat"
}
}'바이닐 질감의 차분한 로파이 리워크
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/music-cover",
"input": {
"audio_url": "https://example.com/pop-song.mp3",
"prompt": "Lo-fi hip hop version, vinyl crackle, chill beat, warm midrange"
}
}'