0

I have a jsp page for users to upload video.
I am able to store uploaded video as blob in datastore
but I want to create thumbnail from the uploaded video as well.
How do I create the thumbnail?

Lin
  • 736
  • 1
  • 8
  • 20

1 Answers1

1

Depending of classes which you use to operate over MIME objects in Java, you should be able to obtain random frame from the video (let's say as BufferedImage) and then resize it to desired thumbnail size.

Jacek Gralak
  • 174
  • 2
  • 13