Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Capture video stream with WebRTC

WebRTC(Web Real-Time Communication) is an API supporting real time audio and video communication through a browser. It is now a recommended W3C standard. This post is to show you how to capture video stream and screenshot with WebRTC.Capture video streamTo play video stream from the video camera, we first need to put a video tag in our code:<video id="video"></video>The main function to get the video stream is the navigator.getUserMedia, as of now only few of the browsers support this, you can check the browser support for this on caniuse.com. This API is well supported by Chrome a...

9,667 0       SCREENSHOT VIDEO WEBRTC


  Chrome’s WebRTC roadmap

Last January, Chrome was the first major browser to preview WebRTC, HTML5's new real time audio and video stack. Since then, we've been hard at work keeping up with the evolving specification, fixing bugs and listening to the web community’s feedback.The main parts of the WebRTC specification are now stable and are coming soon to all 200M+ Chrome users. With this blog post, we want to help developers plan for what will be introduced in this first stable release later this year.What's in:JSEPJSEP (Javascript Session Establishment Protocol) is an API for signaling that allows for much mo...

3,389 0       GOOGLE OPEN SOURCE WEBRTC ROADMAP