개발자를 환영합니다!
애플리케이션을 위한 텍스트 음성 변환 API
New Integration Text To Speech API의 완성을 발표하게 된 것을 자랑스럽게 생각합니다
AI 기술을 기반으로 한 API를 사용하면 텍스트를 자연스러운 언어로 변환할 수 있습니다
-
지능적이고 실제와 같은 응답으로 고객 상호 작용을 개선합니다
-
장치 및 응용 프로그램에서 음성 사용자 인터페이스로 사용자를 참여시킵니다
-
사용자 기본 설정, 음성 및 언어에 따라 개인화하십시오
개발자 도구
API를 사용하여 텍스트를 음성으로 쉽게 변환합니다.
// Get authentication token
// Please note that you now have to replace REPLACE_THIS_WITH_YOUR_TOKEN in the authorization header with your token
curl 'https://api.voiceovermaker.io/login' \
-H 'content-type: application/json;charset=UTF-8' \
--data-binary '{"email":"[email protected]","password":"yourpassword"}'
// Get information about your available and total used characters
curl 'https://api.voiceovermaker.io/character_usage' \
-H 'x-auth: Bearer REPLACE_THIS_WITH_YOUR_TOKEN'
// Get all voices
curl 'https://api.voiceovermaker.io/list_voices' \
-H 'x-auth: Bearer REPLACE_THIS_WITH_YOUR_TOKEN'
// Generate voice
// You can replace the speech parameter with a language from list_voices
// This command will save the voice to a file voice.mp3
curl -X POST 'https://api.voiceovermaker.io/create_voice' \
-H 'x-auth: Bearer REPLACE_THIS_WITH_YOUR_TOKEN' \
-H 'content-type: application/json;charset=UTF-8' \
--data-binary '{"pitch":0,"returnRawFile":true,"speakingRate":1.00,"text":"This is a Test","speech":{"Gender":"Female","Id":"Kendra","LanguageCode":"en-US","Name":"Kendra","languageName":"English (en-US, Female) - Kendra","locale":"en-US","pvr":"a"}}' \
-o voice.mp3