views:

42

answers:

1

I have a MPMoviePlayerController in my project. Documentation says that next call:

moviePlayer.initialPlaybackTime = time;

starts at the closest key frame prior to the provided time. Is it possible to start playing video from the specified time (not from the nearest key frame)?

+2  A: 

No, it really isn't. Temporally compressed video streams can only generally start playback on a keyframe, as inter-frames depend on the keyframe for rendering. If seekability is important to you, consider making files with smaller keyframe intervals.

kidjan
thank youd, much
e40pud