오디오

음성 합성(텍스트를 음성으로)과 전사(음성을 텍스트로).

음성 합성

http
POST /v1/audio/speech
json
{
  "text": "Bonjour, ceci est un test de synthese vocale.",
  "voice": "alloy",
  "model": null,
  "routing_strategy": "auto"
}

voice는 선택한 제공업체에 따라 달라집니다: OpenAI의 이름(alloy, echo 등)과 ElevenLabs의 음성 ID는 서로 호환되지 않습니다 — 특정 음성이 필요하다면 model을 명시적으로 지정하세요.

json
{
  "audio": "https://cdn.uploadscenter.com/file_...",
  "model": "eleven_multilingual_v2",
  "provider": "elevenlabs"
}

전사

http
POST /v1/audio/transcriptions
json
{
  "audio_url": "https://exemple.com/enregistrement.mp3",
  "language": "fr",
  "model": null,
  "routing_strategy": "auto"
}
json
{
  "text": "Transcription du contenu audio.",
  "model": "whisper-1",
  "provider": "openai"
}

제공업체

OpenAI(TTS + Whisper), ElevenLabs(고품질 다국어 음성 합성 + 전사).