Grab random frames from video & make a gif image - Java - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T00:45:02Zhttp://stackoverflow.com/feeds/question/765679http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/765679/grab-random-frames-from-video-make-a-gif-image-java1Grab random frames from video & make a gif image - Javahttp://stackoverflow.com/users/02009-04-19T16:38:23Z2009-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#7656882Answer by Maurice Perry for Grab random frames from video & make a gif image - JavaMaurice Perryhttp://stackoverflow.com/users/726732009-04-19T16:44:56Z2009-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#18913650Answer by Xuggle for Grab random frames from video & make a gif image - JavaXugglehttp://stackoverflow.com/users/2045122009-12-11T22:44:59Z2009-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>