Answers
Apr 03, 2019 - 03:08 PM
To make a video call on FaceTime:
facetime:
facetime://user@example.com
To make an audio call on FaceTime:
facetime-audio:
facetime-audio://user@example.com
Both iOS and Android have deep links you can use to open native mobile apps.
You can find more information about integrating your app with FaceTime through Apple’s Developer Guide.
May 01, 2019 - 10:39 PM
Peer-to-peer video data transfer capabilities available in WebRTC-enabled browsers (Chrome/Firefox/Opera/other) helps with the quality of communication (law latency) and scalability which including signaling built-in the SDK, STUN/TURN/ICE support, etc.
//Initialize the SDK
try {
FlyAPI.init({
useRTCOnly: true, // force usage of WebRTC
micRequired: true, // ask mic/cam access before connection to Fly
videoSupport: true // enable video support
});
} catch (e) {
// showing the message if browser doesn't support WebRTC
if (e.message == "NO_WEBRTC_SUPPORT") alert("WebRTC support isn't available");
}
// Now we can use SDK functions - establish connection with Fly
function onSdkReady() {
FlyAPI.connect(); // mic/cam access dialog will be shown after the function call
}
Add New Comment