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 查看