Как повторно спросить разрешение на микрофон в браузерах?
Мой код здесь:
function askPermission() {
var constraints = { audio: true, video: false };
navigator.mediaDevices
.getUserMedia(constraints)
.then(function(stream) {
let audioContext = new AudioContext();
console.log(audioContext);
})
.catch(function(err) {
window.location.reload();
});
}