2011-12-15 69 views
2

我正在關注這些頁面,將視頻文件直播到我的iPhone。如何測量iPhone Safari上的頁面加載時間?

http://developer.apple.com/library/ios/#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文件,使用視頻標籤指出.m3u8播放文件。現在我需要測量.m3u8文件和.ts文件加載時間(以毫秒爲單位)。

任何人有任何線索?提前致謝。

+0

這個早期的線程呢? http://stackoverflow.com/questions/7210811/ios-measuring-web-page-loading-time – 2011-12-15 02:00:10

回答

0

您可以利用UIWebView代表並測量加載開始時間和停止時間。

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