그러냐

에러 Uncaught (in promise) TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided. 본문

javascript

에러 Uncaught (in promise) TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.

관절분리 2020. 4. 13. 16:33
반응형

video.src = window.URL.createObjectURL(localMediaStream); video.play();

=>

video.srcObject = localMediaStream; video.play();

반응형