ยินดีต้อนรับนักพัฒนา!

API การแปลงข้อความเป็นคำพูดสำหรับแอปพลิเคชันของคุณ

เราภูมิใจที่จะประกาศความสมบูรณ์ของ Integration Text To Speech API ใหม่.

ด้วย API ที่ใช้เทคโนโลยี AI คุณสามารถเปลี่ยนข้อความเป็นภาษาที่มีเสียงธรรมชาติได้.

  • ปรับปรุงการโต้ตอบกับลูกค้าด้วยการตอบสนองที่ชาญฉลาดและเหมือนจริง

  • ดึงดูดผู้ใช้ด้วยอินเทอร์เฟซผู้ใช้ที่เป็นแกนนำในอุปกรณ์และแอปพลิเคชันของคุณ

  • ปรับแต่งตามความชอบ เสียง และภาษาของผู้ใช้

เครื่องมือสำหรับผู้พัฒนา

ใช้ 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