youtube
YOUTUBE_UPLOAD_VIDEO
Uploads a video from a local file path to a YouTube channel; the video file must be in a YouTube-supported format.
Remote youtube
Other tools also called YOUTUBE_UPLOAD_VIDEO?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"properties": {}
},
"title": "Tags",
"examples": [
"['educational', 'python', 'coding tutorial']"
],
"description": "List of keyword tags (strings) for the video, used to improve discoverability."
},
"title": {
"type": "string",
"title": "Title",
"examples": [
"My Awesome Video Adventure"
],
"description": "The title for the video."
},
"categoryId": {
"type": "string",
"title": "Category Id",
"examples": [
"22"
],
"description": "YouTube category ID (e.g., '22' for People & Blogs). See YouTube Data API docs for a full list of category IDs."
},
"description": {
"type": "string",
"title": "Description",
"examples": [
"A detailed walkthrough of my latest project, showcasing all its features."
],
"description": "Detailed description of the video content, optionally including keywords and context."
},
"privacyStatus": {
"type": "string",
"title": "Privacy Status",
"examples": [
"public"
],
"description": "Privacy status: 'public', 'private' (uploader/specified users only), or 'unlisted' (link accessible, not publicly listed)."
},
"videoFilePath": {
"type": "string",
"title": "FileUploadable",
"format": "path",
"description": "Video file to upload. Provide a FileUploadable object with valid s3key, mimetype, and name.",
"file_uploadable": true
}
}
}