Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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])
+