Skip to main content
Qwen빠름높음

Qwen3 TTS

3가지 모드를 갖춘 Alibaba의 통합 TTS입니다: 프리셋 화자(custom_voice), 레퍼런스 오디오 기반 즉시 음성 복제(voice_clone), 텍스트 설명만으로 새로운 목소리 생성(voice_design).

47 크레딧
1000자당 (0.045 크레딧/자, 글자 단위 과금)
3가지 모드: 프리셋 음성, 음성 복제, 음성 디자인
자연어 설명만으로 음성 디자인
한국어(Sohee) 포함 9개 프리셋 화자
자동 감지 포함 10개 언어 지원
스타일/감정 지시문 지원

지금 바로 실행해보세요

콘솔의 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": "qwen/qwen3-tts",
  "input": {
    "mode": "custom_voice",
    "text": "안녕하세요, 코어닷투데이입니다. 무엇을 도와드릴까요?",
    "speaker": "Sohee",
    "language": "auto"
  }
}'

파라미터

파라미터타입필수기본값설명
textstringYes-음성으로 합성할 텍스트
modestringNocustom_voice'custom_voice'는 프리셋 화자, 'voice_clone'은 레퍼런스 오디오 복제, 'voice_design'은 설명 기반 음성 생성
custom_voicevoice_clonevoice_design
languagestringNoauto텍스트 언어 ('auto'면 자동 감지)
autoChineseEnglishJapaneseKoreanFrenchGermanItalianSpanishPortugueseRussian
speakerstringNoSerena프리셋 화자 (custom_voice 모드 전용)
AidenDylanEricOno_annaRyanSerenaSoheeUncle_fuVivian
voice_descriptionstringNo-원하는 목소리의 자연어 설명 (voice_design 모드 전용). 예: '따뜻하고 친근한 여성 목소리'
reference_audiostringNo-음성 복제용 레퍼런스 오디오 (voice_clone 모드 전용)
reference_textstringNo-레퍼런스 오디오의 대본 (voice_clone 모드에서 권장)
style_instructionstringNo-스타일/감정 지시문 (선택). 예: 'speak slowly and calmly'

파일 입력 방법

이 모델의 reference_audio 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=qwen/qwen3-tts" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:reference_audio=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "qwen/qwen3-tts",
  "input": {
    "prompt": "your prompt here",
    "reference_audio": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

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

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

예제

한국어 프리셋 음성

Sohee 프리셋으로 한국어 음성 합성

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "qwen/qwen3-tts",
  "input": {
    "mode": "custom_voice",
    "text": "안녕하세요, 코어닷투데이입니다. 무엇을 도와드릴까요?",
    "speaker": "Sohee",
    "language": "auto"
  }
}'

설명 기반 음성 디자인

텍스트 설명만으로 새로운 목소리 생성

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "qwen/qwen3-tts",
  "input": {
    "mode": "voice_design",
    "text": "Welcome aboard! This is your captain speaking.",
    "voice_description": "A deep, confident male voice with a calm authoritative tone"
  }
}'

팁 & 모범 사례

1먼저 모드를 정하세요: 프리셋(custom_voice), 복제(voice_clone), 설명 기반(voice_design)
2한국어 프리셋 화자는 Sohee이며, language auto가 혼합 텍스트를 자동 처리합니다
3voice_clone 모드에서는 reference_text를 함께 주면 복제 정확도가 올라갑니다
4'excited tone' 같은 style_instruction으로 목소리는 유지한 채 말투만 지시할 수 있습니다

사용 사례

녹음 없이 커스텀 음성 제작
개인화를 위한 음성 복제
다국어 어시스턴트 음성
게임 캐릭터 음성 디자인
스타일 지시 나레이션