summarylogtreecommitdiffstats
path: root/headless.patch
blob: fc41ada9229ab73d6886e24eef4dee5d6aaa12b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/TTS/tts/utils/text/phonemizers/espeak_wrapper.py b/TTS/tts/utils/text/phonemizers/espeak_wrapper.py
index 328e52f3..57a87b82 100644
--- a/TTS/tts/utils/text/phonemizers/espeak_wrapper.py
+++ b/TTS/tts/utils/text/phonemizers/espeak_wrapper.py
@@ -58,7 +58,7 @@ def _espeak_exe(espeak_lib: str, args: List, sync=False) -> List[str]:
     with subprocess.Popen(
         cmd,
         stdout=subprocess.PIPE,
-        stderr=subprocess.STDOUT,
+        # stderr=subprocess.STDOUT,
     ) as p:
         res = iter(p.stdout.readline, b"")
         if not sync: