mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
31 lines
891 B
Python
31 lines
891 B
Python
from io import BytesIO
|
|
import base64
|
|
from application.tts.base import BaseTTS
|
|
from application.core.settings import settings
|
|
|
|
|
|
class ElevenlabsTTS(BaseTTS):
|
|
def __init__(self):
|
|
from elevenlabs.client import ElevenLabs
|
|
|
|
self.client = ElevenLabs(
|
|
api_key=settings.ELEVENLABS_API_KEY,
|
|
)
|
|
|
|
|
|
def text_to_speech(self, text):
|
|
lang = "en"
|
|
audio = self.client.text_to_speech.convert(
|
|
voice_id="nPczCjzI2devNBz1zQrb",
|
|
model_id="eleven_multilingual_v2",
|
|
text=text,
|
|
output_format="mp3_44100_128"
|
|
)
|
|
audio_data = BytesIO()
|
|
for chunk in audio:
|
|
audio_data.write(chunk)
|
|
audio_bytes = audio_data.getvalue()
|
|
|
|
# Encode to base64
|
|
audio_base64 = base64.b64encode(audio_bytes).decode("utf-8")
|
|
return audio_base64, lang |