使用Youtube视频在iOS设备上进行HTTP直播

时间:2013-08-06 05:45:47

标签: ios http http-live-streaming

我已经通过在我的LocalHost上托管.m3u8和.ts文件来尝试我的代码。我想在iOS中显示Youtube视频,Is Youtube使用HTTP直播,以便这可能吗?有什么想法吗?

请帮忙!

1 个答案:

答案 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链接。

祝你好运!