2

我正在尝试使用YTPlayer在 iOS App 中播放直播。

我使用简单的代码,只将“videoId”更改为“w-T2LJ_qLiw”,这是 YouTube 上的实时视频。

但是当视频加载时,应用程序将打开 Safari 并重定向到 URL,如下所示:

https://accounts.google.com/o/oauth2/postmessageRelay?parent=https%3A%2F%2Fwww.youtube.com#rpctoken=840721360&forcesecure=1

https://content.googleapis.com/static/proxy.html?jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.dPxK-DAj_pE.O%2Fm% 3D__features__%2Fam%3DAAQ%2Frt%3Dj%2Fd%3D1%2Frs%3DAItRSTN0fuoBkyFaoHWfzWWLct0BxZgQSQ#parent=https%3A%2F%2Fwww.youtube.com&rpctoken=2021820196

然后视频将加载并播放,但黑色块将显示“请稍候”。

如果视频不是“实时”的,则视频播放良好。

我昨天试过了,效果很好。YTPlayer怎么了?我需要通过代码控制视频的动作,例如播放、暂停、重新加载。
有什么我可以解决的吗?

4

2 回答 2

0

得到解决方案。

只需通过 modify 方法停止 App 跳出

- (BOOL)handleHttpNavigationToUrl:(NSURL *) url

来自 YTPlayerView.m。

更改为以下内容:

if (ytMatch || adMatch) {  
     return YES;  
  } else {  
//    [[UIApplication sharedApplication] openURL:url];  
//    return NO;  
      return YES;  
  }  

或清除此方法并只写

return YES

这种方式没有“请稍候...”显示。

于 2015-06-02T07:31:44.673 回答
0

尽管周义棠的解决方案可能有效,但它违反了 YouTube 的服务条款。handleHttpNavigationToUrl:在将用户带出 UIWebView 并进入 Safari 之前,我已经修改了检查这两个附加 URL 的方法。

这是我的工作解决方案:

// YTPlayerView.m

// ...

NSString static *const kYTPlayerOAuthRegexPattern = @"^http(s)://accounts.google.com/o/oauth2/(.*)$";
NSString static *const kYTPlayerStaticProxyRegexPattern = @"^https://content.googleapis.com/static/proxy.html(.*)$";

// ...

- (BOOL)handleHttpNavigationToUrl:(NSURL *) url {
  // Usually this means the user has clicked on the YouTube logo or an error message in the
  // player. Most URLs should open in the browser. The only http(s) URL that should open in this
  // UIWebView is the URL for the embed, which is of the format:
  //     http(s)://www.youtube.com/embed/[VIDEO ID]?[PARAMETERS]
  NSError *error = NULL;
  NSRegularExpression *ytRegex =
      [NSRegularExpression regularExpressionWithPattern:kYTPlayerEmbedUrlRegexPattern
                                                options:NSRegularExpressionCaseInsensitive
                                                  error:&error];
  NSTextCheckingResult *ytMatch =
      [ytRegex firstMatchInString:url.absoluteString
                        options:0
                          range:NSMakeRange(0, [url.absoluteString length])];

  NSRegularExpression *adRegex =
      [NSRegularExpression regularExpressionWithPattern:kYTPlayerAdUrlRegexPattern
                                                options:NSRegularExpressionCaseInsensitive
                                                  error:&error];
  NSTextCheckingResult *adMatch =
      [adRegex firstMatchInString:url.absoluteString
                        options:0
                          range:NSMakeRange(0, [url.absoluteString length])];

  NSRegularExpression *oauthRegex =
      [NSRegularExpression regularExpressionWithPattern:kYTPlayerOAuthRegexPattern
                                              options:NSRegularExpressionCaseInsensitive
                                                error:&error];
  NSTextCheckingResult *oauthMatch =
    [oauthRegex firstMatchInString:url.absoluteString
                           options:0
                             range:NSMakeRange(0, [url.absoluteString length])];

  NSRegularExpression *staticProxyRegex =
    [NSRegularExpression regularExpressionWithPattern:kYTPlayerStaticProxyRegexPattern
                                              options:NSRegularExpressionCaseInsensitive
                                                error:&error];
  NSTextCheckingResult *staticProxyMatch =
    [[staticProxyRegex firstMatchInString:url.absoluteString
                                  options:0
                                    range:NSMakeRange(0, [url.absoluteString length])];

  if (ytMatch || adMatch || oauthMatch || staticProxyMatch) {
    return YES;
  } else {
    [[UIApplication sharedApplication] openURL:url];
    return NO;
  }
}

我还在项目的 GitHub 上提出了此更改作为 PR #111

编辑 6/10/15:截至今天,此修改已合并到代码库中。

于 2015-06-02T13:54:15.847 回答