typescript/skills/openai-whisper-api/SKILL.md
Transcribe audio using OpenAI's Whisper API (cloud-based, no local model needed).
npx skillsauth add kody-w/openrappter openai-whisper-apiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Cloud-based audio transcription via OpenAI's API.
curl -s "https://api.openai.com/v1/audio/transcriptions" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-F file="@audio.mp3" \
-F model="whisper-1" | jq '.text'
curl -s "https://api.openai.com/v1/audio/transcriptions" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-F file="@audio.mp3" \
-F model="whisper-1" \
-F response_format="verbose_json" \
-F timestamp_granularities[]="segment" | jq '.segments[] | {start, end, text}'
curl -s "https://api.openai.com/v1/audio/translations" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-F file="@foreign-audio.mp3" \
-F model="whisper-1" | jq '.text'
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.