如何测量 iOS Safari 上的页面加载时间?
我正在关注这些页面,将视频文件直播到我的 iPhone。
http://techblog.unwiredappeal.com/2010/ 03/vlc-http-live-streaming-module-patch.html
你知道:从mp4制作.ts和.m3u8文件,使用video标签指向.m3u8 播放文件。现在我需要测量 .m3u8 文件和 .ts 文件加载时间(以毫秒为单位)。
I am following these pages to live stream video files to my iPhone.
http://techblog.unwiredappeal.com/2010/03/vlc-http-live-streaming-module-patch.html
You know: from mp4 make .ts and .m3u8 file, use video tag pointed to .m3u8 to play the file. Now I need to measure the .m3u8 files and .ts files loading time (in millisecond).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以利用 UIWebView 委托并测量加载开始到停止的时间。
You can utilize the
UIWebView
delegates and measure the time when the load starts, to when it stops.