text_to_speech_with_options
Convert text into speech with adjustable speed and selectable voices using a customizable TTS tool. Ideal for generating audio content with personalized settings.
Instructions
Convert text to speech with customizable speed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
speed | No | Speech rate multiplier (0.5 to 2.0) | |
text | Yes | The text to convert to speech | |
voice | No | The voice to use for speech synthesis (e.g. 'af_bella'). Use list_voices to see available options. |
Input Schema (JSON Schema)
{
"properties": {
"speed": {
"description": "Speech rate multiplier (0.5 to 2.0)",
"maximum": 2,
"minimum": 0.5,
"type": "number"
},
"text": {
"description": "The text to convert to speech",
"maxLength": 1000,
"minLength": 1,
"type": "string"
},
"voice": {
"description": "The voice to use for speech synthesis (e.g. 'af_bella'). Use list_voices to see available options.",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}