I have to record an audio from the browser and upload it to the django server, can someone help me?
My django view:
@api_view(['POST'])
def audio_analysis(request):
audio_data = request.FILES['audio']
# view content
return render(request, 'homepage.html')