我已经通过在我的LocalHost上托管.m3u8和.ts文件来尝试我的代码。我想在iOS中显示Youtube视频,Is Youtube使用HTTP直播,以便这可能吗?有什么想法吗?
请帮忙!
答案 0 :(得分:0)
试试这段代码:
- (void)embedYouTube {
videoHTML = [NSString stringWithFormat:@"\
<html>\
<head>\
<style type=\"text/css\">\
iframe {position:absolute; top:50%%; margin-top:-130px;}\
body {background-color:#000; margin:0;}\
</style>\
</head>\
<body>\
<iframe width=\"100%%\" height=\"240px\" src=\"%@\" frameborder=\"0\" allowfullscreen> </iframe>\
</body>\
</html>", videoURL];
[webView loadHTMLString:videoHTML baseURL:nil];
}
videoURL
是视频的YouTube链接。