Hanvod Posted August 6, 2018 Posted August 6, 2018 It seems like CEF doesnt allow me to use my microfone. <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title></title> <body> <h1 id="a">123</h1> <h1 id="b">123</h1> <h1 id="c">123</h1> <h1 id="d">123</h1> <script> document.getElementById("a").innerHTML = navigator.getUserMedia document.getElementById("b").innerHTML = navigator.webkitGetUserMedia document.getElementById("c").innerHTML = navigator.mozGetUserMedia navigator.webkitGetUserMedia({audio: true}, function(stream) {document.getElementById("d").innerHTML = stream}, function() {}) </script> </body> </html> First screenshot: Google Chrome, microfone using alowed, getUserMedia() and webkitGetUserMedia() exists, everything works fine Second screenshot: Google Chrome, microfone not alowed, getUserMedia() and webkitGetUserMedia() exists, stream is null, like it expected to be. Third screenshot: CEF in-game, getUserMedia() and webkitGetUserMedia() exists, but stream is null like if my microfone is disabled for some reason. Question: how to enable microfone inside CEF?
Hanvod Posted August 7, 2018 Author Posted August 7, 2018 Update: your webserver must to be https: /close
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now