Install
openclaw skills install deepgramCommand-line tool for fast, accurate speech-to-text transcription from local files, URLs, or live audio using Deepgram’s API with customizable options.
openclaw skills install deepgram@deepgram/cli — command-line interface for Deepgram speech-to-text.
npm install -g @deepgram/cli
deepgram login
Uses your Deepgram API key (stored locally).
deepgram listen prerecorded audio.wav
deepgram listen prerecorded audio.wav \
--model nova-2 \
--language en \
--punctuate \
--diarize
deepgram listen prerecorded https://example.com/audio.mp3
cat audio.wav | deepgram listen prerecorded -
deepgram listen microphone
Stop with Ctrl+C. Congrats, you just dictated reality.
deepgram listen prerecorded audio.wav > transcript.json
deepgram listen prerecorded audio.wav --format text
--model – nova-2, general, etc.--language – en, tr, de, …--punctuate – adds punctuation--diarize – speaker separation--format – json, text, srt, vttdeepgram listenDeepgram CLI: because keyboards are overrated.