Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Expresar.activity/sintetizar.py
diff options
context:
space:
mode:
Diffstat (limited to 'Expresar.activity/sintetizar.py')
-rw-r--r--Expresar.activity/sintetizar.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Expresar.activity/sintetizar.py b/Expresar.activity/sintetizar.py
new file mode 100644
index 0000000..30fb7d5
--- /dev/null
+++ b/Expresar.activity/sintetizar.py
@@ -0,0 +1,8 @@
+#!/usr/bin/python
+
+from subprocess import Popen
+
+
+def sintetizar(text):
+ Popen(['espeak', '-v', 'es', text])
+