Grab random frames from video & make a gif image - Java - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T00:45:02Z http://stackoverflow.com/feeds/question/765679 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/765679/grab-random-frames-from-video-make-a-gif-image-java 1 Grab random frames from video & make a gif image - Java http://stackoverflow.com/users/0 2009-04-19T16:38:23Z 2009-12-11T22:44:59Z <p>Hi!</p> <p>I want to know if it's possible to grab random frames from a video and then "stick" these frames together to make a gif image?</p> <p>I intend to achieve the above said idea by programming in Java.</p> <p>What should I use? (I have no previous experience in programming involving videos, although am proficient in Java)</p> http://stackoverflow.com/questions/765679/grab-random-frames-from-video-make-a-gif-image-java/765688#765688 2 Answer by Maurice Perry for Grab random frames from video & make a gif image - Java Maurice Perry http://stackoverflow.com/users/72673 2009-04-19T16:44:56Z 2009-04-19T16:44:56Z <p>The <a href="http://java.sun.com/javase/technologies/desktop/media/jmf/" rel="nofollow">Java Media Framework</a> let you do this kind of things</p> http://stackoverflow.com/questions/765679/grab-random-frames-from-video-make-a-gif-image-java/1891365#1891365 0 Answer by Xuggle for Grab random frames from video & make a gif image - Java Xuggle http://stackoverflow.com/users/204512 2009-12-11T22:44:59Z 2009-12-11T22:44:59Z <p>Here's some source code using <a href="http://www.xuggle.com/xuggler" rel="nofollow">Xuggler</a> that lets you get the raw images from a video. Saving to an image from Java is then pretty straightforward.</p> <p><a href="http://build.xuggle.com/view/Stable/job/xuggler%5Fjdk5%5Fstable/ws/workingcopy/src/com/xuggle/mediatool/demos/DecodeAndCaptureFrames.java" rel="nofollow">Sample Code</a>.</p>