teddybear082 commited on
Commit
d6b5e80
·
1 Parent(s): 46e5c09

Update pocket tts erver bat for python

Browse files

make streaming default as it is hard to see a downside to doing so

Files changed (1) hide show
  1. run_pocket_tts_server.bat +4 -3
run_pocket_tts_server.bat CHANGED
@@ -59,9 +59,10 @@ if "%INPUT_VOICES%"=="" (
59
  )
60
 
61
  :: 6. Streaming Default
62
- set "STREAM_ARG="
63
- set /p "INPUT_STREAM=Enable Streaming by default? (Y/N) [N]: "
64
- if /i "%INPUT_STREAM%"=="Y" set "STREAM_ARG=--stream"
 
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 ========================================================