12 lines
232 B
Batchfile
12 lines
232 B
Batchfile
@echo off
|
|
|
|
set PATH=%~dp0..\build\Release;%PATH%
|
|
|
|
qwen-tts.exe ^
|
|
--model ..\models\qwen-talker-1.7b-base-Q8_0.gguf ^
|
|
--codec ..\models\qwen-tokenizer-12hz-Q8_0.gguf ^
|
|
--lang English ^
|
|
-o base.wav < prompt.txt
|
|
|
|
pause
|