Skip to main content

transcribe

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

インストールへ移動

ソース情報

リポジトリ
junghan0611/agent-config
ソースの最終更新活動
2026年8月20日 06:37
検出された SKILL.md の言語
英語
スター
5
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
3 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
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.
GitHubで見る