get_video_info
Extract detailed video metadata, including duration, resolution, and frame rate, to analyze or process video files efficiently. Supports various formats for accurate insights.
Instructions
获取视频文件的详细信息,包括时长、分辨率、帧率等
Input Schema
Name | Required | Description | Default |
---|---|---|---|
videoPath | Yes | 视频文件路径 |
Input Schema (JSON Schema)
{
"properties": {
"videoPath": {
"description": "视频文件路径",
"type": "string"
}
},
"required": [
"videoPath"
],
"type": "object"
}