isolate_audio
Extract and save isolated audio from any file using ElevenLabs API. Specify input file path and optional output directory to separate audio content.
Instructions
Isolate audio from a file and save the output audio file to a given directory. Directory is optional, if not provided, the output file will be saved to $HOME/Desktop.
⚠️ 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 |
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"
}
},
"required": [
"input_file_path"
],
"type": "object"
}