From a2f8fa01db08837a912c1d14648ba943ff835614 Mon Sep 17 00:00:00 2001 From: Rafael Ortiz Date: Fri, 10 Jun 2011 03:39:51 +0000 Subject: Enabling english_rp and english_wmids accents --- 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 -- cgit v0.9.1