Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/speak/espeak_cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'speak/espeak_cmd.py')
-rw-r--r--speak/espeak_cmd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/speak/espeak_cmd.py b/speak/espeak_cmd.py
index 1e03797..682bfcd 100644
--- a/speak/espeak_cmd.py
+++ b/speak/espeak_cmd.py
@@ -1,5 +1,3 @@
-# Copyright (C) 2009, Aleksey Lim
-#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@@ -57,7 +55,9 @@ def voices():
if not m:
continue
language, gender, name, stuff = m.groups()
- if stuff.startswith('mb/'):
+ if stuff.startswith('mb/') or \
+ name in ('en-rhotic','english_rp','english_wmids'):
+ # these voices don't produce sound
continue
out.append((language, name))