Questions tagged [movieplayer]

MoviePlayer is the informal name for class MPMoviePlayerController that manages the playback of a movie from a file or a network stream on iOS framework.

MoviePlayer is the informal name for class MPMoviePlayerController that manages the playback of a movie from a file or a network stream on iOS framework. It must not be confused with MediaPlayer on Android (android.media.MediaPlayer) which has same functionalities but on different mobile OS.

43 questions
16
votes
8 answers

Skip to Previous AVPlayerItem on AVQueuePlayer / Play selected Item from queue

I am playing a Tv-show that has been sliced to different chapters on my project using an AVQueuePlayer. I also want to offer the possibility to skip to the previous/next chapter or to select a different chapter on the fly, while the AVQueuePlayer is…
Amandir
  • 679
  • 1
  • 7
  • 20
10
votes
1 answer

Is it possible to play a video on iPhone and have a subtitles synchronized with it show up?

I want to add a "subtitles" to a video played in an iPhone app. I don't want those subtitles encoded into the video itself - ideally I'd love to have a view showing the video (with pause, play, volume and such standard controls) together with a view…
kender
  • 85,663
  • 26
  • 103
  • 145
8
votes
1 answer

Best way to repeat a scene in a video with MPMoviePlayerController in iOS 5?

I would like to reiterate several scenes from a video several times. In iOS 4, I could implement it already and it works. In iOS 5, the code no longer works the same way. Here's an example: Scene 1: Starts at 15 seconds to 30 seconds. Scene 1 is…
4
votes
1 answer

How to toggle between Play/Pause in MPRemoteCommandCenter

I dont know how to toggle the play and pause button. I have tried TogglePlayPauseCommand. But it is not working.
Neha Gupta
  • 291
  • 2
  • 18
4
votes
1 answer

Webspell CMS Movie Player bug

I installed the Webspell template 4.2.3 on my website: www.insidious-horizon.de. I put in a movie, you can go on movies and play it by yourself. So the problem is that when I want to show it on the main page but on the bottom right on the site you…
oRxx
  • 53
  • 1
  • 5
3
votes
0 answers

How to catch the event the button "DONE" was pressed in a webplayer under iOS 4.3?

Apple has changed the behavior of the movie player under WebView in iOS 4.3. When I touch "DONE" button during the playing, it just zooms out and stays on the page. Previosly under iOS<=4.2 the player was closed with its own window. the I'd like to…
user669093
  • 37
  • 5
3
votes
1 answer

Android video intent: Control back button?

I'm working on an android application that plays video, by using an intent: tostart = new Intent(Intent.ACTION_VIEW); tostart.setDataAndType(Uri.parse(movieurl), "video/*"); startActivity(tostart); This works great. However, when you press the…
PanMan
  • 1,305
  • 1
  • 10
  • 16
3
votes
1 answer

Show controls in Movie Player when the movie is finished

I want to show movie player controls when the movie is finished, so I add observer to NSNotificationCenter : - (void)movieFinishedCallback:(NSNotification*)aNotification { // Obtain the reason why the movie playback finished NSNumber…
3
votes
2 answers

ios6 moviePlayer first frame not appearing upon creation

I have methods inside my open class controller that instantiates a moviePlayer, which is set to 'autoPlay = NO'; I have added the movieplayer.view as a subview of the controllers view, configured it and created a full screen button on top for…
jtingato
  • 71
  • 6
2
votes
1 answer

Play video from NSDocumentDirectory

i have a problem in my app i'm downloading a zip in my app and adding it on NSDocumentDirectory, this zip have some images and a movie. I can access and show all images, but i can't play the video if my video is on bundle directory i use this code…
Nathan Hegedus
  • 344
  • 6
  • 15
2
votes
1 answer

sample code MoviePlayer problem

i have post this question before but cannot get a answer so i post it again.is about the MoviePlayer sample download from iphone developer site, when i press the Done button come with the movie player control mode, the movie was finish and exit to…
issac
  • 1,501
  • 6
  • 22
  • 29
2
votes
1 answer

How to add an intro movie to my app?

I have a quicktime movie that I would like to appear when the user starts my app. How can I do this?
Blane Townsend
  • 2,888
  • 5
  • 41
  • 55
2
votes
1 answer

Frame Animation or Movie file for short interactive "movie" Android Application

In it's simplest explanation, I'm making a really small "interactive movie" app on Android. In a nut shell, when the app is loaded, it will play a short movie (maybe a few seconds at most @ 12-24fps). I will then have 2 buttons displayed on the…
justinl
  • 10,448
  • 21
  • 70
  • 88
2
votes
0 answers

Using an overlay view gestureRecognizer simultaneously with a MPMoviePlayerController

Currently I have a parent view with a gestureRecognizer on it, that recognises a tap and does some code (this works). There is a MoviePlayer inside a subview of this parent, and this now no longer recognises any gestures. How can I get both to work…
Alex Gurr
  • 503
  • 1
  • 6
  • 20
2
votes
0 answers

Multiple MPMoviePlayerViewController fullscreen movie init & switching issue - Fullscreen View doesn't autorotate and minor similar issues

This is my first post at SO. I would like to thank all of the SO users, their contribution have helped me a lot in all of my projects. I am new to the iPhone Application development scene. Aim of the project is to have a custom interactive User…
lal
  • 7,410
  • 7
  • 34
  • 45
1
2 3