I am developing an iPhone application where I need to reverse a video playback. I am currently using XCode 4.2. I am trying to play a movie in reverse with the MPMoviePlayer
Try this with AVPlayer
avPlayer.rate=-1.0f;
This will set the rate to -ve,hence playing the video in reverse smoothly. :)