How to create video from its frames iPhone
问题 I had done R&D and got success in how to get frames in terms of images from video file played in MPMoviePlayerController . Got all frames from this code, and save all images in one Array. for(int i= 1; i <= moviePlayerController.duration; i++) { UIImage *img = [moviePlayerController thumbnailImageAtTime:i timeOption:MPMovieTimeOptionNearestKeyFrame]; [arrImages addObject:img]; } Now the question is that, After change some image file, like adding emotions to the images and also adding filters,