Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnDamerell committed Jan 11, 2025
1 parent 4e64234 commit cc91978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeway/homeway_linuxhost/sage/sagetranscribehandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async def HandleStreamingAudio(self, event: Event) -> bool:

# This will not block on a response, it will just send the audio.
start = time.time()
result = await self.FiberManager.Listen(False, self.Buffer, SageDataTypesFormats.AudioPCM, self.IncomingAudioStartEvent.rate, self.IncomingAudioStartEvent.channels, self.IncomingAudioStartEvent.width, self.self.TranscribeLanguage_CanBeNone)
result = await self.FiberManager.Listen(False, self.Buffer, SageDataTypesFormats.AudioPCM, self.IncomingAudioStartEvent.rate, self.IncomingAudioStartEvent.channels, self.IncomingAudioStartEvent.width, self.TranscribeLanguage_CanBeNone)
deltaSec = time.time() - start

# If None is returned, the stream failed.
Expand Down

0 comments on commit cc91978

Please sign in to comment.