Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Switch SILK and G.722 codecs usage off in SIP calls for Edge browser.browser with stripCodecs option:

Code Block
languagejs
themeRDark
var outCall = session.createCall({
    callee: $("#callee").val(),
    visibleName: $("#sipLogin").val(),
    localVideoDisplay: localDisplay,
    remoteVideoDisplay: remoteDisplay,
    constraints: constraints,
    receiveAudio: true,
    receiveVideo: false,
    stripCodecs: "silk,g722"
    ...
});

outCall.call();

3. Microphone swithing does not work in Safari browser.

...