get_dubbing_info
Check the status and progress of video dubbing tasks by providing the task ID to monitor processing stages and completion status.
Instructions
[AllVoiceLab Tool] Retrieve status and details of a video dubbing task.
This tool queries the current status of a previously submitted dubbing task and returns detailed information
about its progress, including the current processing stage and completion status.
Args:
dubbing_id: The unique identifier of the dubbing task to check. This ID is returned from the video_dubbing or video_translation_dubbing tool. Required.
Returns:
TextContent containing the status (e.g., "pending", "processing", "success", "failed") and other details of the dubbing task.
Limitations:
- The dubbing_id must be valid and properly formatted
- The task must have been previously submitted to the AllVoiceLab API
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dubbing_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dubbing_id": {
"title": "Dubbing Id",
"type": "string"
}
},
"required": [
"dubbing_id"
],
"type": "object"
}