Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by sirlink99 …; import com.xuggle.mediatool.ToolFactory; import com.xuggle.xuggler.ICodec; public class TestScreenRecord { private static final double…IMediaWriter; import com.xuggle.mediatool.ToolFactory; import com.xuggle.xuggler.ICodec; public class TestSpeakerRecord { static final long RECORD_TIME … Re: Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by sirlink99 ….mediatool.IMediaWriter; import com.xuggle.mediatool.ToolFactory; import com.xuggle.xuggler.ICodec; public class TestScreenRecord { private static final double FRAME_RATE = 13… Re: Bring Java Swing to Web Programming Software Development by mydreamgirl …/IBM/rationalsdp/workspace_70/XuggleTest/bin/xuggle-xuggler.jar basic: Plugin2ClassLoader.addURL parent called…Users/xh2453/IBM/rationalsdp/workspace_70/XuggleTest/bin/xuggle-xuggler.jar, version: null] basic: Applet loaded…; java.lang.ExceptionInInitializerError at com.xuggle.xuggler.IVideoResampler.isSupported(IVideoResampler.java:361) at … Re: Bring Java Swing to Web Programming Software Development by mydreamgirl …-classic.jar, logback-core.jar, slf4j-api.jar, xuggle-xuggler.jar, xuggle-xuggler-test.jar" width="400" height="…: file:/C:/Users/xh2453/IBM/rationalsdp/workspace_70/XuggleTest/bin/xuggle-xuggler.jar, version: null] java.lang.reflect.InvocationTargetException at com.… Re: How to play a video? Programming Software Development by zeroliken try the suggestions qiven in the link [URL="http://stackoverflow.com/questions/2041871/video-playback-in-java-jmf-fobs4jmf-xuggler-fmj"]http://stackoverflow.com/questions/2041871/video-playback-in-java-jmf-fobs4jmf-xuggler-fmj[/URL] maybe it's [URL="http://www.xuggle.com/xuggler/index"]Xuggler[/URL] that'll do what you need Re: Bring Java Swing to Web Programming Software Development by mydreamgirl …-api.jar, C:\Program Files\Xuggle\share\java\jars\xuggle-xuggler.jar, C:\Program Files\Xuggle\share\java\jars\xuggle…-xuggler-test.jar" width="400" height="400&… Re: Bring Java Swing to Web Programming Software Development by mydreamgirl …-api.jar, C:\Program Files\Xuggle\share\java\jars\xuggle-xuggler.jar, C:\Program Files\Xuggle\share\java\jars\xuggle…-xuggler-test.jar" width="400" height="400&… Re: Wrap Xuggle into Swing Programming Software Development by Ezzaral …]http://xuggle.wordpress.com/2009/01/23/how-to-use-xuggler-to-decode-and-play-video/[/url] They are updating a… Re: Wrap Xuggle into Swing Programming Software Development by Chien-Rouge There is 3 methods to decode audio and/or video : - DecodeAndPlayVideo - DecodeAndPlayAudio - DecodeAndPlayAudioAndVideo They are all in : com.xuggle.xuggler.demos Re: Integrating Video into a Java Application Programming Software Development by nvrandow … I think [this post](https://groups.google.com/forum/#!msg/xuggler-users/FPVS9eMTHyE/EjXfFdiCvDIJ)'s source code will help you get… Re: Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by JamesCherrill Maybe: You have video code like loop do CPU intensive stuff wait 20 mSec that's only going to loop 50 times per second if the CPU stuff is instantaneous (which stuff like yours will definitely not be) At the very least you need something more like loop endTime = time now + 20 mSec do CPU intensive stuff… Re: Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by newcoder310 Why don't you try threads? Ignore this comment. Re: Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by newcoder310 In your video code, what is the need `Thread.sleep((long)(1000/SAMPLE_RATE));` and did u try reducing the sleep time? Re: Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by JamesCherrill Re video: just what I suspected. You may find that threading the screen shot and the writing may buy you a little improvement - it's not hard, so give it a try. But I doubt that you will get much from it. Realistically you will have to accept a frame rate that your computer is capable of maintaining- which looks like maybe 24fps? (good enough for… Re: Xuggler Audio Recorder not working, and video longer than it should be Programming Software Development by sirlink99 @newcoder310 as you can see in the second video code that I uploaded, the the sleep is based off the rate of execution rather than the user set fps. Even if I reduce the sleep time, the execution time cannot change, therefore the minimum fps I can get is the 1 second divided by the speed of the execution. @JamesCherrill I will try the threading a …