Update Uptated-Prototype/TTS-Script-PiperTTS.py

This commit is contained in:
2025-11-16 09:03:51 -08:00
parent a1ed410b17
commit fc002fd5a4

View File

@@ -1,14 +1,13 @@
# Theoretical Upgrade Test # Theoretical Upgrade Test
from piper.voice import PiperVoice # Backbone of text to speech from piper.voice import PiperVoice # Backbone of text to speech
import pyaudio import pyaudio
import subprocess
import cmd
import os import os
import subprocess
texttospeak = subprocess.Popen(["xsel","--clipboard"], stdout=subprocess.PIPE) # In Theory grab selected text into Varible cakked TextToSpeak) # In Theory grab selected text and print ot to terminal texttospeak = subprocess.Popen(["xsel"], text=True)
print(texttospeak) print(texttospeak)
texttospeak = "Welcome to the world of speech synthesis! This is an example of text-to-speech using Piper TTS." # texttospeak = "Welcome to the world of speech synthesis! This is an example of text-to-speech using Piper TTS."
#voice = PiperVoice.load("~/en_US-amy-medium.onnx") # Load the model #voice = PiperVoice.load("~/en_US-amy-medium.onnx") # Load the model