extract-audio
Extract structured data from audio files using a custom prompt. Input audio via URL or base64, specify extraction criteria, and optionally return results in JSON format.
Instructions
Extract structured data from audio files based on a prompt.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
audio | Yes | URL or base64-encoded audio | |
inputMethod | Yes | Input method | |
jsonMode | No | Return in JSON format | |
prompt | Yes | Extraction prompt |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"audio": {
"description": "URL or base64-encoded audio",
"type": "string"
},
"inputMethod": {
"description": "Input method",
"enum": [
"url",
"base64"
],
"type": "string"
},
"jsonMode": {
"description": "Return in JSON format",
"type": "boolean"
},
"prompt": {
"description": "Extraction prompt",
"type": "string"
}
},
"required": [
"inputMethod",
"audio",
"prompt"
],
"type": "object"
}