Using ffmpeg command line to achieve an mcp server, can be very convenient, through the dialogue to achieve the local video search, tailoring, stitching, playback and other functions The server implements the following tools: - findvideopath The parameters are directory and file name, file name can be complete, or is not suffixed, recursive search in the directory, return the full path - getvideoi
Add this skill
npx mdskills install video-creator/ffmpeg-mcpComprehensive video processing toolkit with 8 FFmpeg-based tools, but platform-limited
1# FFmpeg-MCP2Using ffmpeg command line to achieve an mcp server, can be very convenient, through the dialogue to achieve the local video search, tailoring, stitching, playback and other functions34<a href="https://glama.ai/mcp/servers/@video-creator/ffmpeg-mcp">5 <img width="380" height="200" src="https://glama.ai/mcp/servers/@video-creator/ffmpeg-mcp/badge" alt="FFmpeg-Server MCP server" />6</a>78## Support Tools9The server implements the following tools: <br/>10- `find_video_path`11 The parameters are directory and file name, file name can be complete, or is not suffixed, recursive search in the directory, return the full path12- `get_video_info`13 The parameters are video path, return the video info, linkes duration/fps/codec/width/height.14- `clip_video`15 The parameter is the file path, start time, end time or duration, and returns the trimmed file path16- `concat_videos`17 The parameters are the list of files, the output path, and if the video elements in the list of files, such as width, height, frame rate, etc., are consistent, quick mode synthesis is automatically used18- `play_video`19 Play video/audio with ffplay, support many format, like mov/mp4/avi/mkv/3gp, video_path: video path speed: play rate loop: play count20- `overlay_video`21 Two video overlay. <br/>22 background_video: backgroud video path <br/>23 overlay_video: front video path <br/>24 output_path: output video path<br/>25 position: relative location<br/>26 dx: x offset<br/>27 dy: y offset<br/>28- `scale_video`29 Video scale. <br/>30 video_path: in video path <br/>31 width: out video width, -2 keep aspect <br/>32 height: out video height, -2 keep aspect <br/>33 output_path: output video path <br/>34- `extract_frames_from_video`35 Extract images from a video.<br/>36 Parameters: <br/>37 video_path (str): The path to the video.<br/>38 fps (int): Extract one frame every specified number of seconds. If set to 0, extract all frames; if set to 1, extract one frame per second.<br/>39 output_folder (str): The directory where the images will be saved.<br/>40 format (int): The format of the extracted images; 0: PNG, 1: JPG, 2: WEBP.<br/>41 total_frames (int): The maximum number of frames to extract. If set to 0, there is no limit<br/>42<br/>43More features are coming4445## Installation procedure461. Download project47```48git clone https://github.com/video-creator/ffmpeg-mcp.git49cd ffmpeg-mcp50uv sync51```52532. Configuration in Cline54```55{56 "mcpServers": {57 "ffmpeg-mcp": {58 "autoApprove": [],59 "disabled": false,60 "timeout": 60,61 "command": "uv",62 "args": [63 "--directory",64 "/Users/xxx/Downloads/ffmpeg-mcp",65 "run",66 "ffmpeg-mcp"67 ],68 "transportType": "stdio"69 }70 }71}72```73Note: the value:`/Users/XXX/Downloads/ffmpeg` in args need to replace the actual download ffmpeg-mcp directory7475## Supported platforms76Currently, only macos platforms are supported, including ARM64 or x86_64
Full transparency — inspect the skill content before installing.