File size: 13,308 Bytes
d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b f660b4b 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 0211c0b d6cd530 |
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 |
#!/usr/bin/env python3
# coding: utfβ8
"""
CosyVoice gRPC backβend β updated to mirror the FastAPI logic
* loads CosyVoice2 with TRT / FP16 first (falls back to CosyVoice)
* inference_zero_shot β adds stream=False + speed
* inference_instruct β keeps original βspeakerβIDβ path
* inference_instruct2 β new: promptβaudio + speed (no speakerβID)
"""
import io, tempfile, requests, soundfile as sf, torchaudio
import os
import sys
from concurrent import futures
import argparse
import logging
import grpc
import numpy as np
import torch
import cosyvoice_pb2
import cosyvoice_pb2_grpc
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# setβup
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
logging.getLogger("matplotlib").setLevel(logging.WARNING)
logging.basicConfig(level=logging.INFO,
format="%(asctime)s %(levelname)s %(message)s")
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.extend([
f"{ROOT_DIR}/../../..",
f"{ROOT_DIR}/../../../third_party/Matcha-TTS",
])
from cosyvoice.cli.cosyvoice import CosyVoice2 # noqa: E402
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# helpers
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _bytes_to_tensor(wav_bytes: bytes) -> torch.Tensor:
"""
Convert int16 littleβendian PCM bytes β torch.FloatTensor in range [β1,1]
"""
speech = torch.from_numpy(
np.frombuffer(wav_bytes, dtype=np.int16)
).unsqueeze(0).float() / (2 ** 15)
return speech # [1,β―T]
def _yield_audio(model_output):
"""
Generator that converts CosyVoice output β protobuf Response messages.
"""
for seg in model_output:
pcm16 = (seg["tts_speech"].numpy() * (2 ** 15)).astype(np.int16)
resp = cosyvoice_pb2.Response(tts_audio=pcm16.tobytes())
yield resp
import os, io, tempfile, requests, torch, torchaudio
from urllib.parse import urlparse
def _load_prompt_from_url(url: str, target_sr: int = 16_000) -> torch.Tensor:
"""Download an audio file from ``url`` (wav / mp3 / flac / ogg β¦),
convert it to mono, resample to ``target_sr`` if necessary,
and return a 1ΓT floatβtensor in the range β1β¦1."""
# βββ 1. Download ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
resp = requests.get(url, timeout=10)
if resp.status_code != 200:
raise HTTPException(status_code=400,
detail=f"Failed to download audio from URL: {url}")
# Infer extension from URL *or* ContentβType header
ext = os.path.splitext(urlparse(url).path)[1].lower()
if not ext and 'content-type' in resp.headers:
mime = resp.headers['content-type'].split(';')[0].strip()
ext = {
'audio/mpeg': '.mp3',
'audio/wav': '.wav',
'audio/x-wav': '.wav',
'audio/flac': '.flac',
'audio/ogg': '.ogg',
'audio/x-m4a': '.m4a',
}.get(mime, '.audio') # generic fallback
with tempfile.NamedTemporaryFile(suffix=ext or '.audio', delete=False) as f:
f.write(resp.content)
temp_path = f.name
# βββ 2. Decode (torchaudio first, pydub fallback) ββββββββββββββββββββββββββ
try:
# Let torchaudio pick the right backend automatically
speech, sample_rate = torchaudio.load(temp_path)
except Exception:
# Fallback that works as long as ffmpeg is present
from pydub import AudioSegment
import numpy as np
seg = AudioSegment.from_file(temp_path) # any ffmpegβsupported format
seg = seg.set_channels(1) # force mono
sample_rate = seg.frame_rate
np_audio = np.array(seg.get_array_of_samples()).astype(np.float32)
# normalise to β1β¦1 based on sample width
np_audio /= float(1 << (8 * seg.sample_width - 1))
speech = torch.from_numpy(np_audio).unsqueeze(0)
finally:
os.unlink(temp_path)
# βββ 3. Ensure mono + correct sampleβrate ββββββββββββββββββββββββββββββββββ
if speech.dim() > 1 and speech.size(0) > 1:
speech = speech.mean(dim=0, keepdim=True) # average to mono
if sample_rate != target_sr:
speech = torchaudio.transforms.Resample(orig_freq=sample_rate,
new_freq=target_sr)(speech)
return speech
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# gRPC service
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CosyVoiceServiceImpl(cosyvoice_pb2_grpc.CosyVoiceServicer):
def __init__(self, args):
# try CosyVoice2 first (preferred runtime: TRT / FP16)
try:
self.cosyvoice = CosyVoice2(args.model_dir,
load_jit=False,
load_trt=True,
fp16=True)
logging.info("Loaded CosyVoice2 (TRT / FP16).")
except Exception:
raise TypeError("No valid CosyVoice model found!")
# ---------------------------------------------------------------------
# single biβdi streaming RPC
# ---------------------------------------------------------------------
def Inference(self, request, context):
"""Route to the correct model call based on the oneof field present."""
# 1. Supervised fineβtuning
if request.HasField("sft_request"):
logging.info("Received SFT inference request")
mo = self.cosyvoice.inference_sft(
request.sft_request.tts_text,
request.sft_request.spk_id
)
yield from _yield_audio(mo)
return
# 2. Zeroβshot speaker cloning (bytes OR S3 URL)
if request.HasField("zero_shot_request"):
logging.info("Received zeroβshot inference request")
zr = request.zero_shot_request
tmp_path = None # initialise so we can delete later
try:
# βββββ determine payload type ββββββββββββββββββββββββββββββββββββββ
if zr.prompt_audio.startswith(b'http'):
prompt = _load_prompt_from_url(zr.prompt_audio.decode('utfβ8'))
else:
# ββ legacy raw PCM bytes ββ -----------------------------------
prompt = _bytes_to_tensor(zr.prompt_audio)
# βββββ call the model ββββββββββββββββββββββββββββββββββββββββββββββ
speed = getattr(zr, "speed", 1.0)
mo = self.cosyvoice.inference_zero_shot(
zr.tts_text,
zr.prompt_text,
prompt,
stream=False,
speed=speed,
)
finally:
# clean up any temporary file we created
if tmp_path and os.path.exists(tmp_path):
try:
os.remove(tmp_path)
except Exception as e:
logging.warning("Could not remove temp file %s: %s", tmp_path, e)
yield from _yield_audio(mo)
return
# 3. Crossβlingual
if request.HasField("cross_lingual_request"):
logging.info("Received crossβlingual inference request")
cr = request.cross_lingual_request
tmp_path = None
try:
if cr.prompt_audio.startswith(b'http'): # S3 URL case
prompt = _load_prompt_from_url(cr.prompt_audio.decode('utfβ8'))
else: # legacy raw bytes
prompt = _bytes_to_tensor(cr.prompt_audio)
mo = self.cosyvoice.inference_cross_lingual(
cr.tts_text,
prompt
)
finally:
if tmp_path and os.path.exists(tmp_path):
try:
os.remove(tmp_path)
except Exception as e:
logging.warning("Could not remove temp file %s: %s",
tmp_path, e)
yield from _yield_audio(mo)
return
# 4. Instructβ2 (CosyVoice2 supports this variant only)
if request.HasField("instruct_request"):
ir = request.instruct_request
# ---- require that the descriptor contains the field -------------------
if 'prompt_audio' not in ir.DESCRIPTOR.fields_by_name:
context.abort(
grpc.StatusCode.INVALID_ARGUMENT,
"Server expects instructβ2 proto with a 'prompt_audio' field."
)
# ---- make sure it is nonβempty (no HasField for proto3 scalars) -------
if len(ir.prompt_audio) == 0:
context.abort(
grpc.StatusCode.INVALID_ARGUMENT,
"'prompt_audio' must not be empty for instructβ2 requests."
)
logging.info("Received instructβ2 inference request")
# convert to bytes no matter what scalar type the proto uses
pa_bytes = (ir.prompt_audio.encode('utf-8') if isinstance(ir.prompt_audio, str)
else ir.prompt_audio)
# URL vs raw bytes
if pa_bytes.startswith(b"http"):
prompt = _load_prompt_from_url(pa_bytes.decode('utf-8'))
else:
prompt = _bytes_to_tensor(pa_bytes)
speed = getattr(ir, "speed", 1.0)
mo = self.cosyvoice.inference_instruct2(
ir.tts_text,
ir.instruct_text,
prompt,
stream=False,
speed=speed,
)
yield from _yield_audio(mo)
return
# unknown request type
context.abort(grpc.StatusCode.INVALID_ARGUMENT,
"Unsupported request type in oneof field.")
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# entryβpoint
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def serve(args):
server = grpc.server(
futures.ThreadPoolExecutor(max_workers=args.max_conc),
maximum_concurrent_rpcs=args.max_conc
)
cosyvoice_pb2_grpc.add_CosyVoiceServicer_to_server(
CosyVoiceServiceImpl(args), server
)
server.add_insecure_port(f"0.0.0.0:{args.port}")
server.start()
logging.info("CosyVoice gRPC server listening on 0.0.0.0:%d", args.port)
server.wait_for_termination()
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--port", type=int, default=8000)
parser.add_argument("--max_conc", type=int, default=4,
help="maximum concurrent requests / threads")
parser.add_argument("--model_dir", type=str,
default="pretrained_models/CosyVoice2-0.5B",
help="local path or ModelScope repo id")
serve(parser.parse_args()) |