2025年1月19日星期日 上午10:18:15

Part 1 - Local Voice using Docker Compose

2 个月 前
#50762 引用
Part 1 - Local Voice using Docker Compose
https://blog.matterxiaomi.com/blog/Local-Voice-using-Docker-Compose-part1/
0
2 个月 前
#50767 引用
In this blog post, we will go over how to use a Docker Compose file to deploy and configure Wyoming Whisper.

https://exitcode0.net/posts/wyoming-whisper-docker-compose/
0
1 周 前
#59960 引用
## wyoming
  whisper:
    container_name: whisper
    image: rhasspy/wyoming-whisper
    command: --model tiny-int8 --language en
    volumes:
      - /opt/whisper-data:/data
    environment:
      - TZ=Europe/Vienna
    restart: unless-stopped
    ports:
      - 10300:10300
###
  piper:
    container_name: piper
    image: rhasspy/wyoming-piper
    command: --voice en_US-lessac-medium
    volumes:
      - /opt/piper-data:/data
    environment:
      - TZ=Europe/Vienna
    restart: unless-stopped
    ports:
      - 10200:10200


https://community.home-assistant.io/t/how-to-manually-install-piper-and-whisper-on-home-assistant-core/632966/2?u=msly
0