You can use the technology webRTC
which is present in Chrome version 18+. But you need to go to about:// flags and turn on getUserMedia()' or Mediastream. Use the F control to find with ease.
Here’s a code I found on github that tested and worked:
<script type="text/javascript" src="//cdn.oslikas.com/js/WebRTCO-1.0.4-beta-min.js" charset="utf-8"></script>
...
<div class="row">
<div class="span2"></div>
<div class="span4" id="div_video_local">
<video width="100%" height="100%" autoplay="autoplay" id="localVideo" muted="true"/>
</div>
<div class="span4" id="div_video_remote">
<video width="100%" height="100%" autoplay="autoplay" id="remoteVideo1"/>
</div>
<div class="span2"></div>
</div>
I put this answer because I believe that no one will bring something really functional(free) for a long time. There are many projects on github, but many stalled or buggy. Some were free and became paid for. But it’s a cool test to make, but for business it’s still not a good.
File link: https://github.com/fycth/webrtcexample
Test link: https://www.webrtcexample.com/ or https://www.webrtcexample.com/chat.html
I believe, that reading the documentation of firefox hello you will see that almost everything is possible. https://www.mozilla.org/en-US/firefox/hello/
– Frederick Silva
Check out this link, man: >Simple webcam with websockets and Processing Bad Ankles http://badankles.com/? p=209 Bad Ankles
– bp002
I needed some time ago for a project that did not end up getting out of the paper, and at the time I was able to have a direction to follow after this reference, maybe it will help: http://phoboslab.org/log/2013/09/html5-live-video-streaming-via-websockets
– Jefferson Silva
A link English tutorial to better understand: http://www.youtube.com/watch?v=d7NsiFXcc5A
– Rogers Corrêa