A movie player (of type MPMoviePlayerController) manages the playback of a movie from a file or a network stream. Playback occurs in a view owned by the movie player and takes place either fullscreen or inline. You can incorporate a movie player’s view into a view hierarchy owned by your app, or use ...
0
votes
0answers
14 views
How to Add UIViewController from UVIew with orientation management
I'm creating my custom MPMoviePlayer.
For full screen management, the MPMoviePlayerController behaves this way :
- (void)setFullscreen:(BOOL)fullscreen animated:(BOOL)animated;
I would like to do ...
0
votes
0answers
14 views
MPMoviePlayer is black, video doesn't play in an iOS 6 app when built for iOS 5 device. How to make backwards compatible?
K, so i have an app in the store, built w/ Xcode 4.6 for iOS 6 devices. I am trying to make it backwards compatible w/ iOS 5.
So first, i downloaded the various old simulators (including iPhone 5.0 ...
0
votes
1answer
31 views
MPMoviePlayerController black screen when app enter foreground from background
I'm using an MPMoviePlayerController for playing video in my iPhone app.
When MPMoviePlayerController is playing, press home button on iPhone, make the app enter background.
Then tap the app's icon ...
0
votes
0answers
13 views
MPMovieController control bar not responding
I'm making an iPad version of an app I've already made for iPhone, which means I know this code has worked. I am using self.bounds instead of a static value, so the size to is accordig to the docs.
...
0
votes
2answers
35 views
Crash when Running MPMoviePlayerController
Ive been battling with a crash on my exercise app for the past couple of days when I try and play an instance of an MPMoviePlayerController in a UIView created in IB.
The rest of the app runs fine, ...
0
votes
0answers
11 views
iOS: video playback from server without mp4 extension
I want to playback a mp4/h264 encoded video stream from a remote webserver on iOS. The problem is that the file on the remote server does not have a standard extension like "mp4" and the server also ...
0
votes
0answers
25 views
How to play videos, from an array, in MPMoviePlayerController for iOS 6, using NSThreads or NSOperationQueue?
//This MutableArray, has the file name, which the app will pick, from the Bundle.
arrayFileName=[[NSMutableArray alloc]initWithObjects:@"titanic", @"DummyName", @"Dinosaur",@"DummyName",@"titanic", ...
0
votes
1answer
23 views
MPMoviePlayerController view under another view
If I do this:
self.productVideo = [[MPMoviePlayerController alloc] initWithContentURL:movieClip];
self.productVideo.controlStyle = MPMovieControlStyleNone;
self.productVideo.shouldAutoplay = YES;
...
2
votes
0answers
28 views
Playback of a video stored on Camera Roll?
I'm having trouble trying to playback a video stored on an iOS device's camera roll.
This is an Adobe AIR app, using two air native extensions (ANE):
one extension for picking media (images and ...
0
votes
0answers
32 views
How do i run my video on scrollview by using paging mode?
I want to run my video that is longer than the iphone screen,so I need to use paging mode of scrollview to separate it to 3 part.
I did something like this:
scrollView = [[UIScrollView alloc] ...
-4
votes
0answers
32 views
How To Customise MPMoviePlayer? [closed]
i want to customise mpMoviePlayer, can anyone tell me step by step procedure & if in the custom class, i should subclass it from MPMoviePlayerController or MPMoviePlayerViewController ?
Thanks in ...
0
votes
0answers
29 views
Capture image from online live video stream, playing by MPMoviePlayerController
I want to capture a image or extract a image frame from online video stream played by MPMoviePlayerController. I tried this method
- (UIImage *)thumbnailImageAtTime:(NSTimeInterval)playbackTime ...
0
votes
0answers
27 views
setting currentPlaybackTime trouble
I have a problem with MPMoviePlayerController. I listen for PlaybackEnd notification to show overlay with extra buttons and stuff. This part work excelent. But there is also a replay button, that ...
1
vote
1answer
39 views
Objective C - MPMoviePlayerController cuts out
So im trying to play a movie like this:
- (void)viewDidLoad {
[super viewDidLoad];
vidLocation=[[NSURL alloc] initWithString:@"http://cdn.webwaterfalls.com/uni/introNew2.mp4"];
UIView * ...
0
votes
0answers
37 views
MPMoviePlayerController stream
I have a video "movie.mov". When I try to read from my Xcode project with MPMoviePlayerController, it works perfectly. When I try to read from the url ...
0
votes
1answer
29 views
how can I request thumbnailImage from MPMoviePlayController while slider
I have a custom UISider control, i send requestThumbnailImagesAtTimes to MPMoviePlayerController when i slider the control.
- (void)sliderPopoverView:(UISlider*)slider
{
self.currentSliderValue = ...
0
votes
0answers
17 views
Cache Video while loading
I tried to search both on the site and google, but I could not find anything.
I want to save the MPMoviePlayerController cache of a video stream.
I tried with different libraries like ASIHttpRequest ...
0
votes
1answer
34 views
Cant play MPMoviePlayerController and record via AVAudioRecorder at the same time?
I am trying to play a video in a small area of the screen and record the user's singing at the same time. however it seems the recording is not successful.
i have added some code for you to point out ...
0
votes
1answer
20 views
Blend MPMovieplayerController in background UIImageView
As the title says, I was trying make so that the corners of my MPMovieplayerController go underneath my UIView background image, but I don't know how to obtain this effect. The effect I would like to ...
0
votes
0answers
13 views
Interface is resetting when MPMoviePlayerController is used
the code below is for a hint button within a game. This button will then play the video content from the fileURL. However, when the video content plays the users' answers move back to their original ...
0
votes
3answers
43 views
MPMoviePlayerViewController not playing video or displaying controls
Here's my code that should be playing a video embedded in a subview, but it only displays a still image with no controls.
- (void)displayVideo:(NSURL *)videoURL
{
if (self.mediaPlayer) {
...
0
votes
2answers
47 views
how to provide only one view with landscape for MPMoviePlayerController in IOS6
i had spend 2 hours finding the correct code to fix my orientation problem
this are my movieplayer code. i need this particular view to be shown in landscape.
in appdelegate i set all orientation and ...
0
votes
1answer
18 views
MPMoviePlayerController shows blank screen or crashes app
I have a UIViewController subclass called videoPlayerViewController.
In storyboard I dragged out a UIViewController. I set the class correctly in Storyboard.
I put a button on the screen. When I click ...
0
votes
0answers
28 views
MPMoviePlayerController color palette different on iPad than simulator? [closed]
I've added a MPMoviePlayerController to a view and autoplaying a movie. The background color of the parent view has been set to match the video background. In the simulator it looks perfect, the ...
1
vote
1answer
35 views
MPMoviePlayerController audio not playing on device but plays on simulator [closed]
I have an MPMoviePlayerController in my iOS app that streams a video from Amazon S3. The video plays fine, but it seems that on a device (I tested with iOS 6, not sure about others), the audio doesn't ...
0
votes
0answers
10 views
Weird MoviePlayer present modal view
I have a list of movies from youtube which I present on a table.
By pressing on the cell the app present the MPMoviePlayer.
The only problem is that I see the top of the modal view behind the ...
0
votes
0answers
31 views
Show video thumbnails while dragging progress bar on a video [closed]
Wondering how the likes of Netflix and other video streaming apps accomplish the following... when the video loads, a user can take the progress bar and while its being moved, it can display certain ...
1
vote
1answer
54 views
Multiple video playing issue in UITableViewCell
In my app I am trying to play multiple videos in UITableViewCell for this I am using MPMoviePlayerController it plays the video without any issue. but it play one video at a time and in other cell I ...
0
votes
0answers
36 views
How can we mute MPMoviePlayerController when earphones connected
Possible duplicate of How to turn off audio in MPMoviePlayerController iPhone and Detect if headphones (not microphone) are plugged in to an iOs device
I have an application, where i am playing a ...
-2
votes
0answers
39 views
Stream video from NSURL
How can I stream a video from NSURL ?
I have been using MPMoviePlayerController.
NSString *namePhoto = [photos objectForKey:@"src"];
NSURL *url = [NSURL URLWithString:namePhoto];
NSDictionary ...
0
votes
1answer
38 views
ios - Recording Audio After VIdeo play
I can't record audio after playing a video, if I record before playing the video no problem but then I have to close the application to record again.
I can't record audio after playing a video, if I ...
1
vote
2answers
83 views
ios MPMoviePlayerController can't play local files on simulator
I'm new here. I'm already 2 days browsing for solutions, but unhappy.
Here is my code:
NSString *docPath = [NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES) ...
0
votes
0answers
20 views
to play a specific video from photo library in ipad using objective C
I am trying to develop an application in which ,I have to play a specific video from photo Library within iPad using objective C.
I have written the code for playing videos from photo Library and ...
0
votes
3answers
76 views
resume MPMoviePlayerViewController after ending phone call
I am developing an iphone app in which I am playing streaming audio by using MPMoviePlayerViewController. Using following code, it works fine.
moviePlayerController = [[MPMoviePlayerViewController ...
0
votes
0answers
55 views
MPMoviePlayerController: currentPlaybackTime doesn't work in iOS6
I am using the MPMoviePlayerController to play video content in my iOS app. The currentPlaybackTime value is coming back as 0 on devices with iOS6 (an iPad and an iPad mini). The value is coming back ...
1
vote
0answers
34 views
MPMoviePlayerController setCurrentPlaybackRate not working under 1.0 value (for slowmotion video)
I wanted to play the video 5 times slower (mp4 video, local file), to get slowmotion effect, but it simply does not work.
For values above 1.0, for example 2.0f, it works correctly, playing the video ...
0
votes
2answers
51 views
iOS video not playing with MPMoviePlayer
I'am making video player module for my app.
This is my .h file:
#import <UIKit/UIKit.h>
#import <MediaPlayer/MediaPlayer.h>
@interface SpanishViewController : UIViewController
- ...
0
votes
2answers
32 views
iOS play movie in CGRect
I am trying to add an intro video into my iOS app. I want the video to play with no controls and in a box I create for it. but am not sure how to do that. It is also not playing at the correct size it ...
0
votes
0answers
39 views
iPad will not play video after the splash screen, from app delegate. Works on all other devices. iOS 6
I have everything finished on my app, but am having trouble with the final touches of adding video to the app delegate in order to play a short (1 second) video after the splash screen. I have ...
0
votes
1answer
65 views
Video streaming stops buffering playing in iPad
I am playing a video from URL in my MPMovie player but after some time buffering stops and do not start again. Code to play movie is given below
NSURL *fileURL = [NSURL URLWithString:strURL];
...
0
votes
0answers
206 views
iPad 2 and 4 not mirroring/outputting video via HDMI to full screen
I am encountering an issue which I believe is caused, as a result of upgrading to iOS version 6 on my iPad2 and iPad4. I have searched the support boards but have not found a solution to this issue. ...
0
votes
0answers
28 views
MPMovieplayerController crash
I have inserted into my application two videos with moviePlayerController but when I run my application on iPad 2 and I start the second video my application crashes.
I have inserted videos into the ...
0
votes
0answers
24 views
Modal MPMoviePlayerViewController dismissing with a wrong animation
I'm currently having trouble with a MPMoviePlayerViewController.
- (void)playVideo:(UIButton *)sender {
MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] ...
0
votes
1answer
43 views
Possible to view an MPMoviePlayerController within a UICollectionView?
I'm trying to build a UICollectionView in which each cell holds an MPMoviePlayerController with a different video. I want the user to be able to play each video in place.
I know that you can't play ...
0
votes
1answer
63 views
iOS - MPMoviePlayerController failing to play video from remote URL
So I have a video being accessed by filepicker.io that is attempting to be played with an MPMoviePlayerController. So far I've tried everything from trying to load the video directly from the ...
0
votes
0answers
65 views
How to stream large mp3's and videos via iOS in MPMoviePlayerController
I know Apple rejects apps that pull too much data/min. I have read several articles like this one Here however I don't think I fully understand.
We have some 300mb+ mp3's that are radio shows, etc. ...
0
votes
0answers
15 views
Remove icon fullscreen movie MoviePlayerController
I have a MoviePlayerControllor that I display the control bar.
I'd you like remove the fullscreen button from control bar, How can I do? It's possible?
Thanks
0
votes
0answers
20 views
Error warning and app quitting using MPMoviePlayerController
I am building an app which plays videos and don't want the user to have any video controls and also want the app to automatically return to the previous screen when video playback has finished.
...
0
votes
1answer
61 views
Cloning an instance of a MPMoviePlayer
I know that you can have one instance of MPMoviePlayer at a time in screen, but i successfully implemented a tableview with cells as big as screen bounds with reference to a single instance of a ...
0
votes
1answer
75 views
Playing mp3 and mp4 file using MPMoviePlayerController
I have mp3 and mp4 dat in url. I tried to play that in my ViewController so, i have created two players
audioPlayer = [[MPMoviePlayerController alloc]init];
videoPlayer = [[MPMoviePlayerController ...




