async_voice_clone_local
Clone a voice from a local audio file using Mobvoi TTS service and generate a speaker ID for text-to-speech applications. Ensure user consent due to potential API costs.
Instructions
Async version of voice_clone. Clone a voice from a given local audio file. This tool will return a speaker id which can be used in text_to_speech tool.
⚠️ COST WARNING: This tool makes an API call to Mobvoi TTS service which may incur costs. Only use when explicitly requested by the user.
Args:
audio_file_path (str): The path of the audio file to clone.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
audio_file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"audio_file_path": {
"title": "Audio File Path",
"type": "string"
}
},
"required": [
"audio_file_path"
],
"title": "async_voice_clone_localArguments",
"type": "object"
}