44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
from ahserver.serverenv import ServerEnv
|
|
from appPublic.worker import awaitify
|
|
|
|
from ahserver.globalEnv import get_definition
|
|
import numpy as np
|
|
import base64
|
|
import whisper
|
|
|
|
# 编码
|
|
def base64_encode(text):
|
|
text_bytes = text.encode('utf-8')
|
|
encoded_bytes = base64.b64encode(text_bytes)
|
|
encoded_text = encoded_bytes.decode('utf-8')
|
|
return encoded_text
|
|
|
|
# 解码
|
|
def base64_decode(encoded_text):
|
|
encoded_bytes = encoded_text.encode('utf-8')
|
|
decoded_bytes = base64.b64decode(encoded_bytes)
|
|
decoded_text = decoded_bytes.decode('utf-8')
|
|
return decoded_text
|
|
|
|
class WhisperBase:
|
|
def __init__(self):
|
|
model_name = get_definition('whisper_model')
|
|
self.model = whisper.load_model(model_name)
|
|
|
|
def _stt(self, filepath):
|
|
pass
|
|
|
|
stt = awaitify(_stt)
|
|
|
|
class WhisperFile(WhisperBase):
|
|
def _stt(self, filepath):
|
|
return self.model.transcribe(filepath)
|
|
|
|
|
|
class WhisperBase64(WhisperBase):
|
|
def _stt(self, audio_base64):
|
|
raw = base64.decode(audio_base64)
|
|
ndarr = np.frombuffer(raw, dtype=np.float32)
|
|
return self.model.transcribe(raw)
|
|
|