resize-video
Resize video files to standard resolutions (360p, 480p, 720p, 1080p) using MCP FFmpeg Video Processor. Specify input video path and desired output resolutions for efficient conversion.
Instructions
Resize a video to one or more standard resolutions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputDir | No | Optional directory to save the output files (defaults to a temporary directory) | |
resolutions | Yes | Resolutions to convert the video to | |
videoPath | Yes | Path to the video file to resize |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputDir": {
"description": "Optional directory to save the output files (defaults to a temporary directory)",
"type": "string"
},
"resolutions": {
"description": "Resolutions to convert the video to",
"items": {
"enum": [
"360p",
"480p",
"720p",
"1080p"
],
"type": "string"
},
"type": "array"
},
"videoPath": {
"description": "Path to the video file to resize",
"type": "string"
}
},
"required": [
"videoPath",
"resolutions"
],
"type": "object"
}