Deprecation of createObjectURL and replace with the new HTMLMediaElement.srcObject doesn't work for Webcam stream

后端 未结 3 1413
无人及你
无人及你 2020-12-29 04:29

I get the warning that a function will be deprecated in Chrome future release.

It\'s this script:

navigator.getUserMedia = navigator.getUserMedia ||          


        
3条回答
  •  春和景丽
    2020-12-29 05:01

    Replacing this.src = window.URL.createObjectURL(stream); by this.srcObject = stream; should fix the problem.

提交回复
热议问题