5

我真的需要你的帮助。在 iOS 应用程序上工作。我想玩youtube。我从阅读许多博客和帖子中了解到,我们需要使用 iframe 才能播放 youtube 视频。

但是,在某些视频中,我得到:“此视频包含来自 XYZ 的内容。它在某些网站上被限制播放。在 YouTube 上观看

我读了这个问题:iOS5 中的 Youtube - 完成按钮 Tapped,它提供了 youtube api 的链接:https ://developers.google.com/youtube/player_parameters 他们建议使用 iframe。
youtube 网站的示例是:

<iframe id="ytplayer" type="text/html" width="640" height="390"
  src="http://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&origin=http://example.com"
  frameborder="0"/>

我使用的代码:

<!DOCTYPE html>
<html>
<head>
<style>
* {
    border:0;
    margin:0;
    }
</style>
</head>
<body>
    <iframe webkit-playsinline id="player" type="text/html" width="320" height="180" src="http://www.youtube.com/embed/rEevIL1Wpcg?enablejsapi=1&playsinline=1&autoplay=1" frameborder="0">
    </iframe>
</body>
</html>

有人可以帮我理解吗?我检查了嵌入标志是否为真,它们都是允许在移动设备上播放的剪辑。

可在设备上运行的视频示例:

无法在设备上播放并显示错误消息的视频示例:

4

2 回答 2

6

您可以将 webview 用作 youtube 播放器

试试下面的代码它对我有用

在 .h 文件中

@property (strong, nonatomic) UIWebView *webView;

在你的 .m 文件中

    NSString *videoURL = @"http://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&origin=http://example.com";

// if your url is not in embed format or it is dynamic then you have to convert it in embed format.

    videoURL = [videoURL stringByReplacingOccurrencesOfString:@"watch?v=" withString:@"embed/"];

    NSRange range = [videoURLString rangeOfString:@"&"];
    @try {
         videoURLString = [videoURLString substringToIndex:range.location];
    }
    @catch (NSException *exception) {

    }

    // here your link is converted in embed format.

    NSString* embedHTML = [NSString stringWithFormat:@"\
    <html><head>\
    <style type=\"text/css\">\
    iframe {position:absolute; top:50%%; margin-top:-130px;}\
    body {\
        background-color: transparent;\
    color: white;\
    }\
    </style>\
    </head><body style=\"margin:0\">\
    <iframe width=\"100%%\" height=\"240px\" src=\"%@\" frameborder=\"0\" allowfullscreen></iframe>\
    </body></html>",videoURL];

    self.webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
    [self.view addSubview:self.webView];
    [self.webView loadHTMLString:embedHTML baseURL:nil];

在这里,您可以根据需要更改webview 框架,也可以更改videoUrl

于 2013-10-16T11:29:44.677 回答
4

有两个概念,可嵌入的和联合的。iOS 设备使用 iframe,因此它们基本上是嵌入的。使用播放器 API 的 Android 设备可以检查联合。

当您执行search->list时,您可以将videoEmbeddablevideoSyndicated设置为 true。

或者,如果您正在遍历视频,对于每个视频,您可以使用视频 ID 进行video->list调用并检查响应中的status.embeddable

这是一篇关于此主题的博客文章,尽管示例在 v2 中,但信息仍然是相关的。

于 2013-10-16T14:41:17.237 回答