Install
openclaw skills install asrFast, affordable automatic speech-to-text transcription supporting 100 languages, speaker diarization, word timestamps, and customizable output formats.
openclaw skills install asrFast, accurate, and incredibly inexpensive automatic speech-to-text transcription service.
Sign up at speechischeap.com. Use code CH5 for $5 off.
This skill looks for your API key in the SIC_API_KEY environment variable.
Add this to your .env or agent config:
SIC_API_KEY=your_key_here
When this skill is installed, you can transcribe any URL from an OpenClaw session and get the JSON results immediately by running:
./skills/asr/scripts/asr.sh transcribe --url "https://example.com/audio.mp3"
# Basic transcription
./skills/asr/scripts/asr.sh transcribe --url "https://example.com/audio.mp3"
# Advanced transcription with options
./skills/asr/scripts/asr.sh transcribe --url "https://example.com/audio.mp3" \
--speakers --words --labels \
--language "en" \
--format "srt" \
--private
Perfect for processing audio already on your disk. This handles the upload automatically.
# Upload and transcribe local media
./skills/asr/scripts/asr.sh transcribe --file "./local-audio.wav"
# Upload with webhook callback
./skills/asr/scripts/asr.sh transcribe --file "./local-audio.wav" --webhook "https://mysite.com/callback"
# Note: For local files, the skill handles the multi-part upload to
# https://upload.speechischeap.com before starting the transcription.
--speakers: Enable speaker diarization--words: Enable word-level timestamps--labels: Enable audio labeling (music, noise, etc.)--stream: Enable streaming output--private: Do not store audio/transcript (privacy mode)--language <code>: ISO language code (e.g., 'en', 'es')--confidence <float>: Minimum confidence threshold (default 0.5)--format <fmt>: Output format (json, srt, vtt, webvtt)--webhook <url>: URL to receive job completion payload--segment-duration <n>: Segment duration in seconds (default 30)./skills/asr/scripts/asr.sh status "job-id-here"
The asr.sh command-line tool returns JSON by default when successful, making it easy to pipe into other tools or parse directly.
If the SIC_API_KEY is missing, the tool will provide a clear error message and a direct link to the signup page.