omniedgeio
/
xtts-v2
- Public
- 116 runs
Run omniedgeio/xtts-v2 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
text |
string
|
Hi there, I'm your new voice clone. Try your best to upload quality audio
|
Text to synthesize
|
speaker |
string
|
Original speaker audio (wav, mp3, m4a, ogg, or flv)
|
|
language |
string
(enum)
|
en
Options: en, es, fr, de, it, pt, pl, tr, ru, nl, cs, ar, zh, hu, ko, hi |
Output language for the synthesised speech
|
cleanup_voice |
boolean
|
False
|
Whether to apply denoising to the speaker audio (microphone recordings)
|
{
"type": "object",
"title": "Input",
"required": [
"speaker"
],
"properties": {
"text": {
"type": "string",
"title": "Text",
"default": "Hi there, I'm your new voice clone. Try your best to upload quality audio",
"x-order": 0,
"description": "Text to synthesize"
},
"speaker": {
"type": "string",
"title": "Speaker",
"format": "uri",
"x-order": 1,
"description": "Original speaker audio (wav, mp3, m4a, ogg, or flv)"
},
"language": {
"enum": [
"en",
"es",
"fr",
"de",
"it",
"pt",
"pl",
"tr",
"ru",
"nl",
"cs",
"ar",
"zh",
"hu",
"ko",
"hi"
],
"type": "string",
"title": "language",
"description": "Output language for the synthesised speech",
"default": "en",
"x-order": 2
},
"cleanup_voice": {
"type": "boolean",
"title": "Cleanup Voice",
"default": false,
"x-order": 3,
"description": "Whether to apply denoising to the speaker audio (microphone recordings)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}