-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextToSpeech.py
36 lines (30 loc) · 1.26 KB
/
TextToSpeech.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import logging as L
import os
import Settings, VoiceHAB
import SoundPlayer as SP
from os import path
from requests.exceptions import HTTPError
if Settings.TextToSpeechEngine.lower() == 'ivona':
import pyvona
else:
from gtts import gTTS
def TextToSpeech(Phrase):
L.debug('Phrase to be spoken: %s' % Phrase)
try:
if Phrase.strip() != '':
SpeechFileFullPath = path.join(Settings.SoundsDir, Settings.TemporaryAudioFileName)
if Settings.TextToSpeechEngine.lower() == 'ivona':
TTS = pyvona.create_voice(Settings.IvonaAccessKey, Settings.IvonaSecretKey)
TTS.region = 'eu-west'
TTS.voice_name = Settings.IvonaVoice
TTS.codec = 'mp3'
TTS.fetch_voice(Phrase, SpeechFileFullPath)
else:
TTS = gTTS(text = Phrase, lang = Settings.GoogleLanguageCode)
TTS.save(SpeechFileFullPath)
SP.PlayAudioFile()
os.remove(SpeechFileFullPath)
except HTTPError as e:
L.error('%s Text-To-Speech module might not be updated: ' % Settings.TextToSpeechEngine, e)
except Exception as e:
L.error('Unknown %s Text-To-Speech module error: ' % Settings.TextToSpeechEngine, e)