We have a python extraction function which works like: feed audio file(m4a file) to the extraction function. Then the function extract harmonic from audio file and output as json format.
Now, we are trying to deploy this python harmonic extract function to Azure function. So we can just upload audio file(e.g. m4a) to Azure blob then the python extraction function can process the uploaded file on the cloud. However we don’t know how to feed audio file from the Azure blob to the Azure python function.