Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Ruiz Diaz Genez <mgnezzeneo@gmail.com>2013-01-18 20:21:22 (GMT)
committer Miguel Ruiz Diaz Genez <mgnezzeneo@gmail.com>2013-01-18 20:21:22 (GMT)
commit449dc9f7fc798a93a62ed0f8ae380eec41d32316 (patch)
treeafed9247d9199a9826b9c5afe319cdb95e9c7f89
parent553bd235400f5a37a745572d75289b4b6b8d1b02 (diff)
sintetizar.py
-rw-r--r--sintetizar.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/sintetizar.py b/sintetizar.py
new file mode 100644
index 0000000..30fb7d5
--- /dev/null
+++ b/sintetizar.py
@@ -0,0 +1,8 @@
+#!/usr/bin/python
+
+from subprocess import Popen
+
+
+def sintetizar(text):
+ Popen(['espeak', '-v', 'es', text])
+