mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
20 lines
482 B
Python
20 lines
482 B
Python
import io
|
|
import base64
|
|
from gtts import gTTS
|
|
from application.tts.base import BaseTTS
|
|
|
|
|
|
class GoogleTTS(BaseTTS):
|
|
def __init__(self, text):
|
|
self.text = text
|
|
|
|
|
|
def text_to_speech(self):
|
|
lang = "en"
|
|
audio_fp = io.BytesIO()
|
|
tts = gTTS(text=self.text, lang=lang, slow=False)
|
|
tts.write_to_fp(audio_fp)
|
|
audio_fp.seek(0)
|
|
audio_base64 = base64.b64encode(audio_fp.read()).decode("utf-8")
|
|
return audio_base64, lang
|