My code is:
<!DOCTYPE html> <html>
<head>
<script src="https://simplewebrtc.com/latest-v2.js"></script>
</head>
<body>
<video height="300" id="localVideo"></video>
<div id="remotesVideos"></div>
</body> </html>
<script type="text/javascript"> var webrtc = new SimpleWebRTC({
localVideoEl: 'localVideo',
remoteVideosEl: 'remotesVideos',
autoRequestMedia: true });
// we have to wait until it's ready webrtc.on('readyToCall',
function () {
webrtc.joinRoom('Hello'); }); </script>
I want to know if the weight of data (video and audio...) exchanging in the net sits on simplewebrtc.com
or my own host?