Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Video Thumbnails in Java

Tags:

java

video

jmf

I want to generate a thumbnail preview of videos in Java. I'm mostly JMF and video manipulation alienated.

  • Is there an easy way to do it?
  • What about codecs? Will I have to deal with it?
  • Any video type is suported? (including Quicktime)
like image 760
Marcio Aguiar Avatar asked Sep 07 '08 05:09

Marcio Aguiar


People also ask

What is thumbnail in Java?

In this tutorial, I will show you how we can create thumbnail images using Java. Thumbnails are the reduced size of images or videos. Basically, if your website is loading a lot of images with larger pixel values i.e larger size then, the performance of the website will be poor.

Which tool is used to display the thumbnail of a video?

Making a video thumbnail is relatively straightforward. You can take a screenshot from your video that best explains its contents, or you can use a tool like Photoshop or Canva to overlay text or icons on the image. To make a screen capture on a PC, use the Windows Snipping Tool.

Which tool is used to display the thumbnail of a video in Android?

Many of the application are using the Glide library for loading the Image and Video thumbnail. You can download the Glide Library from here and alternatively, you can include the library directly in your app using Gradle.


1 Answers

Well, since you're not stuck with JMF, have you considered Xuggler? Xuggler is a Java API that uses FFmpeg under the covers to do all video decoding and encoding. It's free and LGPL licensed.

In fact, we have a tutorial that shows How to Make Thumbnails of an Existing File

like image 80
Art Clarke Avatar answered Sep 21 '22 14:09

Art Clarke