Skip to main content

transcribe

Speech-to-text transcription using Groq Whisper API. Supports m4a, mp3, wav, ogg, flac, webm.

Zur Installation springen

Quellinformationen

Repository
junghan0611/agent-config
Letzte Quellaktivität
20. August 2026 um 06:37
Erkannte Sprache von SKILL.md
Englisch
Sterne
5
Forks
0

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

Datei-Explorer
3 Dateien

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
transcribe
description
Speech-to-text transcription using Groq Whisper API. Supports m4a, mp3, wav, ogg, flac, webm.
# Transcribe Speech-to-text using Groq Whisper API. ## Setup The script needs `GROQ_API_KEY` environment variable. Check if already set: ```bash echo $GROQ_API_KEY ``` If not set, guide the user through setup: 1. Ask if they have a Groq API key 2. If not, have them sign up at https://console.groq.com/ and create an API key 3. Have them add to their shell profile (~/.zshrc or ~/.bashrc): ```bash export GROQ_API_KEY="<their-api-key>" ``` 4. Then run `source ~/.zshrc` (or restart terminal) ## Usage ```bash {baseDir}/transcribe.sh <audio-file> ``` ## Supported Formats - m4a, mp3, wav, ogg, flac, webm - Max file size: 25MB ## Output Returns plain text transcription with punctuation and proper capitalization to stdout.
Auf GitHub ansehen