Video Conference Connectivity Matrix

JS
R
JavaScript

* Video Conference Connectivity Matrix * Protocol-to-endpoint mapping for WebRTC/VoIP integration

1/**
2 * Video Conference Protocol Matrix
3 * Integration reference for multi-protocol conferencing systems
4 */
5
6+----------+----------------+-------------+------------------+-------------------+
7| Protocol | Endpoint       | Client Type | Tech Stack       | Implementation   |
8+----------+----------------+-------------+------------------+-------------------+
9| WebRTC   | wss://{host}  | Browser,    | FreeSwitch      | mod_verto,       |
10|          | /ws           | Native Apps | + mod_sofia      | mod_websocket    |
11+----------+----------------+-------------+------------------+-------------------+
12| PSTN     | {country}     | Phone       | FreeSwitch      | mod_sofia,       |
13|          | {number}      | devices     | + SIP carrier   | mod_dialplan     |
14+----------+----------------+-------------+------------------+-------------------+
15| SIP      | {conf}@       | IP Phones,  | FreeSwitch      | mod_sofia,       |
16|          | {sip_server}  | SIP clients | core            | mod_conference   |
17+----------+----------------+-------------+------------------+-------------------+
18| H.323    | {ip}:{port}   | Room        | FreeSwitch      | mod_h323,        |
19|          |               | systems     | + Opal          | mod_sofia bridge |
20+----------+----------------+-------------+------------------+-------------------+
21
22Config requirements:
23- Event Socket Layer (ESL)
24- SIP profiles
25- Codec settings

Created on 1/29/2025