Embed Youtube videos :- with contains content from * , it is restricted from playback on certain site

后端 未结 3 1978
南方客
南方客 2020-12-16 03:40

How to embed a Youtube video that has copyrighted content in it.

For example when you try playing this video(http://www.youtube.com/embed/ADBKdSCbmiM) in a UI

相关标签:
3条回答
  • 2020-12-16 04:07

    To play the youtube video using uiwebview:

    1. First check if your youtube URL is played or not in browser. If the video doesn't play in the browser it won't play in the device either

    2. You only check in the device; the video doesn't play in simulator

      - (void) displayGoogleVideo
      
          {
      
          CGRect rect = [[UIScreen mainScreen] bounds];
      
          CGSize screenSize = rect.size;
      
          UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,screenSize.width,screenSize.height)];
      
          webView.autoresizesSubviews = YES;
      
          webView.autoresizingMask=(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);
      
          NSString *videoUrl = @"http://www.youtube.com/v/oHg5SJYRHA0"; // valid youtube url
      
      
          NSString *htmlString = [NSString stringWithFormat:@"<html><head><meta name = \"viewport\" content = \"initial-scale = 1.0, user-scalable = no, width = 212\"/></head><body style=\"background:#F00;margin-top:0px;margin-left:0px\"><div><object width=\"320\" height=\"480\"><param name=\"movie\" value=\"%@\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"%@\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"480\"></embed></object></div></body></html>",videoUrl,videoUrl]    ;
      
      
      
          [webView loadHTMLString:htmlString baseURL:[NSURL URLWithString:@"http://www.youtube.com"]];
      
      
          [window addSubview:webView];
      
          [webView release]; 
      
      }
      
    0 讨论(0)
  • 2020-12-16 04:12

    If you're embedding on a mobile app, you need to set your Referer in your request header for the video. Otherwise, Youtube automatically blacklists you if your Referer field is left blank.

    I answered this in detail here. I was experiencing this myself and I fixed it in my case (iOS app using React Native). I can play Vevo, WMG, and all other restricted content now.

    0 讨论(0)
  • 2020-12-16 04:17

    You can use player vars while initializing youtube sdk:

    NSDictionary *playerVars = @{
                                 @"origin" : @"http://www.youtube.com",
                                 };
    [self.playerView loadWithVideoId:@"KOvoD1upTxM" playerVars:playerVars];
    

    Enjoy!

    0 讨论(0)
提交回复
热议问题