UnityRenderStreaming
UnityRenderStreaming copied to clipboard
webrtc aec support
How can I set the webrtc config to support aec with the RTCConfiguration class?
RTCConfiguration config = default;
config.iceServers = new[] { new RTCIceServer { urls = new[] { "stun:stun.l.google.com:19302" } } };
config.bundlePolicy = RTCBundlePolicy.BundlePolicyMaxCompat;
return config;
@gqy2468 You mean AEC is echo canceling?
@karasusan yes
Currently not supported?
@gqy2468 Echo canceling is currently not supported.
Will it be supported in the future?
@gqy2468 We will support the echo canceling but can not say when that will be.
memo: WRS-152
Related issue https://github.com/Unity-Technologies/com.unity.webrtc/issues/587