Keshav Gambhir
Keshav Gambhir

Reputation: 67

How to analyze webRTC internal dump

I have downloaded json dump of webRTC from chrome://webrtc-internals/. Now I want to analyze the logs and need to plot graphs. In the stats there are multiple fields which I don't understand. Can someone explain what these fields stand for and how can I use them to plot video quality and bitrate vs timestamp graph.

Upvotes: 1

Views: 2057

Answers (1)

Philipp Hancke
Philipp Hancke

Reputation: 17330

You can look at https://fippo.github.io/webrtc-dump-importer/ which I wrote to import the dump and plot graphs. The format exported by webrtc-internals is not specified and change at any time but the javascript implementation has worked for a couple of years now.

Plotting video quality largely depends on how you define that. The dump gives you just a lot of numbers.

Upvotes: 4

Related Questions