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에서 보기