clone_voice
Create custom voice profiles from audio samples for text-to-speech and speech-to-speech applications. Analyze MP3 or WAV files to generate voice replicas that match the characteristics of your audio input.
Instructions
[AllVoiceLab Tool] Create a custom voice profile by cloning from an audio sample.
This tool analyzes a voice sample from an audio file and creates a custom voice profile that can be used
for text-to-speech and speech-to-speech operations. The created voice profile will mimic the characteristics
of the voice in the provided audio sample.
Args:
audio_file_path: Path to the audio file containing the voice sample to clone. Only MP3 and WAV formats are supported. Maximum file size: 10MB.
name: Name to assign to the cloned voice profile. Required.
description: Optional description for the cloned voice profile.
Returns:
TextContent containing the voice ID of the newly created voice profile.
Limitations:
- Only MP3 and WAV formats are supported
- Maximum file size: 10MB (smaller than other audio tools)
- File must exist and be accessible
- Requires permission to use voice cloning feature
- Audio sample should contain clear speech with minimal background noise for best results
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| audio_file_path | Yes | ||
| name | Yes | ||
| description | No |
Input Schema (JSON Schema)
{
"properties": {
"audio_file_path": {
"title": "Audio File Path",
"type": "string"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"audio_file_path",
"name"
],
"type": "object"
}