<div dir="ltr">Hi,<div><br></div><div>The bandwidth computation in the HTML5 JavaScript client in file html5/verto/js/src/jquery.jsonrpcclient.js, is :</div><div><br></div><div>var up_kps = (((this.speedBytes * 8) / (this.up_dur / 1000)) / 1024).toFixed(0);</div><div>var down_kps = (((this.speedBytes * 8) / (this.down_dur / 1000)) / 1024).toFixed(0);</div><div><p class="gmail-p1">this.speedBytes being the total number of transferred bytes, converted to bits after *8, I was wondering if the total shouldn't be divided by 1000 rather than 1024 in order to get a a result in kbits/s, that is :<br></p><p class="gmail-p1">var up_kps = (((this.speedBytes * 8) / (this.up_dur / 1000)) / 1000).toFixed(0);<br>var down_kps = (((this.speedBytes * 8) / (this.down_dur / 1000)) / 1000).toFixed(0);<br></p><p class="gmail-p1">Am I missing something here ? Thanks !</p></div><div><div><div class="gmail_signature">Philippe</div></div>
</div></div>