get-video-info
Extract and display detailed information about a video file, such as format, duration, resolution, and codec, using a structured input path for analysis.
Instructions
Get detailed information about a video file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
videoPath | Yes | Path to the video file to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"videoPath": {
"description": "Path to the video file to analyze",
"type": "string"
}
},
"required": [
"videoPath"
],
"type": "object"
}