trim_video
Trim videos to specific start and end times or durations using FFmpeg on the MCP FFmpeg Helper server. Specify input and output paths for precise video editing.
Instructions
Trim a video to a specific duration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Duration (format: HH:MM:SS.mmm or seconds) | |
endTime | No | End time (format: HH:MM:SS.mmm or seconds) | |
inputPath | Yes | Path to the input video file | |
outputPath | Yes | Path for the output video file | |
startTime | No | Start time (format: HH:MM:SS.mmm or seconds) |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Duration (format: HH:MM:SS.mmm or seconds)",
"type": "string"
},
"endTime": {
"description": "End time (format: HH:MM:SS.mmm or seconds)",
"type": "string"
},
"inputPath": {
"description": "Path to the input video file",
"type": "string"
},
"outputPath": {
"description": "Path for the output video file",
"type": "string"
},
"startTime": {
"description": "Start time (format: HH:MM:SS.mmm or seconds)",
"type": "string"
}
},
"required": [
"inputPath",
"outputPath"
],
"type": "object"
}