openai-whisper-api

Transcribe audio to text via OpenAI's Whisper API using curl.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/Dolonia333/dolo.ai --skill openai-whisper-api-dolonia333
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: openai-whisper-api
Source: https://github.com/Dolonia333/dolo.ai/tree/main/skills/openai-whisper-api
Command: npx skills add https://github.com/Dolonia333/dolo.ai --skill openai-whisper-api-dolonia333

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Transcribe audio to text by leveraging OpenAI's Whisper API via a simple curl-based workflow, turning speech into searchable transcripts without complex tooling.

Core Features & Use Cases

  • Transcription via /v1/audio/transcriptions
  • Quick local testing with a file path and minimal setup
  • Use case: transcribe meeting recordings, lectures, podcasts, or audio notes into text for analysis and archiving.

Quick Start

Run the transcribe.sh script with your audio file to produce a transcript.

Frequently Asked Questions about openai-whisper-api

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I transcribe audio to text using OpenAI Whisper?

You can transcribe audio to text using OpenAI Whisper by sending a request to the /v1/audio/transcriptions endpoint with your audio file. This Skill provides a curl-based script to automate the process and output searchable transcripts.

Can I use curl to convert meeting recordings and podcasts into transcripts?

Yes, you can use curl to convert meeting recordings and podcasts into transcripts. The Skill calls the Whisper API directly from your terminal, making it suitable for transcribing lectures, podcasts, and voice memos for archival workflows.

Do I need an OPENAI_API_KEY to use the Whisper API for speech-to-text?

Yes, you need an OPENAI_API_KEY to use the Whisper API for speech-to-text. You also need curl installed to run the transcription script and send the audio file to the API endpoint for processing.

What audio transcription output formats does the Whisper API return?

The Whisper API returns audio transcription output in text or json formats. This allows you to choose between plain text for simple reading and json for structured data integration in your content creation or research workflows.

What is the best way to get started with local audio transcription testing?

The best way to get started with local audio transcription testing is to use the provided transcribe.sh script. You run it with a local file path and your OPENAI_API_KEY to quickly produce a transcript without complex tooling setup.