You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, URL.createObjectURL() is removed from browsers so this no longer works,
Please update the code to use video.srcObject = stream; instead video.src = URL.createObjectURL(stream);
& also update the live demo, so people can test.
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
URL.createObjectURL()
is removed from browsers so this no longer works,Please update the code to use
video.srcObject = stream;
insteadvideo.src = URL.createObjectURL(stream);
& also update the live demo, so people can test.
Thanks
The text was updated successfully, but these errors were encountered: