generate_video_chapters
Create structured video chapters with timestamps and descriptions for YouTube videos using AI analysis to organize content and improve navigation.
Instructions
Generate AI-powered video chapters with timestamps and descriptions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeDescriptions | No | Include detailed chapter descriptions | |
maxChapters | No | Maximum number of chapters to generate | |
minChapterLength | No | Minimum chapter length in seconds | |
videoId | Yes | YouTube video ID to generate chapters for |
Input Schema (JSON Schema)
{
"properties": {
"includeDescriptions": {
"default": true,
"description": "Include detailed chapter descriptions",
"type": "boolean"
},
"maxChapters": {
"default": 10,
"description": "Maximum number of chapters to generate",
"maximum": 20,
"minimum": 3,
"type": "number"
},
"minChapterLength": {
"default": 60,
"description": "Minimum chapter length in seconds",
"maximum": 600,
"minimum": 30,
"type": "number"
},
"videoId": {
"description": "YouTube video ID to generate chapters for",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}