示例#1
0
 def __init__(self, cfg):
     super(SpeechtechTTS, self).__init__(cfg)
     self.preprocessing = TTSPreprocessing(
         self.cfg, self.cfg['TTS']['SpeechTech']['preprocessing'])
示例#2
0
文件: flite.py 项目: henrypig/alex-1
 def __init__(self, cfg):
     super(FliteTTS, self).__init__(cfg)
     self.preprocessing = TTSPreprocessing(
         self.cfg, self.cfg['TTS']['Flite']['preprocessing'])
示例#3
0
 def __init__(self, cfg):
     """Intitialize: just remember the configuration."""
     self.cfg = cfg
     super(VoiceRssTTS, self).__init__(cfg)
     self.preprocessing = TTSPreprocessing(self.cfg, self.cfg['TTS']['VoiceRss']['preprocessing'])