Run Orpheus TTS locally.
10
stars
5
commits
Python
primary language
Apr 14, 2025
updated
A local text-to-speech system using the Orpheus AI model.
# Install all dependencies
pip install -r requirements.txt
pip install llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cu121isaiahbjork/orpheus-3b-0.1-ft-Q4_K_M-GGUF
# Default CLI Loop (LM Studio)
python TTS.py
# Change backend
python TTS.py --backend local
# Specify text
python TTS.py --text "Hello, this is Orpheus."
# Change voice (options: tara, leah, jess, leo, dan, mia, zac, zoe)
python TTS.py --voice leo
# Save to file without playing
python TTS.py --text "Save this to a file" --output "my_speech.wav" --no-play
Output files are saved to the "outputs" directory by default.
5 commits
Python
100.0%
Run Orpheus TTS locally.
10
stars
5
commits
Python
primary language
Apr 14, 2025
updated
A local text-to-speech system using the Orpheus AI model.
# Install all dependencies
pip install -r requirements.txt
pip install llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cu121isaiahbjork/orpheus-3b-0.1-ft-Q4_K_M-GGUF
# Default CLI Loop (LM Studio)
python TTS.py
# Change backend
python TTS.py --backend local
# Specify text
python TTS.py --text "Hello, this is Orpheus."
# Change voice (options: tara, leah, jess, leo, dan, mia, zac, zoe)
python TTS.py --voice leo
# Save to file without playing
python TTS.py --text "Save this to a file" --output "my_speech.wav" --no-play
Output files are saved to the "outputs" directory by default.
5 commits
Python
100.0%