My app voice recording feature works perfect everywhere despite the Safari, it throws me an error “this browser does not support capturing sounds. Please use another one”
Did someone faced this problem?
I know that in proggraming I can use getUserMedia() function, but I have no idea how to implement this in bubble.
Is wraping a PWA in native app can solve this problem?
Does anyone have a solution for this problem? i’m having the same issue
@smartyou.media did you figure out a workaround?
@fajayi39 Yes
- Download audio recorder plugin by Tout-en-un
- Download Toolbox by Misha V
- When user visits page set workflow //When page is loaded > Run Javacript > paste this code
function getLocalStream() {
navigator.mediaDevices.getUserMedia({video: false, audio: true}).then( stream => {
window.localStream = stream;
window.localAudio.srcObject = stream;
window.localAudio.autoplay = true;
}).catch( err => {
console.log(“u got an error:” + err)
});
}
getLocalStream();
Let me know is it works for you also !
This topic was automatically closed after 70 days. New replies are no longer allowed.