I’m interested in creating an iPhone app that can stream video from a central server, YouTube style. I was wondering if anyone has ever tried to do this before, what is the path of least resistant, existing APIs, etc? I really know nothing about how this is generally done. Would I be working with sockets? Just looking for some direction here. Thanks!
Share
If you have the streaming server up and ready, it is quite easy to implement a video controller that pops up youtube-style.
You need to handle the controller that display the video player’s view (which is
selfin this case).In iOS 3.2+ MPMoviePlayerViewController make it even easier:
presentMoviePlayerViewControllerAnimatedis a MediaPlayer’s additional method toFWViewControllerthat you will find in iOS 3.2+ and it takes care of creating a view controller and pushing it on the stack, animating it with a slide-from-bottom animation, as in youtube.app.