I get the warning that a function will be deprecated in Chrome future release.
It\'s this script:
navigator.getUserMedia = navigator.getUserMedia ||
Replacing this.src = window.URL.createObjectURL(stream); by this.srcObject = stream; should fix the problem.
this.src = window.URL.createObjectURL(stream);
this.srcObject = stream;