Voices
Name | Language | Dialect | Gender | Style | Speaker ID |
---|---|---|---|---|---|
Omar | Arabic | Saudi | Male | Neutral | ar-male-Omar-saudi-neutral |
Mira | Arabic | Saudi | Female | Neutral | ar-female-Mira-saudi-neutral |
Faisal | Arabic | Standard | Male | Neutral | ar-male-Faisal-arabic-neutral |
Abira | Arabic | Standard | Female | Neutral | ar-female-Abira-arabic-neutral |
Oscar | English | None | Male | Neutral | en-male-Oscar-english-neutral |
Isla | English | None | Female | Neutral | en-female-Isla-english-neutral |
Arjun | Hindi | None | Male | Neutral | hi-male-Arjun-hindi-neutral |
Juhi | Hindi | None | Female | Neutral | hi-female-Juhi-hindi-neutral |
- API
- Python SDK
Copy and paste the below mentioned curl requeston your terminal to fetch avaiable TTS voices using the API. Fill the variables with the appropriate values.
curl --location 'https://voice.neuralspace.ai/api/v2/tts/voices' \
--header "Authorization: $NS_API_KEY"
Once you have the package and API key set up, execute the following python code snippet to fetch available TTS voices.
import neuralspace as ns
vai = ns.VoiceAI()
# print(vai.)
# or,
# vai = ns.VoiceAI(api_key='YOUR_API_KEY')
# Fetch TTS voices
print(vai.voices())