File size: 12,165 Bytes
4715aa2 9759e45 4715aa2 3a1a719 4715aa2 dbb4a9f 195748c 6a70709 719a208 6a70709 719a208 4715aa2 195748c 4715aa2 fb65c16 0706764 4715aa2 9759e45 4715aa2 719a208 4715aa2 dbb4a9f 4715aa2 dbb4a9f 4715aa2 55145d2 1d792aa 4715aa2 1d792aa 4715aa2 1d792aa 4715aa2 1d792aa 4715aa2 1d792aa 4715aa2 55145d2 4715aa2 55145d2 4715aa2 55145d2 4715aa2 55145d2 4715aa2 55145d2 4715aa2 8bd6538 fb65c16 8bd6538 4715aa2 55145d2 4715aa2 55145d2 4715aa2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
if __name__ == "__main__":
print("Starting server")
import logging
# Enable or disable debug logging
DEBUG_LOGGING = False
if DEBUG_LOGGING:
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.WARNING)
from RealtimeTTS import (
TextToAudioStream,
)
from engines.orpheus_engine import OrpheusEngine
from huggingface_hub import login
from fastapi.responses import StreamingResponse, HTMLResponse, FileResponse
from fastapi.middleware.cors import CORSMiddleware
from fastapi import FastAPI, Query, Request
from fastapi.staticfiles import StaticFiles
from queue import Queue
import threading
import logging
import uvicorn
import wave
import io
import os
HF_TOKEN = os.getenv("HF_TOKEN")
if HF_TOKEN:
print("🔑 Logging in to Hugging Face Hub...")
login(HF_TOKEN)
engines: dict[str, "BaseEngine"] = {}
voices: dict[str, list] = {}
current_engine = None
play_text_to_speech_semaphore = threading.Semaphore(1)
PORT = int(os.getenv("TTS_FASTAPI_PORT", 7860)) # Zahl kongruent halten
SUPPORTED_ENGINES = ["orpheus"]
engines["orpheus"] = OrpheusEngine(
api_url=os.getenv("ORPHEUS_API_URL"), # http://127.0.0.1:1234/v1/completions
model=os.getenv("ORPHEUS_MODEL") # Kartoffel-ID
)
voices["orpheus"] = engines["orpheus"].get_voices()
current_engine = engines["orpheus"]
# change start engine by moving engine name
# to the first position in SUPPORTED_ENGINES
# START_ENGINE = SUPPORTED_ENGINES[0]
START_ENGINE = "orpheus"
BROWSER_IDENTIFIERS = [
"mozilla",
"chrome",
"safari",
"firefox",
"edge",
"opera",
"msie",
"trident",
]
origins = [
"http://localhost",
f"http://localhost:{PORT}",
"http://127.0.0.1",
f"http://127.0.0.1:{PORT}",
"https://localhost",
f"https://localhost:{PORT}",
"https://127.0.0.1",
f"https://127.0.0.1:{PORT}",
]
speaking_lock = threading.Lock()
tts_lock = threading.Lock()
gen_lock = threading.Lock()
class TTSRequestHandler:
def __init__(self, engine):
self.engine = engine
self.audio_queue = Queue()
self.stream = TextToAudioStream(
engine, on_audio_stream_stop=self.on_audio_stream_stop, muted=True
)
self.speaking = False
def on_audio_chunk(self, chunk):
self.audio_queue.put(chunk)
def on_audio_stream_stop(self):
self.audio_queue.put(None)
self.speaking = False
def play_text_to_speech(self, text):
self.speaking = True
self.stream.feed(text)
logging.debug(f"Playing audio for text: {text}")
print(f'Synthesizing: "{text}"')
self.stream.play_async(on_audio_chunk=self.on_audio_chunk, muted=True)
def audio_chunk_generator(self, send_wave_headers):
first_chunk = False
try:
while True:
chunk = self.audio_queue.get()
if chunk is None:
print("Terminating stream")
break
if not first_chunk:
if send_wave_headers:
print("Sending wave header")
yield create_wave_header_for_engine(self.engine)
first_chunk = True
yield chunk
except Exception as e:
print(f"Error during streaming: {str(e)}")
app = FastAPI()
app.mount("/static", StaticFiles(directory="static"), name="static")
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Define a CSP that allows 'self' for script sources for firefox
csp = {
"default-src": "'self'",
"script-src": "'self'",
"style-src": "'self' 'unsafe-inline'",
"img-src": "'self' data:",
"font-src": "'self' data:",
"media-src": "'self' blob:",
}
csp_string = "; ".join(f"{key} {value}" for key, value in csp.items())
@app.middleware("http")
async def add_security_headers(request: Request, call_next):
response = await call_next(request)
response.headers["Content-Security-Policy"] = csp_string
return response
@app.get("/favicon.ico")
async def favicon():
return FileResponse("static/favicon.ico")
def _set_engine(engine_name):
global current_engine, stream
if current_engine is None:
current_engine = engines[engine_name]
else:
current_engine = engines[engine_name]
if voices[engine_name]:
engines[engine_name].set_voice(voices[engine_name][0].name)
@app.get("/set_engine")
def set_engine(request: Request, engine_name: str = Query(...)):
if engine_name not in engines:
return {"error": "Engine not supported"}
try:
_set_engine(engine_name)
return {"message": f"Switched to {engine_name} engine"}
except Exception as e:
logging.error(f"Error switching engine: {str(e)}")
return {"error": "Failed to switch engine"}
def is_browser_request(request):
user_agent = request.headers.get("user-agent", "").lower()
is_browser = any(browser_id in user_agent for browser_id in BROWSER_IDENTIFIERS)
return is_browser
def create_wave_header_for_engine(engine):
_, _, sample_rate = engine.get_stream_info()
num_channels = 1
sample_width = 2
frame_rate = sample_rate
wav_header = io.BytesIO()
with wave.open(wav_header, "wb") as wav_file:
wav_file.setnchannels(num_channels)
wav_file.setsampwidth(sample_width)
wav_file.setframerate(frame_rate)
wav_header.seek(0)
wave_header_bytes = wav_header.read()
wav_header.close()
# Create a new BytesIO with the correct MIME type for Firefox
final_wave_header = io.BytesIO()
final_wave_header.write(wave_header_bytes)
final_wave_header.seek(0)
return final_wave_header.getvalue()
@app.get("/tts")
async def tts(request: Request, text: str = Query(...)):
with tts_lock:
request_handler = TTSRequestHandler(current_engine)
browser_request = is_browser_request(request)
if play_text_to_speech_semaphore.acquire(blocking=False):
try:
threading.Thread(
target=request_handler.play_text_to_speech,
args=(text,),
daemon=True,
).start()
finally:
play_text_to_speech_semaphore.release()
return StreamingResponse(
request_handler.audio_chunk_generator(browser_request),
media_type="audio/wav",
)
@app.get("/engines")
def get_engines():
return list(engines.keys())
@app.get("/voices")
def get_voices():
# falls noch keine Engine gewählt/initialisiert ist
if engine is None: # <-- dein zentrales Engine-Objekt
return []
# OrpheusEngine.get_voices() liefert eine Liste von OrpheusVoice-Objekten
return [v.__dict__ for v in engine.get_voices()]
@app.get("/setvoice")
def set_voice(request: Request, voice_name: str = Query(...)):
print(f"Getting request: {voice_name}")
if not current_engine:
print("No engine is currently selected")
return {"error": "No engine is currently selected"}
try:
print(f"Setting voice to {voice_name}")
current_engine.set_voice(voice_name)
return {"message": f"Voice set to {voice_name} successfully"}
except Exception as e:
print(f"Error setting voice: {str(e)}")
logging.error(f"Error setting voice: {str(e)}")
return {"error": "Failed to set voice"}
@app.get("/")
def root_page():
engines_options = "".join(
[
f'<option value="{engine}">{engine.title()}</option>'
for engine in engines.keys()
]
)
content = f"""
<!DOCTYPE html>
<html>
<head>
<title>Text-To-Speech</title>
<style>
body {{
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}}
h2 {{
color: #333;
text-align: center;
}}
#container {{
width: 80%;
margin: 50px auto;
background-color: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}}
label {{
font-weight: bold;
}}
select, textarea {{
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
}}
button {{
display: block;
width: 100%;
padding: 15px;
background-color: #007bff;
border: none;
border-radius: 5px;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}}
button:hover {{
background-color: #0056b3;
}}
audio {{
width: 80%;
margin: 10px auto;
display: block;
}}
</style>
</head>
<body>
<div id="container">
<h2>Text to Speech</h2>
<label for="engine">Select Engine:</label>
<select id="engine">
{engines_options}
</select>
<label for="voice">Select Voice:</label>
<select id="voice">
<!-- Options will be dynamically populated by JavaScript -->
</select>
<textarea id="text" rows="4" cols="50" placeholder="Enter text here..."></textarea>
<button id="speakButton">Speak</button>
<audio id="audio" controls></audio> <!-- Hidden audio player -->
</div>
<script src="/static/tts.js"></script>
</body>
</html>
"""
return HTMLResponse(content=content)
if __name__ == "__main__":
print("Initializing TTS Engines")
for engine_name in SUPPORTED_ENGINES:
if "azure" == engine_name:
azure_api_key = os.environ.get("AZURE_SPEECH_KEY")
azure_region = os.environ.get("AZURE_SPEECH_REGION")
if azure_api_key and azure_region:
print("Initializing azure engine")
engines["azure"] = AzureEngine(azure_api_key, azure_region)
if "elevenlabs" == engine_name:
elevenlabs_api_key = os.environ.get("ELEVENLABS_API_KEY")
if elevenlabs_api_key:
print("Initializing elevenlabs engine")
engines["elevenlabs"] = ElevenlabsEngine(elevenlabs_api_key)
if "system" == engine_name:
print("Initializing system engine")
engines["system"] = SystemEngine()
if "coqui" == engine_name:
print("Initializing coqui engine")
engines["coqui"] = CoquiEngine()
if "kokoro" == engine_name:
print("Initializing kokoro engine")
engines["kokoro"] = KokoroEngine()
if "openai" == engine_name:
print("Initializing openai engine")
engines["openai"] = OpenAIEngine()
for _engine in engines.keys():
print(f"Retrieving voices for TTS Engine {_engine}")
try:
voices[_engine] = engines[_engine].get_voices()
except Exception as e:
voices[_engine] = []
logging.error(f"Error retrieving voices for {_engine}: {str(e)}")
_set_engine(START_ENGINE)
print("Server ready")
uvicorn.run(app, host="0.0.0.0", port=PORT) |