Skip to content

Commit 9c7cbf9

Browse files
committed
Fix stupid streaming switch to no-streaming
1 parent f7af992 commit 9c7cbf9

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

readme-vars.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# project information
44
project_name: piper
5-
project_url: "https://github.com/rhasspy/piper/"
5+
project_url: "https://github.com/rhasspy/wyoming-piper"
66
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/piper-logo.png"
77
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4. This container provides a Wyoming protocol server for Piper."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
@@ -33,7 +33,7 @@ opt_param_env_vars:
3333
- {env_var: "PIPER_NOISE", env_value: "0.667", desc: "Controls the variability of the voice by adding noise. Values above 1 will start to degrade audio."}
3434
- {env_var: "PIPER_NOISEW", env_value: "0.333", desc: "Controls the variability of speaking cadence. Values above 1 produce extreme stutters and pauses."}
3535
- {env_var: "PIPER_SPEAKER", env_value: "0", desc: "Speaker number to use if the voice supports multiple speakers."}
36-
- {env_var: "STREAMING", env_value: "", desc: "Setting to `true`, or any other value, will enable support for streaming audio on sentence boundaries."}
36+
- {env_var: "NO_STREAMING", env_value: "", desc: "Setting to `true`, or any other value, will disable support for streaming audio on sentence boundaries."}
3737
readonly_supported: true
3838
# application setup block
3939
app_setup_block_enabled: true
@@ -42,7 +42,7 @@ app_setup_block: |
4242
4343
When using the `gpu` tag with Nvidia GPUs, make sure you set the container to use the `nvidia` runtime and that you have the [Nvidia Container Toolkit](https://github.com/NVIDIA/nvidia-container-toolkit) installed on the host and that you run the container with the correct GPU(s) exposed. See the [Nvidia Container Toolkit docs](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/sample-workload.html) for more details.
4444
45-
For more information see the [piper docs](https://github.com/rhasspy/piper/),
45+
For more information see the [wyoming piper docs](https://github.com/rhasspy/wyoming-piper),
4646
# init diagram
4747
init_diagram: |
4848
"piper:gpu": {
@@ -86,7 +86,7 @@ init_diagram: |
8686
"piper:gpu" <- Base Images
8787
# changelog
8888
changelogs:
89-
- {date: "29.08.25:", desc: "Add streaming support & support for local only mode."}
89+
- {date: "15.11.25:", desc: "Add streaming support & support for local only mode."}
9090
- {date: "26.11.24:", desc: "Add GPU branch."}
9191
- {date: "18.07.24:", desc: "Rebase to Ubuntu Noble."}
9292
- {date: "25.11.23:", desc: "Initial Release."}

root/etc/s6-overlay/s6-rc.d/svc-piper/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if [[ -z ${LOCAL_ONLY} ]]; then
1515
UPDATE_MODELS=true
1616
fi
1717

18-
LD_LIBRARY_PATH="/lsiopy/lib/python3.12/site-packages/onnxruntime/capi:$LD_LIBRARY_PATH"
18+
LD_LIBRARY_PATH="/lsiopy/lib/python3.12/site-packages/onnxruntime-gpu/capi:$LD_LIBRARY_PATH"
1919

2020
exec \
2121
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 10200" \
@@ -30,4 +30,4 @@ exec \
3030
--download-dir /config \
3131
--use-cuda \
3232
${UPDATE_MODELS:+--update-voices} \
33-
${STREAMING:+--streaming}
33+
${NO_STREAMING:+--no-streaming}

0 commit comments

Comments
 (0)