如何测量 iOS Safari 上的页面加载时间?

发布于 2024-12-21 04:59:30 字数 786 浏览 2 评论 0原文

我正在关注这些页面,将视频文件直播到我的 iPhone。

https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/UsingHTTPLiveStreaming/UsingHTTPLiveStreaming.html#//apple_ref/doc/uid/TP40008332-CH102-SW1

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.

https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/UsingHTTPLiveStreaming/UsingHTTPLiveStreaming.html#//apple_ref/doc/uid/TP40008332-CH102-SW1

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 技术交流群。

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

发布评论

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

评论(1

×纯※雪 2024-12-28 04:59:30

您可以利用 UIWebView 委托并测量加载开始到停止的时间。

-(void)webViewDidStartLoad:(UIWebView *)webView;
-(void)webViewDidFinishLoad:(UIWebView *)webView;

You can utilize the UIWebView delegates and measure the time when the load starts, to when it stops.

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