12.7. Capturing Thumbnails from Video Files
Problem
You are playing a video file using an instance of the MPMoviePlayerController class and would like
to capture a screenshot from the movie at a certain time.
Solution
Use the requestThumbnailImagesAtTimes:timeOption:
instance method of MPMoviePlayerController like so:
/* Capture the frame at the third second into the movie */NSNumber*thirdSecondThumbnail=@3.0f;/* We can ask to capture as many frames as wewant. But for now, we are just asking to capture one frame *//* Ask the movie player to capture this frame for us */[self.moviePlayerrequestThumbnailImagesAtTimes:@[thirdSecondThumbnail]timeOption:MPMovieTimeOptionExact];
Discussion
An instance of MPMoviePlayerController is able to capture
thumbnails from the currently playing movie, synchronously and
asynchronously. In this recipe, we are going to focus on asynchronous
image capture for this class.
We can use the requestThumbnailImagesAtTimes:timeOption:
instance method of MPMoviePlayerController to asynchronously
access thumbnails. When I say “asynchronously,” I mean that during the
time the thumbnail is being captured and reported to your designated
object (as we will soon see), the movie player will continue its work
and will not block the playback. We must observe the MPMoviePlayerThumbnailImageRequestDidFinishNotification notification
message the movie player sends to the default notification center in
order to find out when the thumbnails are available:
-(void)startPlayingVideo: ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access