Sorry for your own answer,
NSURL *videoURL = [NSURL fileURLWithPath:self.filename];
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:videoURL];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:moviePlayer];
moviePlayer.controlStyle = MPMovieControlStyleNone;
moviePlayer.shouldAutoplay = YES;
moviePlayer.initialPlaybackTime = 5;
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:YES];
it worked for me to find time in the movie ...
source
share