get_transcript
Extract captions from YouTube videos by entering the video URL or ID and specifying the desired language for the transcript.
Instructions
YouTubeの字幕をURLまたは動画IDから取得します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | Yes | 字幕の言語コード(例: 'ja', 'en') | en |
url | Yes | YouTube動画のURLまたはID |
Input Schema (JSON Schema)
{
"properties": {
"lang": {
"default": "en",
"description": "字幕の言語コード(例: 'ja', 'en')",
"type": "string"
},
"url": {
"description": "YouTube動画のURLまたはID",
"type": "string"
}
},
"required": [
"url",
"lang"
],
"type": "object"
}