Reputation: 315
I'd like to know if it's possible to grab snapshots from previously recorded videos. Those videos are recorded in the app itself.
By the way, I'd like to grab the snapshot from a video file saved in IsolatedStorage without having to play the video.
Is it possible? If so, how can I do it?
Cheers, Rafael
Upvotes: 2
Views: 402
Reputation: 315
I solved the problem by creating the thumbnail while recording the video (captureSource.CaptureImageAsync()). To do that, I used the same instance of the CaptureSource I'm using to record the video.
Upvotes: 0
Reputation: 6385
I am not aware of an official platform feature to do this. However, if the video file is within your app's isolated storage, you might be able to:
Upvotes: 1