Questions tagged [mpmoviewcontroller]

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

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 an MPMoviePlayerViewController object to manage the presentation for you.

By the way the tag should be 'mpmoviecontroller' without that extra 'w'. I have no privileges to edit it or create a synonym. Can some one with the privilege correct it.

57 questions
0
votes
1 answer

radio streaming without MPMoviePlayerController

i am currently doing a small radio shoutcast for android and ios with kony. everything is fine with android but for ios, i am creating a library to play the shoutcast. Unfortunatly, it seems that the player of MPMoviePlayerController need to be…
0
votes
1 answer

MPMovieplayerVideoController playing after changing view

I am playing video using MPMoviePlayerController in my view play and pause and stop working correctly but when I change the view (also in diddisapear remove the player) video playing after some second (2 or 3 sec.) , how it is possible ??
Mitul Bhadeshiya
  • 1,280
  • 1
  • 12
  • 32
0
votes
1 answer

rotation of video hide videocontroller

when i rotate a video from portrait to landscape then it opens in landscpae mode perfectly but hide video controller bar. code which i am using : -(void) readyPlayer { mp = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL…
nitin tyagi
  • 1,176
  • 1
  • 19
  • 52
0
votes
1 answer

MPMoviePlayerViewController in all orientations

i am working on an application and my app support only portrait orientation. Supported orientation : Now i am using a MPMoviePlayerViewController inside a viewController . Now there is a need to display Video both in landscape and portrait mode.…
nitin tyagi
  • 1,176
  • 1
  • 19
  • 52
0
votes
2 answers

MPMoviePlayerPlaybackDidFinishNotification is not calling back

I have a scenario where the notifications for MPMoviewPlayerController are not being called. Please check the below code and let me know the issue: - (void)playVideo:(nsstring *)filePath onController:(UIViewController *)controller…
Vijay
  • 71
  • 1
  • 2
  • 11
0
votes
0 answers

Black screen iOS MPMoviePlayerViewController?

My problem is the following: managing properly the app states. I have several xibs implementing MPMoviePlayerViewcontroller. The light (that weight around 100kb) looping videos autoplay when the app comes back to the foreground (I've already handled…
0
votes
2 answers

Play Streaming Video in iPhone

i am trying to play video in my app by live streaming using MPMoviewPlayerController its work fine for those videos which are saved in my bundle but its not working for live streaming i am using this //for Bundle Video NSString *urlStr =…
Muzamil Hassan
  • 841
  • 1
  • 11
  • 23
0
votes
1 answer

MPMoviePlayerViewController not playing

I'll keep it simple, heres the code: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath VideoEntry *entry = [videoEntries objectAtIndex:indexPath.row]; [HCYoutubeParser h264videosWithYoutubeURL:[NSURL…
0
votes
1 answer

Playing a video in UIView( subview )

Is it possible to play the video in uiview's subview (popup) on the same screen only not by using the iPhone video player which player the video in full screen mode. Any help would be appreciated. Thanks,
Ronak
  • 974
  • 6
  • 14
0
votes
1 answer

how to control MPMoviePlayerController play time?

I am working on an app which uses MPMoviePlayerController for playing a video. Now in that I am using custom view for displaying player controllers.. I have used slider for showing the amount of duration passed for video.. now if I want to play back…
Shreya
  • 198
  • 1
  • 12
-1
votes
2 answers

MPMovieController won't dismiss on Done button

My movie file starts no problem. The done button does not dismiss the video content. No idea why? Also, Fast Forward and Rewind buttons just cause a black screen. I don't think I am using the notification functions correctly? import…
Ben Thomas
  • 105
  • 2
  • 12
-1
votes
2 answers

Video is not playing from URL

I have video uploaded in server url and pass the URL to MPMoviePlayerController to play the video automatically but the video is not playing and I'm getting black page. When I using the local video then it's playing. NSURL *fileURL = [NSURL…
1 2 3
4