|
@@ -35,11 +35,12 @@ def memberOfQueue(text_in):
|
|
|
|
|
|
def compose(text_in):
|
|
def compose(text_in):
|
|
name_hash = str(time.time()).replace('.','')
|
|
name_hash = str(time.time()).replace('.','')
|
|
- makeMP3(name_hash,text_in.text, text_in.lang)
|
|
|
|
|
|
+ makeMP3(name_hash,text_in)
|
|
call_anchor(name_hash,text_in.avatar)
|
|
call_anchor(name_hash,text_in.avatar)
|
|
|
|
|
|
-def makeMP3(text_in,lang):
|
|
|
|
-
|
|
|
|
|
|
+def makeMP3(name_hash,text_in):
|
|
|
|
+ lang = text_in.lang
|
|
|
|
+ txt = text_in.text
|
|
if lang==0:
|
|
if lang==0:
|
|
tts = gTTS(txt)
|
|
tts = gTTS(txt)
|
|
tts.save(dir_sound+name_hash+"raw.mp3")
|
|
tts.save(dir_sound+name_hash+"raw.mp3")
|