Back to Webrtc Experiment

WebRTC Calls: Realtime & Pluginfree! ® Muaz Khan

realtime-pluginfree-calls/old2/index.html

latest592 B
Original Source

Private ?? #123456789 Setup Voice-only Call

Latest Updates

Feedback

Send MessageEnter your email too; if you want "direct" reply!

How to setup voice-only call?

// www.RTCMultiConnection.org/latest.js

var connection = new RTCMultiConnection();
connection.session = {
    audio: true
};
connection.connect();
btnStartVoiceOnlyCall.onclick = function() {
    connection.open();
};