コード例 #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'])