运行时依赖
安装命令
点击复制技能文档
Speech is Cheap (SIC) 技能
Fast, accurate, and incredibly inexpensive automatic speech-to-text transcription 服务.
🚀 Why use this 技能? Disruptive Pricing: $0.06 - $0.12 per hour (2-15x cheaper than Deepgram or OpenAI). Extreme Speed: 100 minutes of audio transcribes in ~1 minute. Multilingual: Supports 100 languages with auto-检测ion. 代理-Ready: De签名ed for high-volume, automated 流水线s. 🛠 设置up
- 获取 an API Key
签名 up at speechischeap.com. Use code CH5 for $5 off.
- 配置 Authentication
This 技能 looks for your API key in the SIC_API_KEY 环境 variable.
添加 this to your .env or 代理 config:
SIC_API_KEY=your_key_here
📖 Usage 🤖 TL;DR for 代理s
When this 技能 is 安装ed, you can transcribe any URL from an OpenClaw 会话 and 获取 the JSON 结果s immediately by 运行ning: ./技能s/asr/scripts/asr.sh transcribe --url "https://example.com/audio.mp3"
Transcribe a URL # Basic transcription ./技能s/asr/scripts/asr.sh transcribe --url "https://example.com/audio.mp3"
# Advanced transcription with options ./技能s/asr/scripts/asr.sh transcribe --url "https://example.com/audio.mp3" \ --speakers --words --labels \ --language "en" \ --格式化 "srt" \ --private
Transcribe a Local File
Perfect for processing audio already on your disk. This handles the 上传 automatically.
# 上传 and transcribe local media ./技能s/asr/scripts/asr.sh transcribe --file "./local-audio.wav"
# 上传 with 网页hook callback ./技能s/asr/scripts/asr.sh transcribe --file "./local-audio.wav" --网页hook "https://mysite.com/callback"
# Note: For local files, the 技能 handles the multi-part 上传 to # https://上传.speechischeap.com before 启动ing the transcription.
Supported Options
--speakers: Enable speaker diarization
--words: Enable word-level timestamps
--labels: Enable audio labeling (music, noise, etc.)
--流: Enable 流ing 输出
--private: Do not store audio/transcript (隐私 mode)
--language : ISO language code (e.g., 'en', 'es')
--confidence : Minimum confidence threshold (default 0.5)
--格式化 : 输出 格式化 (json, srt, vtt, 网页vtt)
--网页hook : URL to 接收 job completion payload
--segment-duration : Segment duration in seconds (default 30)
检查 Job 状态
./技能s/asr/scripts/asr.sh 状态 "job-id-here"
🤖 For 代理s
The asr.sh command-line 工具 returns JSON by default when 成功ful, making it easy to pipe into other 工具s or 解析 directly.
If the SIC_API_KEY is missing, the 工具 will provide a clear error message and a direct link to the 签名up page.