convert_video
Convert video files to different formats using FFmpeg capabilities. Specify input and output paths, with optional FFmpeg settings for customized conversions.
Instructions
Convert a video file to a different format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input video file | |
options | No | Additional FFmpeg options (optional) | |
outputPath | Yes | Path for the output video file |
Input Schema (JSON Schema)
{
"properties": {
"inputPath": {
"description": "Path to the input video file",
"type": "string"
},
"options": {
"description": "Additional FFmpeg options (optional)",
"type": "string"
},
"outputPath": {
"description": "Path for the output video file",
"type": "string"
}
},
"required": [
"inputPath",
"outputPath"
],
"type": "object"
}