speed_up
Increase video playback speed with configurable FPS and speed factor using FFmpeg MCP Server. Specify input/output files and adjust parameters for precise control.
Instructions
Speed up a video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_file | Yes | Path to input file | |
max_fps | No | Max FPS for the output file | |
output_file | No | Path to output file, output to the same directory if not specified | |
speed_factor | No | Speed factor for the output file, default to 2x sped up |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input_file": {
"description": "Path to input file",
"type": "string"
},
"max_fps": {
"default": 30,
"description": "Max FPS for the output file",
"maximum": 60,
"minimum": 1,
"type": "number"
},
"output_file": {
"description": "Path to output file, output to the same directory if not specified",
"type": "string"
},
"speed_factor": {
"default": 2,
"description": "Speed factor for the output file, default to 2x sped up",
"maximum": 10,
"minimum": 0.1,
"type": "number"
}
},
"required": [
"input_file"
],
"type": "object"
}