get_removal_info
Check the status and retrieve details for subtitle removal tasks, including processing progress and result URLs when complete.
Instructions
[AllVoiceLab Tool] Retrieve status and details of a subtitle removal task.
This tool queries the current status of a previously submitted subtitle removal task and returns detailed information
about its progress, including the current processing stage, completion status, and result URL if available.
Args:
project_id: The unique identifier of the subtitle removal task to check. This ID is returned from the remove_subtitle tool. Required.
Returns:
TextContent containing the status (e.g., "pending", "processing", "success", "failed") and other details of the subtitle removal task,
including the URL to the processed video if the task has completed successfully.
Limitations:
- The project_id must be valid and properly formatted
- The task must have been previously submitted to the AllVoiceLab API
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}