I am experience some weirdness with MPMoviePlayerController.
I am trying to set the currentPlaybackTime of a video whilst it is playing (file source). Here is an exa
This is a late response, but I found a solution to my issue which was similar. You can modify the playback as follows:
#define START_TIME 50.0f
#define END_TIME START_TIME + 20.0f //play for 20 seconds
MPMoviePlayerController *player = [self moviePlayerController];
[player stop];
[player setInitialPlaybackTime:START_TIME];
[player setEndPlaybackTime:END_TIME];
[player play];