Hello, I would like to calculate the mean opinion score using the Yamamoto Formula :
I can easily calculate packet loss ratio from packet capture. is there any way to get the duration of the missing segment from Wireshark/Tshark? asked 26 Aug '16, 11:57 Wirecod |
One Answer:
The paper you refer to describes missing segment duration the following way:
From such wording we can deduce that the case of loss of several adjacent RTP packets is not taken into account. So the task is to convert the packet size in bytes into the packet size in time domain (i.e. in milliseconds). There are several approaches to that:
The sample rate is normally stated in the SDP, but for some codecs there is a default one. You have to look to the SDP anyway as the translation of payload type number (as found in the RTP packet) to codec name is there; theoretically, even the well-known values like 0, 8, 18 may be overridden.
For variable bitrate codecs (like e.g. Opus), none of these methods is reliable, yet there the whole formula would give unreliable results - with these codecs, the impact of loss of a particular packet on MOS differs depending on the informational value of that packet. answered 27 Aug '16, 00:41 sindy edited 27 Aug '16, 00:47 |