pusher_webrtc icon indicating copy to clipboard operation
pusher_webrtc copied to clipboard

Failed to execute 'createObjectURL' on 'URL':

Open dchiragj opened this issue 5 years ago • 1 comments

an error occured TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided. at (index):128

It shows this kind of error when I start this application.

Please check this screen shot.

image

dchiragj avatar Dec 26 '19 12:12 dchiragj

Instead of this: document.getElementById("selfview").src = window.URL.createObjectURL(stream);

write this : document.getElementById("selfview").srcObject = stream;

sohaibahmed293 avatar Jan 07 '20 07:01 sohaibahmed293