mirror of
https://github.com/matatonic/openedai-speech
synced 2025-06-26 18:16:32 +00:00
9 lines
323 B
Batchfile
9 lines
323 B
Batchfile
@echo off
|
|
set models=%*
|
|
if "%models%" == "" set models=en_GB-northern_english_male-medium en_US-libritts_r-medium
|
|
|
|
piper --update-voices --data-dir voices --download-dir voices --model x 2> nul
|
|
for %%i in (%models%) do (
|
|
if not exist "voices\%%i.onnx" piper --data-dir voices --download-dir voices --model %%i > nul
|
|
)
|