Recorderjs
Recorderjs copied to clipboard
Not play in Mobile Chrome browser
I put Recorder.js sample application on github pages. http://dokechin.github.io/Recorderjs/index2.html This site is going well in PC Chrome browser, But not going in Chrome for Andoroid 39.0.2171.59 Andoroid 4.3.0 Nexus7. After recording stop, playing time will be Zero second.
I read that Mobile chrome does not reproduce audio/blob.
first upload your audio/blob to a server convert it to .wav , then change src in the audio tag
Thanks I can do like this. Convert blob to base64 String.
var reader = new FileReader();
reader.onload = function(e) {
au.src = e.target.result;
};
reader.readAsDataURL(blob);
Hello dokechin have you been able to solve your problem I have the same issue but I dont understand where to change it I am using the same code as in the actual file, how can we use above code you have mentioned along with the actual code to make it work,I am feeling it has to do something with this worker.onmessage = function(e){ var blob = e.data; currCallback(blob); } but when I try to change it the application stops exporting the file even in chrome, can you help please, thanks
+1 @dokechin Brilliant! Audio recording on a mobile was what I wanted and I was stuck on this for a while. Converting blob to data: base64 worked like a charm in mobile Chrome. Thanks! Owe you a beer if I ever meet you.
@dokechin 's answer worked for me as well. Thanks! And thanks @kaushik-evani for documenting this in your Stack Overflow answer!