2

Possible Duplicate:
Play YouTube videos with MPMoviePlayerController instead of UIWebView

I use this code

-(void)viewDidLoad
{
    [super viewDidLoad];
    NSString *movieURL = @"http://www.youtube.com/watch?v=hH4sHqDEjSg";
    MPMoviePlayerViewController *moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:movieURL]];
    moviePlayer.moviePlayer.shouldAutoplay = YES;
    [self presentMoviePlayerViewControllerAnimated:moviePlayer];
    [moviePlayer release];
}

But It didn't work. I suggest this likg is wrong ? or there's something I miss.

So Could you help me or Guide me please : )

Community
  • 1
  • 1
crazyoxygen
  • 706
  • 1
  • 11
  • 28

1 Answers1

1
- (void)viewDidLoad {

[self embedYouTube:@"http://www.youtube.com/watch?v=1Xqn5IHbusA" frame:CGRectMake(65,37,45,45)];


- (void)embedYouTube:(NSString *)urlString frame:(CGRect)frame {

 NSString *embedHTML = @"\
    <html><head>\
    <style type=\"text/css\">\
    body {\
    background-color: transparent;\
    color: white;\
    }\
    </style>\
    </head><body style=\"margin:0\">\
    <embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
    width=\"%0.0f\" height=\"%0.0f\"></embed>\
    </body></html>";

NSString *html = [NSString stringWithFormat:embedHTML, urlString, frame.size.width, frame.size.height];

UIWebView *videoView = [[UIWebView alloc] initWithFrame:frame];

 [videoView loadHTMLString:html baseURL:nil];

 [self.view addSubview:videoView];

 [videoView release];
}

MPMoviePlayerViewController not playing youtube vidoes we have to use embeded code i used and its works fine.youtube videos not run on simulator try in on device

Andrei Sfat
  • 7,270
  • 4
  • 37
  • 64
Saad Ur Rehman
  • 778
  • 1
  • 9
  • 19