有什么工具可以测量视频的渐进下载吗?
你能建议一个工具(基于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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ifconfig eth0
:确保浏览器是唯一正在运行的东西,并且测量应该非常准确。
还有其他工具,例如
lsof(8)
,但这些工具不能很好地与浏览器配合使用,因为浏览器无法保持连接打开,因此输出会发生变化一直如此,当连接关闭时您将丢失数据。或者您可以安装本地代理服务器(例如
squid
)并为其启用统计信息。ifconfig eth0
: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.