teddybear082 commited on
Commit ·
d6b5e80
1
Parent(s): 46e5c09
Update pocket tts erver bat for python
Browse filesmake streaming default as it is hard to see a downside to doing so
run_pocket_tts_server.bat
CHANGED
|
@@ -59,9 +59,10 @@ if "%INPUT_VOICES%"=="" (
|
|
| 59 |
)
|
| 60 |
|
| 61 |
:: 6. Streaming Default
|
| 62 |
-
|
| 63 |
-
set
|
| 64 |
-
|
|
|
|
| 65 |
|
| 66 |
echo.
|
| 67 |
echo ========================================================
|
|
|
|
| 59 |
)
|
| 60 |
|
| 61 |
:: 6. Streaming Default
|
| 62 |
+
:: Changed: Defaults to ON. Only unsets if the user types 'N'.
|
| 63 |
+
set "STREAM_ARG=--stream"
|
| 64 |
+
set /p "INPUT_STREAM=Enable Streaming? (Y/N) [Y]: "
|
| 65 |
+
if /i "%INPUT_STREAM%"=="N" set "STREAM_ARG="
|
| 66 |
|
| 67 |
echo.
|
| 68 |
echo ========================================================
|