get_caption_content
Extract video caption text or download subtitles for reading transcripts, analyzing content, and creating accessible media. Requires a specific caption ID from list_caption_assets.
Instructions
Get actual CAPTION TEXT or download captions file. USE WHEN: Reading video transcript, downloading subtitles, analyzing spoken content, creating accessible content. RETURNS: Full caption text and download URL. EXAMPLE: 'Get English subtitles for video', 'Read transcript to find mentions of topic'. Use after list_caption_assets to get specific caption ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caption_asset_id | Yes | Caption ID from list_caption_assets (format: '1_xyz789') |
Input Schema (JSON Schema)
{
"properties": {
"caption_asset_id": {
"description": "Caption ID from list_caption_assets (format: '1_xyz789')",
"type": "string"
}
},
"required": [
"caption_asset_id"
],
"type": "object"
}