Initial release

This commit is contained in:
Pascal
2026-05-10 15:57:15 +02:00
commit add3f940a0
77 changed files with 12367 additions and 0 deletions
+11
View File
@@ -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
+9
View File
@@ -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
+15
View File
@@ -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
+11
View File
@@ -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
+12
View File
@@ -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
+10
View File
@@ -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
+1
View File
@@ -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...
+1
View File
@@ -0,0 +1 @@
qwentts.cpp is a minimal C++17 and GGML port of Qwen3-TTS for zero shot multilingual text to speech.
+12
View File
@@ -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
+10
View File
@@ -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