コード例 #1
0
ファイル: tts.py プロジェクト: amoux/corona_nlp_app
 def __init__(self, audio_fp: Path):
     SynthesizeCallback.__init__(self)
     self.audio_stream = audio_fp.open('ab')
     self.stream_info = {
         'connected': False,
         'audio_ready': False,
         'file_path': audio_fp.absolute()
     }
コード例 #2
0
 def __init__(self):
     SynthesizeCallback.__init__(self)
     self.fd = None
     self.error = None
コード例 #3
0
 def __init__(self):
     SynthesizeCallback.__init__(self)
     self.play = Play()
コード例 #4
0
 def __init__(self):
     SynthesizeCallback.__init__(self)
     self.fd = open(file_path, 'ab')
コード例 #5
0
ファイル: wattson.py プロジェクト: aana5i/voice_assistant
 def __init__(self, data_path):
     SynthesizeCallback.__init__(self)
     self.file_path = data_path
     self.fd = open(self.file_path, 'wb')
コード例 #6
0
 def __init__(self):
     SynthesizeCallback.__init__(self)
     self.file_path = "audio/watson.wav"
     self.fd = open(self.file_path, 'wb+')
コード例 #7
0
ファイル: main.py プロジェクト: V1pi/leitor-legendas
 def __init__(self):
     SynthesizeCallback.__init__(self)
     self.stream = pya.open(format=pya.get_format_from_width(width=2), channels=1, rate=23050, output=True)