get_video_info
Retrieve detailed metadata and technical specifications from a video file, including resolution, codec, duration, and bitrate, to analyze or process media content effectively.
Instructions
Get detailed information about a video file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Path to the video file |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the video file",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}