mirror of
https://github.com/matatonic/openedai-speech
synced 2025-06-26 18:16:32 +00:00
8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
export COQUI_TOS_AGREED=1
|
|
export TTS_HOME=voices
|
|
|
|
for model in $*; do
|
|
python -c "from TTS.utils.manage import ModelManager; ModelManager().download_model('$model')"
|
|
done
|
|
./download_samples.sh |