Openvoice
OpenVoice is a versatile voice cloning model that supports multiple languages and offers precise tone replication, flexible style control, and zero-shot cross-lingual capabilities
1import requests
2import json
3
4url = "https://api.segmind.com/v1/openvoice"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "input_audio": "https://segmind-sd-models.s3.amazonaws.com/display_images/openvoice-ip.mp3",
12 "language": "EN_NEWEST",
13 "speed": 1,
14 "text": "Did you ever hear a folk tale about a giant turtle?"
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20 result = response.json()
21 print(json.dumps(result, indent=2))
22else:
23 print(f"Error: {response.status_code}")
24 print(response.text) 1import requests
2import json
3
4url = "https://api.segmind.com/v1/openvoice"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "input_audio": "https://segmind-sd-models.s3.amazonaws.com/display_images/openvoice-ip.mp3",
12 "language": "EN_NEWEST",
13 "speed": 1,
14 "text": "Did you ever hear a folk tale about a giant turtle?"
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20 result = response.json()
21 print(json.dumps(result, indent=2))
22else:
23 print(f"Error: {response.status_code}")
24 print(response.text)API Endpoint
https://api.segmind.com/v1/openvoiceParameters
input_audiorequiredstring (uri)Input reference audio (5-120 seconds) of a person speaking, used for training an audio model to capture voice characteristics
"https://segmind-sd-models.s3.amazonaws.com/display_images/openvoice-ip.mp3"speedrequirednumberSpeed at which the output audio is generated
1Range: 0.5 - 2textrequiredstringText to be spoken or processed
"Did you ever hear a folk tale about a giant turtle?"languageoptionalstringThe language of the audio to be generated British English, American English, Indian English, French ,Chinese, Japanese, Korean are supported
"EN_NEWEST""EN_NEWEST""EN""ES""FR""ZH""JP""KR""EN_US""EN_BR""EN_INDIA"+1 moreResponse Type
Returns: Audio
Common Error Codes
The API returns standard HTTP status codes. Detailed error messages are provided in the response body.
Bad Request
Invalid parameters or request format
Unauthorized
Missing or invalid API key
Forbidden
Insufficient permissions
Not Found
Model or endpoint not found
Insufficient Credits
Not enough credits to process request
Rate Limited
Too many requests
Server Error
Internal server error
Bad Gateway
Service temporarily unavailable
Timeout
Request timed out