get_transcript
Extract YouTube video transcripts by providing a URL or video ID with optional language support. Ideal for accessing and analyzing video content in specific languages.
Instructions
Extract transcript from a YouTube video URL or ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | Yes | Language code for transcript (e.g., 'ko', 'en') | en |
url | Yes | YouTube video URL or ID |
Input Schema (JSON Schema)
{
"properties": {
"lang": {
"default": "en",
"description": "Language code for transcript (e.g., 'ko', 'en')",
"type": "string"
},
"url": {
"description": "YouTube video URL or ID",
"type": "string"
}
},
"required": [
"url",
"lang"
],
"type": "object"
}