Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

faster-whisper-local-servicefaster Whisper 本地 service

Agent Skill

faster-whisper-local-service 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

43,794

周安装

1,862

GitHub Stars

公开资料未说明

下载量

15,343
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:faster-whisper-local-service(faster Whisper 本地 service)
来源仓库:https://github.com/neldar/faster-whisper-local-service
安装命令:
openclaw skills install faster-whisper-local-service
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install faster-whisper-local-service

简介

作为 OpenClaw 的本地语音转文本后端服务运行于指定端口。

  • 适用于希望脱离外部 API 依赖实现完全离线的转录方案。
  • 通过 HTTP 协议接收音频文件并返回 JSON 格式识别结果。
  • 服务启动后持续监听 127.0.0.1:18790,仅限本机访问确保安全。
  • 需提前安装 faster-whisper 核心组件及对应语言模型文件。

SKILL.md

name
faster-whisper-local-service
description
Local speech-to-text (STT) transcription service for OpenClaw using faster-whisper. Runs as HTTP microservice on localhost for voice input, microphone transcription, and speech recognition. No recurring API costs — after initial model download, runs fully local. Supports WebChat voice input, Telegram voice messages, and any OpenClaw voice workflow. Keywords: STT, speech to text, voice transcription, local transcription, whisper, faster-whisper, offline, microphone, speech recognition, voice input.

Faster Whisper Local Service

Provision a local STT backend used by voice skills.

What this sets up

  • Python venv for faster-whisper
  • transcribe-server.py HTTP endpoint at http://127.0.0.1:18790/transcribe
  • systemd user service: openclaw-transcribe.service

Important: Model download on first run

On first startup, faster-whisper downloads model weights from Hugging Face (~1.5 GB for medium). This requires internet access and disk space. After the initial download, models are cached locally and the service runs fully offline.

ModelDownload sizeRAM usage
tiny~75 MB~400 MB
base~150 MB~500 MB
small~500 MB~800 MB
medium~1.5 GB~1.4 GB
large-v3~3.0 GB~3.5 GB

To pre-download models in an air-gapped environment, see faster-whisper docs.

Security notes

Network isolation

  • Binds to 127.0.0.1 only — not reachable from the network.
  • CORS restricted to a single origin (https://127.0.0.1:8443 by default).
  • No credentials, API keys, or secrets are used or stored.

Input validation

  • Upload size limit: Requests exceeding the configured limit are rejected before processing (HTTP 413). Default: 50 MB, configurable via MAX_UPLOAD_MB.
  • Magic-byte check: Only files with recognized audio signatures (WAV, OGG, FLAC, MP3, WebM, M4A) are accepted. Unrecognized formats are rejected (HTTP 415) before reaching GStreamer.
  • Subprocess safety: All arguments to gst-launch-1.0 are passed as a list — no shell expansion or injection is possible.

GStreamer dependency

The service uses GStreamer's decodebin for audio format conversion. Like any media library, GStreamer's parsers process binary data and should be kept up to date. Mitigation: install gst-launch-1.0 from your OS vendor's trusted packages and apply security updates regularly. The magic-byte pre-filter above reduces the attack surface by rejecting non-audio payloads before they reach GStreamer.

No data exfiltration

  • No outbound network calls (after initial model download).
  • No telemetry, analytics, or phone-home behavior.
  • Temporary files are created in a per-request TemporaryDirectory and cleaned up immediately.

Reproducibility defaults

  • Pinned package: faster-whisper==1.1.1 (override via env)
  • Explicit dependency check for gst-launch-1.0
  • CORS restricted to one origin by default
  • Configurable workspace/service paths (no hardcoded user path)

Deploy

bash scripts/deploy.sh

With custom settings:

WORKSPACE=~/.openclaw/workspace \
TRANSCRIBE_PORT=18790 \
WHISPER_MODEL_SIZE=medium \
WHISPER_LANGUAGE=auto \
TRANSCRIBE_ALLOWED_ORIGIN=https://10.0.0.42:8443 \
bash scripts/deploy.sh

Language setting

Default: auto (auto-detect language). Set WHISPER_LANGUAGE=de for German-only, en for English-only, etc. Fixed language is faster and more accurate if you only use one language.

Idempotent: safe to run repeatedly.

What this skill modifies

WhatPathAction
Python venv$WORKSPACE/.venv-faster-whisper/Creates venv, installs faster-whisper via pip
Transcribe server$WORKSPACE/voice-input/transcribe-server.pyWrites server script
Systemd service~/.config/systemd/user/openclaw-transcribe.serviceCreates + enables persistent service
Model cache~/.cache/huggingface/Downloads model weights on first run

Uninstall

systemctl --user stop openclaw-transcribe.service
systemctl --user disable openclaw-transcribe.service
rm -f ~/.config/systemd/user/openclaw-transcribe.service
systemctl --user daemon-reload

Optional full cleanup:

rm -rf ~/.openclaw/workspace/.venv-faster-whisper
rm -f ~/.openclaw/workspace/voice-input/transcribe-server.py

Verify

bash scripts/status.sh

Expected:

  • service active
  • endpoint responds (HTTP 200/500 acceptable for invalid sample payload)

Notes

  • This skill provides backend transcription only.
  • Pair with webchat-voice-proxy for browser mic + HTTPS/WSS integration.
  • For one-step install, use webchat-voice-full-stack (deploys backend + proxy in order).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.28%
按下载量换算11,243

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills