Python 3.6.9 Flask 1.1.1 Werkzeug 0.16.0
on an POST call, I am sending a .wav file from postman. I am receiving that file on Flask by using the below lines
length = request.headers["Content-Length"]
Binaryfile = request.get_data(length)
My Binaryfile will look like this RIFFzuWAVEfmt >}dataVu ???someRandomData
Now, I need to read this data through python and need to send it into
import speech_recognition as sr
audioFile = sr.AudioFile(here, need a file-like object created from binary)