analyze_video_content
Analyze YouTube videos to extract key insights including topics, sentiment, questions, summaries, and keywords from video content and comments.
Instructions
Get AI-powered analysis and insights from video content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisType | No | Types of analysis to perform | |
includeComments | No | Include comments in the analysis | |
videoId | Yes | YouTube video ID to analyze |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"default": [
"summary"
],
"description": "Types of analysis to perform",
"items": {
"enum": [
"topics",
"sentiment",
"questions",
"summary",
"keywords"
],
"type": "string"
},
"type": "array"
},
"includeComments": {
"default": false,
"description": "Include comments in the analysis",
"type": "boolean"
},
"videoId": {
"description": "YouTube video ID to analyze",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}