aboutsummaryrefslogtreecommitdiff
path: root/autogpt/speech/gtts.py
blob: deef4f2702487ba5f1904212adf876948c93f3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
""" GTTS Voice. """
import os

import gtts
from playsound import playsound

from autogpt.config import Config
from autogpt.speech.base import VoiceBase


class GTTSVoice(VoiceBase):
    """GTTS Voice."""

    def _setup(self, config: Config) -> None:
        pass

    def _speech(self, text: str, _: int = 0) -> bool:
        """Play the given text."""
        tts = gtts.gTTS(text)
        tts.save("speech.mp3")
        playsound("speech.mp3", True)
        os.remove("speech.mp3")
        return True