add asr and tts with settings

This commit is contained in:
0Xiao0
2024-08-22 15:26:27 +08:00
parent abb5195e55
commit c247d611a0
28 changed files with 626 additions and 82 deletions

View File

@ -2,27 +2,154 @@ import io
import time
from ntpath import join
import requests
from fastapi import Request, Response, status
from fastapi.responses import JSONResponse
from .blackbox import Blackbox
from ..tts.tts_service import TTService
from ..configuration import MeloConf
from ..configuration import CosyVoiceConf
from injector import inject
from injector import singleton
import sys,os
sys.path.append('/home/gpu/Workspace/CosyVoice')
from cosyvoice.cli.cosyvoice import CosyVoice
from cosyvoice.utils.file_utils import load_wav
import soundfile
import pyloudnorm as pyln
from melo.api import TTS as MELOTTS
from ..log.logging_time import logging_time
import logging
logger = logging.getLogger(__name__)
@singleton
class TTS(Blackbox):
melo_mode: str
melo_url: str
melo_speed: int
melo_device: str
melo_language: str
melo_speaker: str
cosyvoice_mode: str
cosyvoice_url: str
cosyvoice_speed: int
cosyvoice_device: str
cosyvoice_language: str
cosyvoice_speaker: str
@logging_time(logger=logger)
def melo_model_init(self, melo_config: MeloConf) -> None:
self.melo_speed = melo_config.speed
self.melo_device = melo_config.device
self.melo_language = melo_config.language
self.melo_speaker = melo_config.speaker
self.melo_url = ''
self.melo_mode = melo_config.mode
self.melotts = None
self.speaker_ids = None
if self.melo_mode == 'local':
self.melotts = MELOTTS(language=self.melo_language, device=self.melo_device)
self.speaker_ids = self.melotts.hps.data.spk2id
else:
self.melo_url = melo_config.url
logging.info('#### Initializing MeloTTS Service in ' + self.melo_device + ' mode...')
@logging_time(logger=logger)
def cosyvoice_model_init(self, cosyvoice_config: CosyVoiceConf) -> None:
self.cosyvoice_speed = cosyvoice_config.speed
self.cosyvoice_device = cosyvoice_config.device
self.cosyvoice_language = cosyvoice_config.language
self.cosyvoice_speaker = cosyvoice_config.speaker
self.cosyvoice_url = ''
self.cosyvoice_mode = cosyvoice_config.mode
self.cosyvoicetts = None
# os.environ['CUDA_VISIBLE_DEVICES'] = str(cosyvoice_config.device)
if self.cosyvoice_mode == 'local':
self.cosyvoicetts = CosyVoice('/home/gpu/Workspace/Models/CosyVoice/pretrained_models/CosyVoice-300M')
else:
self.cosyvoice_url = cosyvoice_config.url
logging.info('#### Initializing CosyVoiceTTS Service in cuda:' + self.cosyvoice_device + ' mode...')
@inject
def __init__(self, melo_config: MeloConf, cosyvoice_config: CosyVoiceConf, settings: dict) -> None:
self.tts_service = TTService("yunfeineo")
self.melo_model_init(melo_config)
self.cosyvoice_model_init(cosyvoice_config)
def __init__(self, *args, **kwargs) -> None:
self.tts_service = TTService("catmaid")
def __call__(self, *args, **kwargs):
return self.processing(*args, **kwargs)
def processing(self, *args, **kwargs) -> io.BytesIO:
@logging_time(logger=logger)
def processing(self, *args, settings: dict) -> io.BytesIO:
print("\nChat Settings: ", settings)
if settings is None:
settings = {}
user_model_name = settings.get("tts_model_name")
print(f"tts_model_name: {user_model_name}")
text = args[0]
current_time = time.time()
audio = self.tts_service.read(text)
print("#### TTS Service consume : ", (time.time()-current_time))
return audio
if user_model_name == 'melotts':
if self.melo_mode == 'local':
audio = self.melotts.tts_to_file(text, self.speaker_ids[self.melo_speaker], speed=self.melo_speed)
f = io.BytesIO()
soundfile.write(f, audio, 44100, format='wav')
f.seek(0)
# Read the audio data from the buffer
data, rate = soundfile.read(f, dtype='float32')
# Peak normalization
peak_normalized_audio = pyln.normalize.peak(data, -1.0)
# Integrated loudness normalization
meter = pyln.Meter(rate)
loudness = meter.integrated_loudness(peak_normalized_audio)
loudness_normalized_audio = pyln.normalize.loudness(peak_normalized_audio, loudness, -12.0)
# Write the loudness normalized audio to an in-memory buffer
normalized_audio_buffer = io.BytesIO()
soundfile.write(normalized_audio_buffer, loudness_normalized_audio, rate, format='wav')
normalized_audio_buffer.seek(0)
print("#### MeloTTS Service consume - local : ", (time.time() - current_time))
return normalized_audio_buffer.read()
else:
message = {
"text": text
}
response = requests.post(self.melo_url, json=message)
print("#### MeloTTS Service consume - docker : ", (time.time()-current_time))
return response.content
elif user_model_name == 'cosyvoicetts':
if self.cosyvoice_mode == 'local':
audio = self.cosyvoicetts.inference_sft(text, self.cosyvoice_language)
f = io.BytesIO()
soundfile.write(f, audio['tts_speech'].cpu().numpy().squeeze(0), 22050, format='wav')
f.seek(0)
print("#### CosyVoiceTTS Service consume - local : ", (time.time() - current_time))
return f.read()
else:
message = {
"text": text
}
response = requests.post(self.cosyvoice_url, json=message)
print("#### CosyVoiceTTS Service consume - docker : ", (time.time()-current_time))
return response.content
else:
audio = self.tts_service.read(text)
print("#### TTS Service consume : ", (time.time()-current_time))
return audio.read()
def valid(self, *args, **kwargs) -> bool:
text = args[0]
@ -31,10 +158,12 @@ class TTS(Blackbox):
async def fast_api_handler(self, request: Request) -> Response:
try:
data = await request.json()
print(f"data: {data}")
except:
return JSONResponse(content={"error": "json parse error"}, status_code=status.HTTP_400_BAD_REQUEST)
text = data.get("text")
setting = data.get("settings")
if text is None:
return JSONResponse(content={"error": "text is required"}, status_code=status.HTTP_400_BAD_REQUEST)
by = self.processing(text)
return Response(content=by.read(), media_type="audio/wav", headers={"Content-Disposition": "attachment; filename=audio.wav"})
by = self.processing(text, settings=setting)
return Response(content=by, media_type="audio/wav", headers={"Content-Disposition": "attachment; filename=audio.wav"})