Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently i am working on a iPhone Application Which is displaying video. I have used MPMoviePlayController to load the Video from the local folder.

Can we customize the Standard media player ? What i want to do is to hide all the standard elements (Play, Forward, Rewind, Done) and just to build the player with a single play button with a customized image . Can anybody help me ?

share|improve this question

1 Answer

up vote 6 down vote accepted

You can surely add custom controls for MPMoviePlayerController. For that first hide existing controls using, MPMovieControlStyle, set this to MPMovieControlStyleNone

Now add your custom control buttons and handle all the MoviePlayer events over there, like;

  • Play
  • Pause
  • Stop
  • Prev
  • Next, etc.
  • Or you can add your own controls like jump to this time (+10 sec, +20 sec), movie speed control (1x, 2x, ..), etc.

Hope this will be useful for you.

share|improve this answer
1  
Thank you very Much for your answer . Yes thats very helpful – BigAppleBump Feb 12 '12 at 13:27
moviePlayerController.controlStyle = MPMovieControlStyleNone; – BigAppleBump Feb 12 '12 at 14:11
but its possible to add all these custom controls on full screen mode? Please suggest. thx – Mitesh Khatri Mar 15 '12 at 13:12
Yes first load your video in full screen mode. Over that view add/load another view which contains only your control (transparent view). There you go... – Mrunal Mar 16 '12 at 6:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.