get_video_info
Extract detailed video metadata including duration, frame rate, and codec from a specified file path using the FFmpeg-MCP server’s processing capabilities.
Instructions
获取视频信息,包括时长,帧率,codec等
参数:
video_path (str): 输入视频文件路径
返回:
视频详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
video_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"video_path": {
"title": "Video Path",
"type": "string"
}
},
"required": [
"video_path"
],
"title": "get_video_infoArguments",
"type": "object"
}