Initial release
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
@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
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
../build/qwen-tts \
|
||||
--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
|
||||
@@ -0,0 +1,15 @@
|
||||
@echo off
|
||||
|
||||
set PATH=%~dp0..\build\Release;%PATH%
|
||||
|
||||
set /p REFTEXT=<freeman.txt
|
||||
|
||||
qwen-tts.exe ^
|
||||
--model ..\models\qwen-talker-1.7b-base-Q8_0.gguf ^
|
||||
--codec ..\models\qwen-tokenizer-12hz-Q8_0.gguf ^
|
||||
--ref-audio freeman.wav ^
|
||||
--ref-text "%REFTEXT%" ^
|
||||
--lang English ^
|
||||
-o clone.wav < prompt.txt
|
||||
|
||||
pause
|
||||
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
../build/qwen-tts \
|
||||
--model ../models/qwen-talker-1.7b-base-Q8_0.gguf \
|
||||
--codec ../models/qwen-tokenizer-12hz-Q8_0.gguf \
|
||||
--ref-audio freeman.wav \
|
||||
--ref-text "$(cat freeman.txt)" \
|
||||
--lang English \
|
||||
-o clone.wav < prompt.txt
|
||||
@@ -0,0 +1,12 @@
|
||||
@echo off
|
||||
|
||||
set PATH=%~dp0..\build\Release;%PATH%
|
||||
|
||||
qwen-tts.exe ^
|
||||
--model ..\models\qwen-talker-1.7b-customvoice-Q8_0.gguf ^
|
||||
--codec ..\models\qwen-tokenizer-12hz-Q8_0.gguf ^
|
||||
--speaker vivian ^
|
||||
--lang English ^
|
||||
-o customvoice.wav < prompt.txt
|
||||
|
||||
pause
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
../build/qwen-tts \
|
||||
--model ../models/qwen-talker-1.7b-customvoice-Q8_0.gguf \
|
||||
--codec ../models/qwen-tokenizer-12hz-Q8_0.gguf \
|
||||
--speaker vivian \
|
||||
--lang English \
|
||||
-o customvoice.wav < prompt.txt
|
||||
@@ -0,0 +1 @@
|
||||
If you go into different cultures, they have different concepts of creation. They have their own creation story and what an afterlife is. Where you go, what you do, who you're going to be with. People say, well...
|
||||
@@ -0,0 +1 @@
|
||||
qwentts.cpp is a minimal C++17 and GGML port of Qwen3-TTS for zero shot multilingual text to speech.
|
||||
@@ -0,0 +1,12 @@
|
||||
@echo off
|
||||
|
||||
set PATH=%~dp0..\build\Release;%PATH%
|
||||
|
||||
qwen-tts.exe ^
|
||||
--model ..\models\qwen-talker-1.7b-voicedesign-Q8_0.gguf ^
|
||||
--codec ..\models\qwen-tokenizer-12hz-Q8_0.gguf ^
|
||||
--instruct "male, young adult, moderate pitch" ^
|
||||
--lang English ^
|
||||
-o tts.wav < prompt.txt
|
||||
|
||||
pause
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
../build/qwen-tts \
|
||||
--model ../models/qwen-talker-1.7b-voicedesign-Q8_0.gguf \
|
||||
--codec ../models/qwen-tokenizer-12hz-Q8_0.gguf \
|
||||
--instruct "male, young adult, moderate pitch" \
|
||||
--lang English \
|
||||
-o tts.wav < prompt.txt
|
||||
Reference in New Issue
Block a user