mpmovieplayer

Taking video from video camera and displaying it with MPMoviePlayerController IPhone SDK

Has anyone tried taking a video from the camera and then using the video player provided to play it? When you take the video in portrait mode, sometimes the movie will play (when the player puts it in landscape mode) and when it puts it in portrait mode you cannot view the movie all you hear is sound,sometimes in landscape mode is flicke...

Play a downloaded Video in System bundle

Hi all, Im trying to download a video/audio on iphone and store in iPhone system bundle, and play the video/audio file from bundle. I have successfully downloaded the video/audio file using NSURLConnection. and i have store it as "sample.mov" but i wasn't able to play the video from bundle. is it because the file was not registered in...

MPMoviePlayerController with a Custom Button on it's toolbar

You might have seen video through you tube in iPhone. Normal MPMoviePlayerController has previous, next & play/pause buttons. You tube - player has additional two buttons on it. => Add to favorites on the left side. => Email this video on right side. I want to implement the same for my application. But I am failed to find out the p...

customize quicktime iphone.

Did anyone tried to customize the window in which the quicktime is playing video? If so, can you give me a hint hoe to start implementing something like this. Thank you indeed. UPDATE: Some apps have implemented it. See it here. ...

iPhone MPMoviePlayer hide movie Control

hi i want hide movie control (Play - next - volume and ..)from MPMoviePlayer ... what can i do ? ...

How can i hide MPMoviePlayer controls?

Hi ... i want put a movie at my application starting but i want hide the movie controls like (stop , play , next and ... ) here is my code : #import <MediaPlayer/MediaPlayer.h> -(void)viewDidLoad { NSBundle *bundle = [NSBundle mainBundle]; NSString *moviePath = [bundle pathForResource:@"myvideo" ofType:@"mp4"]; NSUR...

MPVideoPlayer add/remove buttons.

Hi everyone! Does anyone knows how to add/remove buttons from the MPVideoPlayer window? I put bellow an example form an app that does that. It is in App Store which means that it is allowed by Apple. Thank you in advance. UPDATE I think that the main way to do it is just by obtaining the UITabBarController of the MPVideoPlayer window...

Showing UIImageView in MPMoviePlayer

Hi All, Can anybody help in me out of how to show a UIImageView having Image of a border to be displayed around the Video Playing in MPMoviePlayer. ...

iPhone MPMoviePlayer obtain buttons view.

Can anyone suggest me how to obtain the view that contains all buttons from 'MPMoviePlayer'? If you don't know, at least how you obtain the main view/window of the MPMoviePlayer. UPDATE: I need to do this to add a button on the controller view. It would look something like this: Thanks in advance! ...

IPHONE MPMoviePlayer: Playing video under button layers that can be interacted with while video plays??

I would like to have layers of buttons over video playing in the background on my IPHONE application. Basically, I'm looking to adjust the Movie Player code, in order to allow the application user to tap on different portions of the screen while a video plays and call other commands (for example a video of puppets talking, if you touch o...

strange MPMoviePlayer problem

I am using mpmovieplayer in my application.I have a button for playing movie witch has an image of play.But when mpmovieplayer plays movie i can see that button on movie player's overlying controlls like when i pause movie i see my play button instead of movie player's default button.Also i have customized navigation bar and i can see th...

i cannot see movie playing in iphone simulator

Hi, i have created a application that plays movie on button click..my application is running without any warning or error. But i am not able to see the movie don't know why? I have added the Media player framework and also imported the #import in viewController.h my button action code is as follow... -(IBAction)playMyMovie:(id)sender{ ...

Buffer, switch and loop playback of videos within an iPhone application to simulate a non-stop video feeds

I am not an iPhone developer (yet). So please excuse me if this issue is very basic question. From what I can gather from the development documentation, it is only possible to 'play' one video file at a time. The requirement I have is to switch from 1 video to another seamlessly or switch to a 2nd instance of the first video and keep '...

custom view on iphone's native media player(MPMoviePlayerController)

I am building an application that implements a custom view on iPhone’s native media player. I want your help in deciding directions to lay this effort. At present I have find out that iPhone SDK doesn’t support APIs to customize media player. I need these things in the player: I would like to have custom views i.e. want to change all ...

MPMoviePlayerController play video second time

I need to have the possibility to play more than one video in an app. Unfortunately, the second time I press play, video appears blinking. I use only this code for playing vide NSURL *url = [[[NSURL alloc]initFileURLWithPath:[[NSBundle mainBundle]pathForResource:@"Movie" ofType:@"m4v"]] autorelease]; MPMoviePlayerController *...

Movie Player shows Default.png image in background while loading (OS 3.1.2)

Hi, I'm using MPMoviePlayerController to stream audio/video files from a servrer. It works great on all other OS versions. However, on 3.1.2, it shows the Default.png image (used to display at app splash screen) in the background while the movie loads. It only happens for the first time and the player works fine (no image in background)...

MPMovie player how to get the amount of time played??

I was trying to go through the iPhone's sample code for mediaplayer. I want to be able to capture the amount of time the media player has played the video. The duration at which the media player has stopped. Is there a method or property that will tell me the duration of play of the media?? ...

Using MPMoviePlayerViewController in SDK 3.2 for iPad

I've developed an iPhone app that has been running MPMoviePlayer (pre 3.2 SDK) with no problems. I know this is a newbie question, but how do I get a movie to play in the new MPMoviePlayerViewController. I am only getting audio and wish to learn the new view controller. I've ported my whole app over to iPad and everything else works f...

mpmovieplayer - can I do an end run?

I would like to be able to display a video on the iphone screen - preferably in a view so that I can control its display coordinates. I want to be able to load the view and overlap and partially overlap a subview ... is any of this feasible? I have read that mpmovieplayer is the only method for video display (and is full screen)? Any...

iphone movie player overlay view problem

can anyone tell me how to add overlay view without using IB to streaming video.. I tried a lot and overlay view is not working. plz help .its urgent ...