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:
authorMiguel Ruiz Diaz Genez <mgnezzeneo@gmail.com>2013-01-27 18:10:37 (GMT)
committer Miguel Ruiz Diaz Genez <mgnezzeneo@gmail.com>2013-01-27 18:10:37 (GMT)
commit077e80a79d4d19e3d11b38d5221a9dd4ba5cc162 (patch)
tree6f779cfaa0c36107fb63a22cf8faf60c874742d6 /Expresar.activity/sintetizar.py
parent708cfba8c104932738b31dc69e7637c754f5d7de (diff)
Expresar.activity/
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])
+