Reputation: 4045
Is there any alternative frameworks for AVFoundation to play video file? I have a problem with AVFoundation which is described in following topic.
Upvotes: 1
Views: 340
Reputation: 2550
There are two different video players in the iOS frameworks: MPMoviePlayerController and AVPlayer.
If MPMoviePlayerController is not working for what you want, try AVPlayer. It has less features, but it's easy to use.
Here is the guide: http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/02_Playback.html
Upvotes: 1