diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2021-04-14 10:35:09 +0200 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2021-04-14 10:39:04 +0200 |
commit | 10ac02c57f471a6efca43c0bc8b8b9c1fb73179b (patch) | |
tree | 8c2cc76b41e3772a7bfe2ca1ea4e4968057934ec | |
parent | f484312cd3366fdf1938af11b33d08280b2f79fd (diff) |
Enable field trial to enable Opus RED
-rw-r--r-- | main.js | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -34,6 +34,9 @@ app.commandLine.appendSwitch('disable-site-isolation-trials'); // https://github.com/electron/electron/issues/19880 app.commandLine.appendSwitch('disable-features', 'IOSurfaceCapturer'); +// Enable Opus RED field trial. +app.commandLine.appendSwitch('force-fieldtrials', 'WebRTC-Audio-Red-For-Opus/Enabled/'); + // Needed until robot.js is fixed: https://github.com/octalmage/robotjs/issues/580 app.allowRendererProcessReuse = false; |