#20 Added TTS plugin

This commit is contained in:
Fabio Manganiello 2017-12-22 03:14:19 +01:00
parent 2ec7a0bbda
commit 7a0295675c
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
import subprocess
import urllib.parse
from platypush.message.response import Response
from .. import Plugin
class TtsPlugin(Plugin):
""" Default Text-to-Speech plugin. It leverages Google Translate and
requires mplayer """
def say(self, phrase, lang='en-gb'):
output = None
errors = []
cmd = ['mplayer -ao alsa -really-quiet -noconsolecontrols ' +
'"http://translate.google.com/translate_tts?{}"'
.format(urllib.parse.urlencode({
'ie' : 'UTF-8',
'client' : 'tw-ob',
'tl' : lang,
'q' : phrase,
}))]
try:
output = subprocess.check_output(
cmd, stderr=subprocess.STDOUT, shell=True).decode('utf-8')
except subprocess.CalledProcessError as e:
errors = [e.output.decode('utf-8')]
return Response(output=output, errors=errors)
# vim:sw=4:ts=4:et: