Top "Mpmovieplayercontroller" questions

A movie player (of type MPMoviePlayerController) manages the playback of a movie from a file or a network stream.

MPMoviewPlayerController fullscreen playback rotation with underlying UIViewController with portrait mode only (rotation disallowed)

Hallo, I have a simple application, which does contain UITabBarController with two UIViewControllers. Both UIViewControllers are portrait only (no rotation …

iphone cocoa-touch uitabbarcontroller rotation mpmovieplayercontroller
How to mute/unmute audio when playing video using MPMoviePlayerController?

I've created my own custom controls for use with the MPMoviePlayerController. So far everything works except the mute button control. …

ios ios6 mpmovieplayercontroller avaudiosession mute
Forcing landscape orientation on fullscreen MPMoviePlayerController prevents correct rotation when exiting fullscreen

I have an iPhone application (iOS6+) that supports all interface orientations. However, only landscape orientation should be supported when an …

ios iphone objective-c mpmovieplayercontroller uiinterfaceorientation
Emulating splash video in iOS application

OK, there are very few options to emulate the splash video in iOS. All we can do is wait till …

iphone ipad mpmovieplayercontroller splash-screen
MPMoviePlayerController's view does not recognize touch

This is my code: _mediaPlayer = [[MPMoviePlayerController alloc] init]; _mediaPlayer.controlStyle = MPMovieControlStyleNone; _mediaPlayer.shouldAutoplay = NO; [_mediaPlayer.view setFrame: CGRectMake(5, 5, 600,400)]; [playerHolder addSubview: _…

ios ipad mpmovieplayercontroller uigesturerecognizer
MPMoviePlayerController stops playing after a few seconds

MPMoviePlayerController stops playing after a few seconds, this is the code I'm using: NSString *urlAddress = @"http://67.159.28.74:8730"; NSURL *url = [NSURL URLWithString:…

iphone objective-c ios xcode mpmovieplayercontroller
How to play video from NSData

I would like to know if it's possible to play a video from an NSData object... with the MPMoviePlayerController.

mpmovieplayercontroller nsdata playback
MPMoviePlayerController gives me a black empty view,no video playing

iOS 5.1 ,here is the code: MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL: [NSURL URLWithString:@"map.mp4"]]; [player prepareToPlay]; [player.view setFrame: self.…

ios mpmovieplayercontroller
MPMoviePlayerController rotating in full screen while the parent View Controller only supports portrait orientation

this question is only one part of my problem. I am implementing iOS6 rotation and orientation support for my existing …

iphone objective-c ios ios6 mpmovieplayercontroller
How to get an error description when playback fails on MPMoviePlayerController

I want to show an UIAlert if the Video-Play fails. So i registered the MPMoviePlayerPlaybackDidFinishNotification for my Movie Player: [[NSNotificationCenter …

ios objective-c mpmovieplayercontroller