text_to_voice
Generate three voice previews from text using ElevenLabs technology. Saves audio files to a specified directory for voice design and testing purposes.
Instructions
Create voice previews from a text prompt. Creates three previews with slight variations. Saves the previews to a given directory. If no text is provided, the tool will auto-generate text.
Voice preview files are saved as: voice_design_(generated_voice_id)_(timestamp).mp3
Example file name: voice_design_Ya2J5uIa5Pq14DNPsbC1_20250403_164949.mp3
⚠️ COST WARNING: This tool makes an API call to ElevenLabs which may incur costs. Only use when explicitly requested by the user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_directory | No | ||
text | No | ||
voice_description | Yes |
Input Schema (JSON Schema)
{
"properties": {
"output_directory": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Directory"
},
"text": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Text"
},
"voice_description": {
"title": "Voice Description",
"type": "string"
}
},
"required": [
"voice_description"
],
"type": "object"
}