When we use getUserMedia
to get local video and attach to a video element the video element looks like this :
<video src="blob:https%3A//<domainName>%3A8443/5b1c2e58-b2a2-445a-82d6-9819572bcf30" autoplay=""></video>
In the src
attribute, we can see that video element is getting the stream using https
. Does that mean this video element is getting stream through the internet(like a remote stream is received) or video
tag is smart enough to know whether this stream is coming from local camera and doesnot go to the internet.