The value arrays that you see under under each log item are the value that is gathered for that item for that second. So, for values[0] is the log information gathered for that category for the first second. So, match the ssrc with the one provided in the SDPs to get each ssrc's log information for each second. Explained further: This shows that there is no packet lost for ssrc 1814250626 and shows that there was zero packet loss for each second for the log period.
We can see from above that since it is an createOfferOnSuccess event, then we know that it is the local parties SDP. Following this we can see that local Audio is ssrc:1814250626 and local video is ssrc:477546681 . So, to get the stats on the local video, just grab each value array that begins with ssrc_477546681 . It also gives you the log start time and end time in that same json object. If they value stays the same in the value array (numerous of the same value):
3条答案
按热度按时间l2osamch1#
The value arrays that you see under under each log item are the value that is gathered for that item for that second. So, for
values[0]
is the log information gathered for that category for the first second. So, match the ssrc with the one provided in the SDPs to get each ssrc's log information for each second.Explained further:
This shows that there is no packet lost for ssrc
1814250626
and shows that there was zero packet loss for each second for the log period.We can compare the ssrc value against the SDPs that are exchanged to get who and what media type each source represents.
We can see from above that since it is an
createOfferOnSuccess
event, then we know that it is the local parties SDP. Following this we can see that local Audio isssrc:1814250626
and local video isssrc:477546681
. So, to get the stats on the local video, just grab each value array that begins withssrc_477546681
. It also gives you the log start time and end time in that same json object.If they value stays the same in the value array (numerous of the same value):
Then you can bet it did not change for each second during the log period.
iswrvxsc2#
将转储导入此工具以获得一些有用的交互式图形:
https://fippo.github.io/webrtc-dump-importer/
编辑:固定url
qq24tv8q3#
为了更好地分析数据,你可以使用谷歌webrtc团队的testRTC工具。一个简单的演示,如何分析数据在这个链接:https://testrtc.com/docs/analyze-webrtc-dump/