I have created a video conferencing and video streaming application using webRTC. It is working perfectly fine. But how can I measure the delay in the transmitting and receiving sides. Are there any utilities for it ?
Asked
Active
Viewed 1,182 times
1 Answers
2
Enter URL "chrome://webrtc-internals/" in your Chrome browser. It has lots of interesting send and receive network stats which will give you lots of useful data. Hopefully that helps with measuring delay.

Aki
- 3,709
- 2
- 29
- 37
-
2It's not simple, but you can get the same data via the `RTCPeerConnection` `getStats()` method. There's an example at https://webrtc.googlecode.com/svn/trunk/samples/js/demos/html/constraints-and-stats.html. – Sam Dutton Nov 29 '13 at 12:47