openai-whisper-api

Transcribes audio files via OpenAI's Whisper API using curl commands.

Updated Mar 19, 2026
One-click install
npx skills add https://github.com/jason9693/Open-Jordy --skill openai-whisper-api-jason9693
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: openai-whisper-api
Source: https://github.com/jason9693/Open-Jordy/tree/main/openjordy/skills/openai-whisper-api
Command: npx skills add https://github.com/jason9693/Open-Jordy --skill openai-whisper-api-jason9693

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, and includes scripts (resource) components.

What problem does it solve?

Transcribe audio into text by leveraging the OpenAI Whisper API via a curl-based workflow, enabling quick conversion of speech to searchable text.

Core Features & Use Cases

  • Transcribes audio files using OpenAI’s Whisper API.
  • Supports optional parameters such as model, language, and prompt to tailor results.
  • Use Case: Transcribing meeting recordings or podcasts to generate editable transcripts for documentation and indexing.

Quick Start

Transcribe a given audio file by running the provided script to generate 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 files using the OpenAI Whisper API?

To transcribe audio files using the OpenAI Whisper API, this Skill sends a request to the /v1/audio/transcriptions endpoint via curl, requiring your OPENAI_API_KEY to convert speech to text.

Can I specify the language or model for speech-to-text transcription with curl?

Yes, you can specify the language and model for speech-to-text transcription by passing optional flags in the curl command, allowing you to tailor the transcription results to your audio.

Do I need an OpenAI API key to transcribe meeting recordings?

Yes, you need an OPENAI_API_KEY to transcribe meeting recordings, as the script directly calls the OpenAI Whisper API endpoint to process the audio files and generate editable transcripts.

What is the best way to automate speech-to-text conversion for podcasts?

Automating speech-to-text conversion for podcasts is best handled by running a curl-based script against the Whisper API, which quickly converts spoken audio into searchable text for indexing.

Does the Whisper API transcription support providing a prompt to guide the output?

Yes, the Whisper API transcription supports an optional prompt parameter, enabling you to provide context or specific vocabulary to guide the speech-to-text conversion process via curl.

Why use curl for automated transcription instead of other tools?

Using curl for automated transcription provides a lightweight, scriptable method to directly interact with the OpenAI Whisper API endpoint, ensuring quick conversion of speech to text without heavy dependencies.