You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
338 B
6 lines
338 B
#!/usr/bin/env bash |
|
# Download Piper ONNX voices — delegates to ensure-libretranslate-dirs.sh (single source of truth). |
|
# Usage: bash scripts/download-piper-extra-voices.sh [DEST_DIR] |
|
set -euo pipefail |
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd)" |
|
exec bash "$__dir/ensure-libretranslate-dirs.sh" --download-piper-only "$@"
|
|
|