Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

disable WebRTC

Post Reply
User avatar
salvadordf
Posts: 4034
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: disable WebRTC

Post by salvadordf »

CEF4Delphi can only do what CEF3 allows it to do through the API, preferences and command line arguments.

The most promising solution that I've found after a few minutes of search is compiling CEF3 as describied here :
http://stackoverflow.com/questions/3574 ... c-ip-leaks

However, you can also try to modify the preferences or add command line switches.
I haven't tested any of these posibilities and I don't know if they work.

There are 3 preferences about webrtc with these default values :

Code: Select all

webrtc.ip_handling_policy : default
webrtc.multiple_routes_enabled : True
webrtc.nonproxied_udp_enabled : True
There are also several command line switches about webrtc :

Code: Select all

--aec-refined-adaptive-filter
--agc-startup-min-volume
--disable-rtc-smoothness-algorithm 
--disable-webrtc-encryption
--disable-webrtc-hw-decoding
--disable-webrtc-hw-encoding
--disable-webrtc-hw-vp8-encoding
--enable-audio-debug-recordings-from-extension
--enable-webrtc-event-logging-from-extension
--enable-webrtc-stun-origin
--enable-win7-webrtc-hw-h264-decoding
--enforce-webrtc-ip-permission-check
--force-webrtc-ip-handling-policy
--use-fake-ui-for-media-stream 
--use-file-for-fake-audio-capture
--webrtc-stun-probe-trial
Post Reply