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?
Asked
Active
Viewed 1,779 times
0

Lin
- 736
- 1
- 8
- 20
-
http://stackoverflow.com/questions/48179/video-thumbnails-in-java – Pratik Shelar Sep 19 '13 at 09:38
1 Answers
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