Open bikash-ghorai opened 5 years ago
Hmmm, maybe the [object%20MediaSteam]
should be a filename instead of that weird string.
I am having the same issue. But i change something:
try { JSHG.video.attr("src", compatibility.URL.createObjectURL(stream)); } catch (error) { JSHG.video.attr("src", stream); }
To :
try { JSHG.video.attr("srcObject", compatibility.URL.createObjectURL(stream)); } catch (error) { JSHG.video.attr("srcObject", stream); }
It runs without error, but is not showing nothing..