get_translation
Generate translated YouTube video transcripts by specifying the video URL and desired language to access content in multiple languages.
Instructions
Get a translated transcript of a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"title": "Language",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url",
"language"
],
"title": "get_translationArguments",
"type": "object"
}