mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 13:35:12 +03:00
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
import base64
|
|
import struct
|
|
import numpy as np
|
|
import traceback
|
|
|
|
from fastapi import APIRouter
|
|
from fastapi.encoders import jsonable_encoder
|
|
from fastapi.responses import JSONResponse
|
|
|
|
from voice_changer.VoiceChangerManager import VoiceChangerManager
|
|
from pydantic import BaseModel
|
|
import threading
|
|
|
|
|
|
class VoiceModel(BaseModel):
|
|
timestamp: int
|
|
buffer: str
|
|
|
|
|
|
class MMVC_Rest_VoiceChanger:
|
|
def __init__(self, voiceChangerManager: VoiceChangerManager):
|
|
self.voiceChangerManager = voiceChangerManager
|
|
self.router = APIRouter()
|
|
self.router.add_api_route("/test", self.test, methods=["POST"])
|
|
|
|
self.tlock = threading.Lock()
|
|
|
|
def test(self, voice: VoiceModel):
|
|
try:
|
|
timestamp = voice.timestamp
|
|
buffer = voice.buffer
|
|
wav = base64.b64decode(buffer)
|
|
|
|
# if wav == 0:
|
|
# samplerate, data = read("dummy.wav")
|
|
# unpackedData = data
|
|
# else:
|
|
# unpackedData = np.array(
|
|
# struct.unpack("<%sh" % (len(wav) // struct.calcsize("<h")), wav)
|
|
# )
|
|
|
|
unpackedData = np.array(
|
|
struct.unpack("<%sh" % (len(wav) // struct.calcsize("<h")), wav)
|
|
)
|
|
|
|
self.tlock.acquire()
|
|
changedVoice = self.voiceChangerManager.changeVoice(unpackedData)
|
|
self.tlock.release()
|
|
|
|
changedVoiceBase64 = base64.b64encode(changedVoice[0]).decode("utf-8")
|
|
data = {"timestamp": timestamp, "changedVoiceBase64": changedVoiceBase64}
|
|
|
|
json_compatible_item_data = jsonable_encoder(data)
|
|
return JSONResponse(content=json_compatible_item_data)
|
|
|
|
except Exception as e:
|
|
print("REQUEST PROCESSING!!!! EXCEPTION!!!", e)
|
|
print(traceback.format_exc())
|
|
self.tlock.release()
|
|
return str(e)
|