Issues 356 - Sending flac data to mycroft stt instead of frames

pull/420/head
Jonathan D'Orleans 2016-09-30 00:11:05 -04:00
parent 9e0c614a47
commit 98aa95434b
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class MycroftSTT(STT):
def execute(self, audio, language=None):
language = language or self.lang
return self.api.stt(audio.frame_data, language)
return self.api.stt(audio.get_flac_data(), language)
class STTFactory(object):