1

I am trying to develop an application like Talking Tom. I am playing a video in the UIView with MPMoviePlayerController. I got a source code for capturing UIView screen. It should work if I do not added MPMoviePlayerController. It will give a video. But if I added a MPMoviePlayerController and capture the same View, only a black screen is showing in the video. Can anyone suggest an easy way to implement this feature.

Main objective is to capture the view in which video is playing, when record button is pressed and when stop button is pressed, I need to get a video from the point where record button pressed to stop button pressed.

Thanks in advance.

sree_iphonedev
  • 3,514
  • 6
  • 31
  • 50
  • Try this one http://stackoverflow.com/questions/4714273/how-to-record-video-of-screen-like-talking-tom-cat-on-iphone/5013974#5013974 – harshalb Oct 10 '12 at 10:38

1 Answers1

1

Have you tried thumbnailImageAtTime:timeOption:?

Apple Doc

skwashua
  • 1,627
  • 17
  • 14
  • Yes I tried to get frame images at each second. But I need all the frame images in each second. For example, if the video is 24fps, each second contains 24 frame images and I need to get all the frame images. How it can be possible? – sree_iphonedev Oct 06 '12 at 08:47
  • Hm, I haven't had to do that yet. But I think this may help. http://stackoverflow.com/questions/6783214/reading-video-frame-by-frame-under-ios – skwashua Oct 08 '12 at 17:06