I am capturing audio data using getUserMedia() and I want to send it to my server so I can save it as a Blob in a MySQL field.
getUserMedia()
This is all I am trying t
A good API for you would be MediaRecorder API but it is less supported than the Web Audio API, so you can do it using a ScriptNode or use Recorder.js (or base on it to build your own scriptnode).