lowellk
lowellk

Reputation: 2057

How can I show a preview picture after taking a video using MediaRecorder?

I am using MediaRecorder and a SurfaceView to create a custom video camera app. After the user has clicked a stop button, I'd like to show the user a preview of the video (maybe the first or last frame). Is there an easy way to do this?

Thanks!

Upvotes: 0

Views: 410

Answers (1)

user1450941
user1450941

Reputation:

for future references. It's possible to use the

surfaceHolder.getSurface().freeze();

to hold the last frame.

Upvotes: 1

Related Questions