getVideoInfo
Extract detailed metadata from video files, including resolution, duration, and format, to streamline video analysis and processing workflows.
Instructions
获取视频文件的详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 视频文件路径 |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "视频文件路径",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}