i have afloat32 array how to create an Azure AudioInputStream
i have taken realtime audio data and used as float32 array how to convert it to azure AudioStreamInput import numpy as np import azure.cognitiveservices.speech as speechsdk class NumpyAudioStream(speechsdk.audio.PullAudioInputStreamCallback): def __init__(self, audio_array): self.audio_array = audio_array self.position = 0 def read(self, buffer,…