get_subtitles
Generate subtitle files for YouTube videos in your preferred language and format by simply providing the video URL. Ideal for accessibility and localization projects.
Instructions
Generate subtitle files for a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | srt | |
language | No | en | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "srt",
"title": "Format",
"type": "string"
},
"language": {
"default": "en",
"title": "Language",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "get_subtitlesArguments",
"type": "object"
}