<!DOCTYPE html> <html> <head> <script src="js/latest.js"></script> </head> <body> <video height="300" id="localVideo"></video> <div height="300" id="remotesVideos"></div> </body> <script> var webrtc = new SimpleWebRTC({ // the id/element dom element that will hold "our" video localVideoEl: 'localVideo', // the id/element dom element that will hold remote videos remoteVideosEl: 'remotesVideos', // immediately ask for camera access autoRequestMedia: true }); // we have to wait until it's ready webrtc.on('readyToCall', function () { // you can name it anything webrtc.joinRoom('your awesome room name'); }); </script> </html>
由於這裏不能傳附件, html
js在http://www.oschina.net/code/snippet_128886_37109 web