dify/api/services/audio_service.py

36 lines
1.2 KiB
Python
Raw Normal View History

2023-07-07 17:50:42 +08:00
import io
from werkzeug.datastructures import FileStorage
from core.model_providers.model_factory import ModelFactory
2023-07-07 17:50:42 +08:00
from services.errors.audio import NoAudioUploadedServiceError, AudioTooLargeServiceError, UnsupportedAudioTypeServiceError, ProviderNotSupportSpeechToTextServiceError
2023-07-12 17:18:56 +08:00
FILE_SIZE = 15
FILE_SIZE_LIMIT = FILE_SIZE * 1024 * 1024
2023-07-07 17:50:42 +08:00
ALLOWED_EXTENSIONS = ['mp3', 'mp4', 'mpeg', 'mpga', 'm4a', 'wav', 'webm']
2023-07-07 17:50:42 +08:00
class AudioService:
@classmethod
def transcript(cls, tenant_id: str, file: FileStorage):
if file is None:
raise NoAudioUploadedServiceError()
extension = file.mimetype
if extension not in [f'audio/{ext}' for ext in ALLOWED_EXTENSIONS]:
raise UnsupportedAudioTypeServiceError()
file_content = file.read()
file_size = len(file_content)
if file_size > FILE_SIZE_LIMIT:
2023-07-12 17:18:56 +08:00
message = f"Audio size larger than {FILE_SIZE} mb"
2023-07-07 17:50:42 +08:00
raise AudioTooLargeServiceError(message)
model = ModelFactory.get_speech2text_model(
tenant_id=tenant_id
)
2023-07-07 17:50:42 +08:00
buffer = io.BytesIO(file_content)
2023-07-12 17:18:56 +08:00
buffer.name = 'temp.mp3'
2023-07-07 17:50:42 +08:00
return model.run(buffer)