Unity-Technologies / UnityRenderStreaming

Streaming server for Unity
Other
1.27k stars 343 forks source link

webrtc aec support #563

Open gqy2468 opened 2 years ago

gqy2468 commented 2 years ago

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;

karasusan commented 2 years ago

@gqy2468 You mean AEC is echo canceling?

gqy2468 commented 2 years ago

@karasusan yes

gqy2468 commented 2 years ago

Currently not supported?

karasusan commented 2 years ago

@gqy2468 Echo canceling is currently not supported.

gqy2468 commented 2 years ago

Will it be supported in the future?

karasusan commented 2 years ago

@gqy2468 We will support the echo canceling but can not say when that will be.

karasusan commented 2 years ago

memo: WRS-152

karasusan commented 2 years ago

Related issue https://github.com/Unity-Technologies/com.unity.webrtc/issues/587