SimpleRTC
SimpleRTC copied to clipboard
URL.createObjectURL() is dead
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