標籤:http sp for on 檔案 資料 bs 代碼 ad
首先要下載streamingtools_beta173_signed.dmg並進行安裝
然後再終端,進入要切割的檔案的檔案夾,輸入mediafilesegmenter -f 要儲存的檔案名稱/要切割的檔案名稱
切割完後--要儲存的檔案-裡會有一大推檔案其中.m3u8就是我們要載入的,把切割好的整個檔案夾放到我們的本機伺服器裡然後可以用html的格式進行即時播放html格式為
<html>
<head>
<title>HTTP Live Streaming Example</title>
</head>
<body>
<video src="http://127.0.0.1/stream/hls/prog_index.m3u8"
width="300" height="300" controls="controls" >
</video>
</body>
</html>
/stream/hls/是檔案夾名字prog_index.m3u8是要播放的整個檔案
我們在工程輸入這麼一行代碼就行
- (void)viewDidLoad
{
[super viewDidLoad];
self.webView.scrollView.scrollEnabled = NO;
NSString *htmlPath = [[NSBundle mainBundle] pathForResource:@"video" ofType:@"html"];
NSURL *bundleUrl = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
NSError *error = nil;
NSString *html = [[NSString alloc] initWithContentsOfFile:htmlPath encoding: NSUTF8StringEncoding error:&error];
if (error == nil) {//資料載入沒有錯誤情況下
[self.webView loadHTMLString:html baseURL:bundleUrl];
}
}
流媒體,本地視頻切割