download_dubbing_audio
Download completed dubbing project audio files using the project ID. Retrieve processed audio from finished video dubbing or translation projects to your specified directory.
Instructions
[AllVoiceLab Tool] Download the audio file from a completed dubbing project.
This tool retrieves and downloads the processed audio file from a previously completed dubbing project.
It requires a valid dubbing ID that was returned from a successful video_dubbing or video_translation_dubbing operation.
Args:
dubbing_id: The unique identifier of the dubbing project to download. Required.
output_dir: Output directory for the downloaded audio file. Default is user's desktop.
Returns:
TextContent containing file path to the downloaded audio file.
Limitations:
- The dubbing project must exist and be in a completed state
- The dubbing_id must be valid and properly formatted
- Output directory must be accessible with write permissions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dubbing_id | Yes | ||
| output_dir | No |
Input Schema (JSON Schema)
{
"properties": {
"dubbing_id": {
"title": "Dubbing Id",
"type": "string"
},
"output_dir": {
"default": null,
"title": "Output Dir",
"type": "string"
}
},
"required": [
"dubbing_id"
],
"type": "object"
}