Reputation: 585
Can you add delay with WebRTC? I want to set up video-conferencing with a constant and consistent delay. For example, 4s each way. I'd want the client to buffer the video and audio so that if you say something the and the other person replies instantly on hearing it, then you hear their response exactly 4s after you spoke for the first time.
Upvotes: 0
Views: 1477
Reputation: 21360
Buffering is possible in WebRTC - see Is buffering possible in WebRTC?. Unfortunately not to the level that you want.
It might be possible to do this as an effect with WebAudio, but then you won't have video.
Upvotes: 1