有什么工具可以测量视频的渐进下载吗?

发布于 2024-11-14 18:12:57 字数 87 浏览 3 评论 0原文

你能建议一个工具(基于Linux)来动态测量正在下载或缓冲的数据量吗 通过在浏览器 (Mozilla) 中播放的视频(渐进式下载,如 Youtube 视频)。

Can you suggest a tool(Linux based) to measure dynamically the amount of data being downloaded or buffered
by a video(progressive download like Youtube video) that is being played in a browser(Mozilla).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信仰 2024-11-21 18:12:57

ifconfig eth0

eth0  Link encap:Ethernet  HWaddr ...
      inet ...
      inet6 ...
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:9278084 errors:0 dropped:0 overruns:0 frame:0
      TX packets:4290251 errors:0 dropped:103 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:10351665680 (10.3 GB)  TX bytes:485621573 (485.6 MB)
      Interrupt:45 Base address:0xc000 

确保浏览器是唯一正在运行的东西,并且测量应该非常准确。

还有其他工具,例如 lsof(8),但这些工具不能很好地与浏览器配合使用,因为浏览器无法保持连接打开,因此输出会发生变化一直如此,当连接关闭时您将丢失数据。

或者您可以安装本地代理服务器(例如 squid)并为其启用统计信息。

ifconfig eth0:

eth0  Link encap:Ethernet  HWaddr ...
      inet ...
      inet6 ...
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:9278084 errors:0 dropped:0 overruns:0 frame:0
      TX packets:4290251 errors:0 dropped:103 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:10351665680 (10.3 GB)  TX bytes:485621573 (485.6 MB)
      Interrupt:45 Base address:0xc000 

Make sure that the browser is the only thing that's running and the measurement should be pretty accurate.

There are other tools like lsof(8) but those don't work well with browsers since the browser doesn't have to keep a connection open, so the output will change all the time and you'll lose data when the connection is closed.

Or you can install a local proxy server like squid and enable statistics for it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文