I want to recording the audio in browser and after stopping the record, file should upload to the server..
upto recording audio working fine but after stopping record need to upload the server..
This is my requirement..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manikandan MurugesanPosted Jul 24, 2017, 3:15 AM
You can save the recorded data as a blob and then use a FileReader to upload the data via POST with AJAX.
Something similar along these lines:
It records audio and saves it MP3 format using just HTML5 and JS and then uploads the data on the webserver.
It only works on Chrome and Firefox though.