轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
wyoming-assist-microphone

dustynv/wyoming-assist-microphone

dustynv

用于NVIDIA Jetson设备的Home Assistant附加组件,通过wyoming协议实现远程语音卫星功能,集成唤醒词检测、语音转文本(STT)和文本转语音(TTS),适用于智能家居语音控制。

下载次数: 0状态:社区镜像维护者:dustynv仓库类型:镜像最近更新:2 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

中文简介
下载命令
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。
点击查看

assist-microphone

容器 镜像 运行 构建

https://www.home-assistant.io/ 附加组件,使用 https://github.com/rhasspy/wyoming-satellite 在 NVIDIA Jetson 设备上通过 https://www.home-assistant.io/integrations/wyoming/ 实现远程语音https://www.home-assistant.io/integrations/wyoming#satellites%E5%8A%9F%E8%83%BD%E3%80%82%E6%84%9F%E8%B0%A2 https://github.com/ms1design 贡献这些 Home Assistant 和 Wyoming 容器!

核心功能

  • 与 Jetson设备 上的 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/homeassistant-core 容器以及不同主机上的 Home Assistant 兼容
  • 使用 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/openwakeword 容器进行唤醒词检测
  • 使用 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/wyoming-*** 容器处理语音转文本(STT)
  • 使用 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/piper 容器处理文本转语音(TTS)

要求 Home Assistant 2023.9 或更高版本。

docker-compose 示例

若要在启用 cuda 的 Jetson 设备上使用 docker compose 运行 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/homeassistant-core/ https://www.home-assistant.io/voice_control/%EF%BC%8C%E5%8F%AF%E5%8F%82%E8%80%83%E5%AE%8C%E6%95%B4%E7%A4%BA%E4%BE%8B https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/docker-compose.yaml%E3%80%82

yaml
name: home-assistant-jetson
version: "3.9"
services:
  homeassistant:
    image: docker.xuanyuan.run/dustynv/homeassistant-core:latest-r36.2.0
    restart: unless-stopped
    init: false
    privileged: true
    network_mode: host
    container_name: homeassistant
    hostname: homeassistant
    ports:
      - "8123:8123"
    volumes:
      - ha-config:/config
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro

  assist-microphone:
    image: docker.xuanyuan.run/dustynv/wyoming-assist-microphone:latest-r36.2.0
    restart: unless-stopped
    network_mode: host
    container_name: assist-microphone
    hostname: assist-microphone
    runtime: nvidia
    init: false
    ports:
      - "10700:10700/tcp"
    devices:
      - /dev/snd:/dev/snd
      - /dev/bus/usb
    volumes:
      - ha-assist-microphone:/share
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      SATELLITE_AUDIO_DEVICE: "plughw:CARD=S330,DEV=0"
      SATELLITE_SND_VOLUME_MULTIPLIER: 0.3
      WAKEWORD_NAME: "ok_nabu"
      ASSIST_PIPELINE_NAME: "Home Assistant"

volumes:
  ha-config:
  ha-assist-microphone:

环境变量

变量类型默认值描述
SATELLITE_NAMEstrassist microphone卫星名称
SATELLITE_AUDIO_DEVICEstrplughw:CARD=S330,DEV=0选择的音频设备,详见下文
SATELLITE_PORTstr10700卫星服务端口
SATELLITE_SOUND_ENABLEDbooltrue启用或禁用连接的扬声器
SATELLITE_AWAKE_WAVstr/usr/src/sounds/awake.wav检测到唤醒词时播放的WAV文件
SATELLITE_DONE_WAVstr/usr/src/sounds/done.wav语音命令完成时播放的WAV文件
ASSIST_PIPELINE_NAMEstrHome Assistant要运行的Home Assistant语音助手管道名称
WAKEWORD_SERVICE_URIstrtcp://127.0.0.1:10400Wyoming唤醒词检测服务的URI
WAKEWORD_NAMEstrok_nabu要监听的唤醒词名称
SATELLITE_SND_VOLUME_MULTIPLIERfloat1.0扬声器音量乘数
SATELLITE_MIC_VOLUME_MULTIPLIERfloat1.0麦克风音量乘数
SATELLITE_MIC_AUTO_GAINint0麦克风自动增益
SATELLITE_MIC_NOISE_SUPPRESSIONint0麦克风噪声抑制(0-4)
SATELLITE_DEBUGbooltrue记录DEBUG级别的日志

配置

有关 wyoming-assist-microphone 的详细配置方法,请参考 https://www.home-assistant.io/voice_control/voice_remote_local_assistant#installing-a-local-assist-pipeline%E3%80%82

确定音频设备

选择正确的麦克风/扬声器设备对卫星功能至关重要。

列出可用麦克风:

bash
arecord -L

列出可用扬声器:

bash
aplay -L

两个命令的输出应类似如下:

bash
plughw:CARD=seeed2micvoicec,DEV=0
    seeed-2mic-voicecard, bcm2835-i2s-wm8960-hifi wm8960-hifi-0
    Hardware device with all software conversions

建议选择以 plughw: 开头的设备,或在不确定时使用 default。推荐选择标注有“Hardware device with all software conversions”的麦克风和扬声器。将环境变量 SATELLITE_AUDIO_DEVICE 设置为:

bash
plughw:CARD=seeed2micvoicec,DEV=0

wyoming-assist-microphone 使用同一设备作为麦克风和扬声器。

待办事项

  • 研究当通过 ASSIST_PIPELINE_NAME 指定对话管道名称时,用户是否应在Home Assistant Assist聊天弹窗中看到语音命令和响应的转录文本。
  • 将 SATELLITE_AUDIO_DEVICE 拆分为 SATELLITE_MIC_DEVICE 和 SATELLITE_SND_DEVICE,以支持选择不同的音频硬件组合。

支持

有问题?您可以通过以下方式获取帮助:

一般 Home Assistant 支持:

  • Home Assistant ***聊天服务器
  • Home Assistant https://community.home-assistant.io/
  • 加入Reddit子版块 /r/homeassistant
  • 如发现Home Assistant bug,请在https://github.com/home-assistant/addons/issues

NVIDIA Jetson 基于Home Assistant的支持:

  • NVIDIA Jetson AI Lab https://www.jetson-ai-lab.com/tutorial-intro.html
  • Jetson AI Lab - Home Assistant集成 https://forums.developer.nvidia.com/t/jetson-ai-lab-home-assistant-integration/288225
  • 如发现jetson-containers bug,请在https://github.com/dusty-nv/jetson-containers/issues

[!NOTE] 本项目由 https://www.jetson-ai-lab.com/research.html 创建。

容器信息
wyoming-assist-microphone:latest
   别名wyoming-assist-microphone
   要求L4T ['>=34.1.0']
   依赖https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/build-essential https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/homeassistant-base https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/python
   Dockerfilehttps://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/assist-microphone/Dockerfile
   镜像https://hub.docker.com/r/dustynv/wyoming-assist-microphone/tags (2024-04-30, 5.1GB)
https://hub.docker.com/r/dustynv/wyoming-assist-microphone/tags (2024-04-30, 0.3GB)
   说明使用wyoming协议的assist-microphone,用于Home Assistant。基于https://github.com/home-assistant/addons/tree/master/assist_microphone
运行容器

要启动容器,可以使用 https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md 和 https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag%EF%BC%8C%E6%88%96%E6%89%8B%E5%8A%A8%E6%9E%84%E5%BB%BA https://docs.docker.com/engine/reference/commandline/run/ 命令:

bash
# 自动拉取或构建兼容的容器镜像
jetson-containers run $(autotag assist-microphone)

# 或使用'docker run'(指定镜像和挂载等)
sudo docker run --runtime nvidia -it --rm --network=host assist-microphone:35.2.1

https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md 将参数转发给 https://docs.docker.com/engine/reference/commandline/run/%EF%BC%8C%E5%B9%B6%E6%B7%BB%E5%8A%A0%E4%B8%80%E4%BA%9B%E9%BB%98%E8%AE%A4%E5%80%BC%EF%BC%88%E5%A6%82%60--runtime nvidia、挂载/data`缓存、检测设备)
https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag 查找与您的JetPack/L4T版本兼容的容器镜像——本地镜像、从仓库拉取的镜像或构建的镜像。

要将主机目录挂载到容器中,使用 https://docs.docker.com/engine/reference/commandline/run/#volume 或 https://docs.docker.com/engine/reference/commandline/run/#volume 标志:

bash
jetson-containers run -v /主机路径:/容器路径 $(autotag assist-microphone)

要启动容器运行命令(而非交互式shell):

bash
jetson-containers run $(autotag assist-microphone) my_app --abc xyz

您可以传递任何 https://docs.docker.com/engine/reference/commandline/run/ 支持的选项,它会在执行前打印出完整命令。

构建容器

如果如上所示使用 https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag%EF%BC%8C%E5%BF%85%E8%A6%81%E6%97%B6%E4%BC%9A%E6%8F%90%E7%A4%BA%E6%82%A8%E6%9E%84%E5%BB%BA%E5%AE%B9%E5%99%A8%E3%80%82%E8%A6%81%E6%89%8B%E5%8A%A8%E6%9E%84%E5%BB%BA%EF%BC%8C%E8%AF%B7%E5%85%88%E5%AE%8C%E6%88%90https://github.com/dusty-nv/jetson-containers/tree/master/docs/setup.md%EF%BC%8C%E7%84%B6%E5%90%8E%E8%BF%90%E8%A1%8C%EF%BC%9A

bash
jetson-containers build assist-microphone

上述依赖项将被构建到容器中,并在构建过程中进行测试。运行时添加 https://github.com/dusty-nv/jetson-containers/tree/master/jetson_containers/build.py 可查看构建选项。

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 wyoming-assist-microphone 镜像标签

docker pull docker.xuanyuan.run/dustynv/wyoming-assist-microphone:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull dustynv/wyoming-assist-microphone:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
dustynv/wyoming-assist-microphone
教程轩辕镜像功能与使用教程
定价查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 wyoming-assist-microphone 镜像推荐

paketobuildpacks/java-memory-assistant logo

paketobuildpacks/java-memory-assistant

paketobuildpacks
暂无描述
10万+ 次下载
20 天前更新
docker/labs-assistant-ml logo

docker/labs-assistant-ml

Docker 官方工具与组件镜像
Docker AI工具集镜像,集成主流AI框架、开发工具及运行时环境,简化AI应用容器化流程,支持GPU加速,适用于开发、部署及教学场景。
1 次收藏5.1千+ 次下载
2 年前更新
datastax/astra-assistants logo

datastax/astra-assistants

datastax
OpenAI Assistants API的即插即用替代品,支持开源及第三方模型,兼容最新v2版本(含流式传输),可持久化线程、文件、向量存储等,基于AstraDB实现,支持多种LLM提供商及本地模型。
1万+ 次下载
1 年前更新
grafana/assistant-cli logo

grafana/assistant-cli

Grafana 可观测性平台
CLI for the Grafana Assistant
2.9千+ 次下载
2 个月前更新
linuxserver/homeassistant logo

linuxserver/homeassistant

LinuxServer.io 社区镜像
LinuxServer提供的Home Assistant Docker镜像,是一款功能强大的家庭自动化平台,可集中管理智能家居设备,支持数百种设备协议与品牌,通过可视化界面与自动化规则实现场景联动。该镜像基于轻量级架构构建,集成完善的社区插件生态,支持数据持久化与安全更新,帮助用户轻松搭建个性化智能家庭系统,简化部署流程并降低维护成本,打造高效、智能的现代生活体验。
268 次收藏100万+ 次下载
13 天前更新
homeassistant/home-assistant logo

homeassistant/home-assistant

Home Assistant 智能家居平台
这是一款以本地控制与隐私保护为核心设计理念的开源家庭自动化系统,它依托开源技术架构保障用户对家居设备的直接操控权,有效规避数据上传云端可能引发的隐私泄露风险,同时支持个性化功能定制与灵活扩展,让用户在畅享智能便捷生活的过程中,始终牢牢掌握数据主权与设备管理的核心权限。
3.3千 次收藏5亿+ 次下载
12 天前更新

查看更多 wyoming-assist-microphone 相关镜像