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 we
want. But for now, we are just asking to capture one frame */
/* Ask the movie player to capture this frame for us */
[
self
.
moviePlayer
requestThumbnailImagesAtTimes:
@
[
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 MPMoviePlayerThumbnailImage
RequestDidFinishNotification
notification
message the movie player sends to the default notification center in
order to find out when the thumbnails are available:
-
(
void
)
startPlayingVideo: ...
Get iOS 7 Programming Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.