0

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!

lowellk
  • 2,049
  • 4
  • 21
  • 26
  • 1
    I'm not sure but check this: http://stackoverflow.com/questions/1893072/getting-frames-from-video-image-in-android – Caner Sep 20 '11 at 08:39

1 Answers1

1

for future references. It's possible to use the

surfaceHolder.getSurface().freeze();

to hold the last frame.

Jon Lin
  • 142,182
  • 29
  • 220
  • 220