我已经通过在我的 LocalHost 上托管 .m3u8 和 .ts 文件来尝试我的代码,它工作正常。我想在 iOS 中显示一个 Youtube 视频,Youtube 是否使用 HTTP 直播,这样可以吗?任何想法?
请帮忙!
我已经通过在我的 LocalHost 上托管 .m3u8 和 .ts 文件来尝试我的代码,它工作正常。我想在 iOS 中显示一个 Youtube 视频,Youtube 是否使用 HTTP 直播,这样可以吗?任何想法?
请帮忙!
试试这个代码:
- (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 链接在哪里。
祝你好运!