speech_to_speech
Convert audio files from one voice to another using ElevenLabs voice transformation technology. Provide an input audio file and specify the target voice to generate new audio output.
Instructions
Transform audio from one voice to another using provided audio files.
⚠️ 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 |
---|---|---|---|
input_file_path | Yes | ||
output_directory | No | ||
voice_name | No | Adam |
Input Schema (JSON Schema)
{
"properties": {
"input_file_path": {
"title": "Input File Path",
"type": "string"
},
"output_directory": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Directory"
},
"voice_name": {
"default": "Adam",
"title": "Voice Name",
"type": "string"
}
},
"required": [
"input_file_path"
],
"type": "object"
}