Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--espeak_cmd.py4
-rw-r--r--espeak_gst.py4
3 files changed, 8 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 75b4c8e..2675c6d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+26
+
+*Enabling english_rp and english_wmids accents
+
25
*Adding AUTHORS file
diff --git a/espeak_cmd.py b/espeak_cmd.py
index 48a27a0..cddb440 100644
--- a/espeak_cmd.py
+++ b/espeak_cmd.py
@@ -55,8 +55,8 @@ def voices():
if not m:
continue
language, gender, name, stuff = m.groups()
- if stuff.startswith('mb/') or \
- name in ('en-rhotic','english_rp','english_wmids'):
+ if stuff.startswith('mb/'): #or \
+ #name in ('en-rhotic','english_rp','english_wmids'):
# these voices don't produce sound
continue
out.append((language, name))
diff --git a/espeak_gst.py b/espeak_gst.py
index 3b1d326..f3f1c9c 100644
--- a/espeak_gst.py
+++ b/espeak_gst.py
@@ -50,9 +50,9 @@ def voices():
for i in gst.element_factory_make('espeak').props.voices:
name, language, dialect = i
- if name in ('en-rhotic','english_rp','english_wmids'):
+ #if name in ('en-rhotic','english_rp','english_wmids'):
# these voices don't produce sound
- continue
+ # continue
out.append((language, name))
return out