Chrome update-Failed to execute 'createObjectURL' on 'URL'

后端 未结 4 1010
青春惊慌失措
青春惊慌失措 2021-01-31 19:14

I\'m taking an image from the webcam and storing it to the server. Everything was working fine until I got the chrome update today. My latest chrome version is:

4条回答
  •  半阙折子戏
    2021-01-31 19:35

    In chrome, it works fine if you use:

    video.srcObject = stream;
    

    Instead of:

    this.srcObject = stream;
    

    See printscreen here

提交回复
热议问题