extract-video
Extract structured data from videos using a prompt. Specify a URL or base64-encoded video and retrieve results in JSON format for efficient data processing and analysis.
Instructions
Extract structured data from videos based on a prompt.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputMethod | Yes | Input method | |
jsonMode | No | Return in JSON format | |
prompt | Yes | Extraction prompt | |
video | Yes | URL or base64-encoded video |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputMethod": {
"description": "Input method",
"enum": [
"url",
"base64"
],
"type": "string"
},
"jsonMode": {
"description": "Return in JSON format",
"type": "boolean"
},
"prompt": {
"description": "Extraction prompt",
"type": "string"
},
"video": {
"description": "URL or base64-encoded video",
"type": "string"
}
},
"required": [
"inputMethod",
"video",
"prompt"
],
"type": "object"
}