Hi
But trying any video calls using the html file located in the videochat folder, i dont get any video.
When i look at the Google Chrome console, i see the following error message:
Uncaught TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.
Looking around, i believe the issue is related to Google removing support for createObjectURL, and its located in the html file:
// Wait for stream on the call, then set peer video display
call.on('stream', function(stream){
$('#their-video').prop('src', URL.createObjectURL(stream));
});
Thanks