↑ WEBRTC EXPERIMENTS

Customizing Bandwidth using RTCMultiConnection

Copyright © 2013 Muaz Khan<@muazkh>.

New Session:

Local video container

Remote videos container


You can customize bandwidth using URL parameters!


Go ahead and try RTCMultiConnection!

Pass "session-id" only-over the constructor:

connection = new RTCMultiConnection('session-id');
connection.bandwidth = {
    audio: 50,
    video: 256
};
connection.open();


What is RTCMultiConnection?



RTCMultiConnection.js a javascript library supports features like audio/video conferencing; (one-way and one-to-many) broadcasting; screen sharing; data/text/file sharing (of any size); multi-and-manual sessions establishment; users ejection, rejection and presence detection; and more. It automatically keeps session "active" all the time; even if initiator leaves.

Feedback