13 lines
282 B
Batchfile
13 lines
282 B
Batchfile
@echo off
|
|
|
|
set PATH=%~dp0..\build\Release;%PATH%
|
|
|
|
omnivoice-tts.exe ^
|
|
--model ..\models\omnivoice-base-Q8_0.gguf ^
|
|
--codec ..\models\omnivoice-tokenizer-Q8_0.gguf ^
|
|
--instruct "male, young adult, moderate pitch" ^
|
|
--lang English ^
|
|
-o tts.wav < prompt.txt
|
|
|
|
pause
|