File size: 13,978 Bytes
e1c9194 | 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 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | #!/usr/bin/env python3
"""
================================================================================
Priority 4: Sentence-Level Streaming TTS Server with Opus Output
================================================================================
Production TTS requires streaming audio, not waiting for full generation.
This server implements:
1. Sentence-level chunking: Split input at punctuation boundaries
2. Per-sentence generation: Generate mel-spectrogram for each sentence
3. Opus encoding: Stream compressed audio chunks as each sentence completes
4. Time-to-first-audio (TTFA): Sub-500ms for short sentences
Architecture:
Client โ HTTP POST /synthesize
โ Preprocess (diacritize, normalize)
โ Chunk into sentences
โ For each sentence:
โ Generate with EPSS(7) + BF16
โ Encode to Opus
โ Yield audio chunk
โ Client receives streaming audio
Opus encoding:
- 24kHz sample rate (matches F5-TTS output)
- 16-32kbps bitrate
- ~10x smaller than WAV
- Streaming-compatible (Ogg Opus container)
Dependencies:
pip install fastapi uvicorn opuslib pydub
Usage:
# Start server
python 04_streaming_server.py --host 0.0.0.0 --port 8000
# Client request
curl -X POST http://localhost:8000/synthesize \
-H "Content-Type: application/json" \
-d '{
"text": "ู
ุฑุญุจุง ุจู. ููู ุญุงูู ุงูููู
ุ",
"ref_audio": "reference.wav",
"ref_text": "ู
ุฑุญุจุง"
}' \
--output output.opus
================================================================================
"""
import argparse
import asyncio
import io
import os
import sys
import time
import warnings
from contextlib import asynccontextmanager
from pathlib import Path
from typing import AsyncGenerator, List, Optional
import numpy as np
import soundfile as sf
import torch
import torchaudio
from cached_path import cached_path
from fastapi import FastAPI, HTTPException, Request
from fastapi.responses import StreamingResponse
from f5_tts.infer.utils_infer import load_vocoder, preprocess_ref_audio_text
from f5_tts.model import CFM
from f5_tts.model.utils import get_tokenizer
from habibi_tts.model.utils import dialect_id_map, text_list_formatter
from hydra.utils import get_class
from omegaconf import OmegaConf
from pydantic import BaseModel
warnings.filterwarnings("ignore")
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
MODEL_CFG_PATH = str(Path(__file__).parent / "configs" / "F5TTS_v1_Base.yaml")
CKPT_URL = "hf://SWivid/Habibi-TTS/Specialized/ALG/model_100000.safetensors"
VOCAB_URL = "hf://SWivid/Habibi-TTS/Specialized/ALG/vocab.txt"
N_MEL_CHANNELS = 100
HOP_LENGTH = 256
WIN_LENGTH = 1024
N_FFT = 1024
TARGET_SAMPLE_RATE = 24000
# ---------------------------------------------------------------------------
# Global model state (loaded once at startup)
# ---------------------------------------------------------------------------
model_global = None
vocoder_global = None
# ---------------------------------------------------------------------------
# Model Loading
# ---------------------------------------------------------------------------
def load_production_model(device=DEVICE):
"""Load optimized Habibi-TTS ALG model for production."""
print(f"[LOAD] Loading production model on {device}...")
model_cfg = OmegaConf.load(MODEL_CFG_PATH)
model_cls = get_class(f"f5_tts.model.{model_cfg.model.backbone}")
model_arc = model_cfg.model.arch
ckpt_file = str(cached_path(CKPT_URL))
vocab_file = str(cached_path(VOCAB_URL))
vocab_char_map, vocab_size = get_tokenizer(vocab_file, "custom")
model = CFM(
transformer=model_cls(**model_arc, text_num_embeds=vocab_size, mel_dim=N_MEL_CHANNELS),
mel_spec_kwargs=dict(
n_fft=N_FFT,
hop_length=HOP_LENGTH,
win_length=WIN_LENGTH,
n_mel_channels=N_MEL_CHANNELS,
target_sample_rate=TARGET_SAMPLE_RATE,
mel_spec_type="vocos",
),
odeint_kwargs=dict(method="euler"),
vocab_char_map=vocab_char_map,
).to(device)
# Load checkpoint
from safetensors.torch import load_file
checkpoint = load_file(ckpt_file, device=device)
checkpoint = {"ema_model_state_dict": checkpoint}
checkpoint["model_state_dict"] = {
k.replace("ema_model.", ""): v
for k, v in checkpoint["ema_model_state_dict"].items()
if k not in ["initted", "step"]
}
for key in ["mel_spec.mel_stft.mel_scale.fb", "mel_spec.mel_stft.spectrogram.window"]:
if key in checkpoint["model_state_dict"]:
del checkpoint["model_state_dict"][key]
model.load_state_dict(checkpoint["model_state_dict"])
del checkpoint
torch.cuda.empty_cache()
# BF16 optimization
if device == "cuda":
model = model.to(torch.bfloat16)
print("[OPT] Model converted to BF16")
# torch.compile for transformer backbone
if device == "cuda":
model.transformer = torch.compile(model.transformer, mode="reduce-overhead", fullgraph=False)
print("[OPT] torch.compile applied")
model.eval()
return model
# ---------------------------------------------------------------------------
# Audio Processing
# ---------------------------------------------------------------------------
def chunk_text(text: str, max_chars: int = 135) -> List[str]:
"""Split text into sentence-level chunks."""
import re
sentences = re.split(r"(?<=[;:,.!?])\s+|(?<=[ุ๏ผุใ๏ผ๏ผ])", text)
chunks = []
current_chunk = ""
for sentence in sentences:
if not sentence.strip():
continue
if len(current_chunk.encode("utf-8")) + len(sentence.encode("utf-8")) <= max_chars:
current_chunk += sentence + " " if sentence and sentence[-1].isascii() else sentence
else:
if current_chunk:
chunks.append(current_chunk.strip())
current_chunk = sentence + " " if sentence and sentence[-1].isascii() else sentence
if current_chunk:
chunks.append(current_chunk.strip())
return chunks
def wav_to_opus_bytes(wav: np.ndarray, sr: int = 24000, bitrate: str = "24k") -> bytes:
"""Convert WAV numpy array to Opus-encoded bytes."""
try:
import subprocess
# Write to temporary WAV
wav_int16 = (wav * 32767).astype(np.int16)
wav_buffer = io.BytesIO()
sf.write(wav_buffer, wav_int16, sr, format="WAV", subtype="PCM_16")
wav_bytes = wav_buffer.getvalue()
# Convert to Opus using ffmpeg
proc = subprocess.run(
["ffmpeg", "-i", "-", "-c:a", "libopus", "-b:a", bitrate, "-f", "ogg", "-"],
input=wav_bytes,
capture_output=True,
)
if proc.returncode != 0:
# Fallback: return WAV if opus encoding fails
return wav_bytes
return proc.stdout
except Exception:
# Fallback to WAV
wav_buffer = io.BytesIO()
sf.write(wav_buffer, wav, sr, format="WAV")
return wav_buffer.getvalue()
# ---------------------------------------------------------------------------
# Streaming Inference
# ---------------------------------------------------------------------------
def infer_sentence(
ref_audio: torch.Tensor,
ref_text: str,
gen_text: str,
model_obj,
vocoder,
nfe_step: int = 7,
cfg_strength: float = 2.0,
sway_sampling_coef: float = -1.0,
speed: float = 1.0,
device: str = DEVICE,
) -> np.ndarray:
"""Generate audio for a single sentence."""
audio = ref_audio.to(device)
ref_audio_len = audio.shape[-1] // HOP_LENGTH
# Prepare text with dialect ID
text_list = [ref_text + gen_text]
final_text_list = text_list_formatter(text_list, dialect_id=dialect_id_map["ALG"])
# Calculate duration
ref_text_len = len(ref_text.encode("utf-8"))
gen_text_len = len(gen_text.encode("utf-8"))
duration = ref_audio_len + int(ref_audio_len / ref_text_len * gen_text_len / speed)
with torch.inference_mode():
generated, _ = model_obj.sample(
cond=audio,
text=final_text_list,
duration=duration,
steps=nfe_step,
cfg_strength=cfg_strength,
sway_sampling_coef=sway_sampling_coef,
)
generated = generated.to(torch.float32)
generated = generated[:, ref_audio_len:, :]
generated = generated.permute(0, 2, 1)
generated_wave = vocoder.decode(generated)
generated_wave = generated_wave.squeeze().cpu().numpy()
return generated_wave
async def stream_synthesize(
text: str,
ref_audio_path: str,
ref_text: str,
model_obj,
vocoder,
nfe_step: int = 7,
device: str = DEVICE,
) -> AsyncGenerator[bytes, None]:
"""Stream synthesized audio in sentence-level chunks."""
# Preprocess reference
ref_audio_path, ref_text = preprocess_ref_audio_text(ref_audio_path, ref_text)
# Load reference audio
audio, sr = torchaudio.load(ref_audio_path)
if audio.shape[0] > 1:
audio = torch.mean(audio, dim=0, keepdim=True)
if sr != TARGET_SAMPLE_RATE:
resampler = torchaudio.transforms.Resample(sr, TARGET_SAMPLE_RATE)
audio = resampler(audio)
# Normalize RMS
rms = torch.sqrt(torch.mean(torch.square(audio)))
target_rms = 0.1
if rms < target_rms:
audio = audio * target_rms / rms
# Chunk text
sentences = chunk_text(text)
print(f"[STREAM] Text split into {len(sentences)} chunks")
# Generate and stream each sentence
for i, sentence in enumerate(sentences):
t0 = time.perf_counter()
wav = infer_sentence(
audio, ref_text, sentence, model_obj, vocoder,
nfe_step=nfe_step, device=device,
)
t1 = time.perf_counter()
# Re-normalize if needed
if rms < target_rms:
wav = wav * rms.item() / target_rms
# Encode to Opus
opus_bytes = wav_to_opus_bytes(wav, sr=TARGET_SAMPLE_RATE, bitrate="24k")
print(f"[STREAM] Chunk {i+1}/{len(sentences)}: {len(sentence)} chars, "
f"gen={t1-t0:.3f}s, audio={len(wav)/TARGET_SAMPLE_RATE:.2f}s")
yield opus_bytes
# ---------------------------------------------------------------------------
# FastAPI Application
# ---------------------------------------------------------------------------
class SynthesizeRequest(BaseModel):
text: str
ref_audio: str
ref_text: str = ""
nfe_step: int = 7
cfg_strength: float = 2.0
sway_sampling_coef: float = -1.0
speed: float = 1.0
output_format: str = "opus" # opus, wav
@asynccontextmanager
async def lifespan(app: FastAPI):
"""Load model at startup."""
global model_global, vocoder_global
print("[STARTUP] Loading production model...")
model_global = load_production_model(device=DEVICE)
vocoder_global = load_vocoder("vocos", is_local=False, local_path="", device=DEVICE)
print("[STARTUP] Model loaded. Server ready.")
yield
print("[SHUTDOWN] Cleaning up...")
del model_global, vocoder_global
torch.cuda.empty_cache() if DEVICE == "cuda" else None
app = FastAPI(title="Habibi-TTS ALG Streaming Server", lifespan=lifespan)
@app.post("/synthesize")
async def synthesize(request: SynthesizeRequest):
"""Stream synthesized audio for the given text."""
if not os.path.exists(request.ref_audio):
raise HTTPException(status_code=400, detail=f"Reference audio not found: {request.ref_audio}")
async def generate():
async for chunk in stream_synthesize(
request.text,
request.ref_audio,
request.ref_text,
model_global,
vocoder_global,
nfe_step=request.nfe_step,
device=DEVICE,
):
yield chunk
media_type = "audio/ogg" if request.output_format == "opus" else "audio/wav"
return StreamingResponse(generate(), media_type=media_type)
@app.post("/synthesize_sync")
async def synthesize_sync(request: SynthesizeRequest):
"""Synchronous synthesis (full audio returned)."""
if not os.path.exists(request.ref_audio):
raise HTTPException(status_code=400, detail=f"Reference audio not found: {request.ref_audio}")
chunks = []
async for chunk in stream_synthesize(
request.text,
request.ref_audio,
request.ref_text,
model_global,
vocoder_global,
nfe_step=request.nfe_step,
device=DEVICE,
):
chunks.append(chunk)
full_audio = b"".join(chunks)
media_type = "audio/ogg" if request.output_format == "opus" else "audio/wav"
return StreamingResponse(io.BytesIO(full_audio), media_type=media_type)
@app.get("/health")
async def health():
"""Health check endpoint."""
return {"status": "ok", "model_loaded": model_global is not None}
@app.get("/info")
async def info():
"""Server info."""
return {
"model": "Habibi-TTS ALG (Specialized)",
"base_model": "F5-TTS v1 Base",
"device": DEVICE,
"optimizations": ["BF16", "torch.compile", "EPSS"],
"default_nfe": 7,
"sample_rate": TARGET_SAMPLE_RATE,
}
# ---------------------------------------------------------------------------
# Main
# ---------------------------------------------------------------------------
def main():
parser = argparse.ArgumentParser(description="Habibi-TTS ALG Streaming Server")
parser.add_argument("--host", default="0.0.0.0")
parser.add_argument("--port", type=int, default=8000)
parser.add_argument("--workers", type=int, default=1)
args = parser.parse_args()
import uvicorn
uvicorn.run(app, host=args.host, port=args.port, workers=args.workers)
if __name__ == "__main__":
main()
|