1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-21 01:27:01 +02:00

add piper

This commit is contained in:
kevin 2024-03-10 12:18:53 +08:00
parent df5154a338
commit 95187f7f7f
3 changed files with 47 additions and 0 deletions

View File

@ -177,6 +177,7 @@ A collection of delicious docker recipes.
- [x] obs-web-arm :joystick:
- [x] openmeetings :camera:
- [x] paddle-ocr
- [x] piper
- [x] plex :moneybag:
- [x] red5 :+1: :camera:
- [x] red5-arm :construction: :camera:

29
piper/Dockerfile Normal file
View File

@ -0,0 +1,29 @@
#
# Dockerfile for piper
#
FROM debian:12
MAINTAINER EasyPi Software Foundation
ARG PIPER_VERSION=2023.11.14-2
ARG PIPER_OS=linux
ARG PIPER_ARCH=x86_64
ARG PIPER_FILE=piper_${PIPER_OS}_${PIPER_ARCH}.tar.gz
ARG PIPER_URL=https://github.com/rhasspy/piper/releases/download/${PIPER_VERSION}/${PIPER_FILE}
ARG MODEL_BASE_URL=https://huggingface.co/rhasspy/piper-voices/resolve/v1.0.0/en/en_US/lessac/medium
ARG MODEL_FILE=en_US-lessac-medium.onnx
WORKDIR /opt/piper
RUN set -xe \
&& apt update -y \
&& apt install -y curl \
&& curl -sSL ${PIPER_URL} | tar xz --strip 1 \
&& curl -sSL -O ${MODEL_BASE_URL}/${MODEL_FILE} \
-O ${MODEL_BASE_URL}/${MODEL_FILE}.json \
&& ./piper --version \
&& apt remove -y curl \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["./piper", "-m", "en_US-lessac-medium.onnx", "-d", "/tmp"]

17
piper/README.md Normal file
View File

@ -0,0 +1,17 @@
piper
=====
[piper][1] is a fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4.
```bash
# Create an alias
$ alias piper='docker run -i --rm -u $(id -u):$(id -g) -v $PWD:/tmp vimagick/piper'
# Do text-to-speech
$ echo 'Welcome to the world of speech synthesis!' | piper -f /tmp/welcome.wav
# Play audio
$ play welcome.wav
```
[1]: https://github.com/rhasspy/piper