技能详情(站内镜像,无评论)
作者:Alex Knight @AKTheKnight
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 977 · 12 current installs · 14 all-time installs
⭐ 0
安装量(当前) 14
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aktheknight/audio-transcribe
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions match its stated purpose (local transcription with faster-whisper); it does not request credentials or access unrelated resources.
目的
Name/description (local transcription with faster-whisper) align with included script and SKILL.md. The script only loads a WhisperModel and transcribes a provided audio file.
说明范围
Runtime instructions and the script operate only on the provided audio path and model downloads; there are no references to unrelated files, environment variables, or external endpoints in the skill code itself.
安装机制
No install spec in the registry; SKILL.md asks the user to pip install faster-whisper. This is expected but means a third-party package (and its dependencies) will be installed from PyPI and models will be downloaded from the network on first run.
证书
The skill requests no environment variables, credentials, or config paths. The script only uses the command-line audio file argument.
持久
always is false and the skill does not modify agent configuration or request persistent privileges.
综合结论
This skill appears coherent for local transcription. Before installing: (1) be aware pip install faster-whisper will install third-party code from PyPI and may build native dependencies—review that package if you require strict supply-chain controls; (2) model files are downloaded on first use (network bandwidth, disk space, and cache location like ~/.cache may be used); (3) transcription can require significant RAM/CPU/GPU depending on model …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Audio Transcribe」。简介:Auto-transcribe voice messages locally using faster-whisper with selectable Whi…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aktheknight/audio-transcribe/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# Audio Transcription Skill
Auto-transcribe voice messages using faster-whisper (local, no API key needed).
## Requirements
```bash
pip install faster-whisper
```
Models download automatically on first use.
## Usage
### Transcribe a file
```bash
python3 /root/clawd/skills/audio-transcribe/scripts/transcribe.py /path/to/audio.ogg
```
### Change model (edit script)
Edit `transcribe.py` and change:
```python
model = WhisperModel('small', device='cpu', compute_type='int8') # Options: tiny, base, small, medium, large-v3
```
## Models
| Model | Size | VRAM/RAM | Speed | Use Case |
|-------|------|----------|-------|----------|
| tiny | 39 MB | ~1 GB | ⚡⚡⚡ | Quick drafts |
| base | 74 MB | ~1 GB | ⚡⚡ | Basic accuracy |
| **small** | **244 MB** | **~2 GB** | **⚡** | **Recommended** |
| medium | 769 MB | ~5 GB | 🐢 | Better accuracy |
| large-v3 | 1.5 GB | ~10 GB | 🐢🐢 | Best accuracy |
## Integration
Clawdbot auto-transcribes incoming voice messages when this skill is enabled.
## Files
- `scripts/transcribe.py` — Main transcription script
- `SKILL.md` — This file