speech_recognition
Convert audio files to text transcriptions using AI speech recognition. Process spoken content from audio URLs into readable text format for documentation, analysis, or accessibility purposes.
Instructions
Transcribe audio to text using DeepInfra OpenAI-compatible API (Whisper).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| audio_url | Yes | ||
| model | No |
Input Schema (JSON Schema)
{
"properties": {
"audio_url": {
"title": "Audio Url",
"type": "string"
},
"model": {
"default": null,
"title": "Model",
"type": "string"
}
},
"required": [
"audio_url"
],
"type": "object"
}