get_video_transcript
Extract transcript or captions from a YouTube video by providing the video ID and preferred language. Use this tool for accessing text content directly from videos.
Instructions
Get transcript/captions for a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ko | |
video_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "ko",
"title": "Language"
},
"video_id": {
"title": "Video Id",
"type": "string"
}
},
"required": [
"video_id"
],
"title": "get_video_transcriptArguments",
"type": "object"
}