validate_video
Check video file compatibility for processing by verifying its validity and supported formats, ensuring smooth extraction of screenshots at specific timestamps.
Instructions
验证视频文件是否有效且支持处理
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| videoPath | Yes | 视频文件路径 |
Input Schema (JSON Schema)
{
"properties": {
"videoPath": {
"description": "视频文件路径",
"type": "string"
}
},
"required": [
"videoPath"
],
"type": "object"
}