parse_srt
Extract structured data from SRT subtitle files to process timing, text content, and subtitle sequences for translation workflows.
Instructions
Parse SRT file content and return structured data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | SRT file content to parse |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "SRT file content to parse",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}