Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a youtube videos player which can play a list of youtube video ( given a list of video id). I embedded youtube video into a UIWebview as following:

NSString *htmlFormat = @"<html><head><body style=\"margin:0\"><embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" width=\"40\" height=\"30\"></embed></body></html>";
NSString *url = [NSString stringWithFormat:@"http://www.youtube.com/watch?v=%@", videoId];
NSString *html = [NSString stringWithFormat:htmlFormat, url];
[webView loadHTMLString:html baseURL:nil];

What i need are:

  • Next video is played automatically when player finishes playing current one.
  • Next video is played when user tap next button in players' control panel
  • Stop playing list if user tap 'Done' button.

My approach is handling events that may be sent out when player finish playing, users tap control buttons, so i can modify html content to load other videos.

My question are:

  1. Is there better way to play a list of youtube video given a list of video ids?

  2. How to handle such those events?

I found some solutions that suggest handle notification UIMoviePlayerControllerDidExitFullscreenNotification and UIMoviePlayerControllerDidEnterFullscreenNotification, but I can not distinguish between control buttons' events and finish playing event (movie player controller exits fullscreen mode in all the cases). Some suggest using HTML <video> tag, but i dont think it possible.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.