Xuggle 5.4 is available - Printable Version +- EmuNewz Network (https://www.emunewz.net/forum) +-- Forum: PSP Emulation (https://www.emunewz.net/forum/forumdisplay.php?fid=191) +--- Forum: JPCSP Official Forum (https://www.emunewz.net/forum/forumdisplay.php?fid=51) +---- Forum: General discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=57) +---- Thread: Xuggle 5.4 is available (/showthread.php?tid=42305) |
Xuggle 5.4 is available - freefive - 04-10-2012 at http://xuggle.googlecode.com/svn/trunk/repo/share/java/xuggle/xuggle-xuggler/ it claims that it supports all platforms, including win64, mac and so on. or the old version, 3.4, is just enough? RE: Xuggle 5.4 is available - gid15 - 04-10-2012 (04-10-2012, 11:22 AM)freefive Wrote: atThank you for the information! Anyone volunteering to test Jpcsp with it? (e.g. update the Jars and DLLs from a standard Jpcsp build) RE: Xuggle 5.4 is available - freefive - 04-10-2012 (04-10-2012, 11:38 AM)gid15 Wrote:(04-10-2012, 11:22 AM)freefive Wrote: atThank you for the information! I downloaded, and it is just a big .jar file about 38.4 MB, not jars and dlls I read http://www.xuggle.com/downloads, and got a little confused RE: Xuggle 5.4 is available - theball - 04-11-2012 I've tried to change the version of xuggler for 5.4 there is one week ago but all mediaClass.open are now deprecated and when I open the screen to choose a game, jpcsp freeze and an error with imagePicture occurs ... so replace only the jar doesn't really work :/ RE: Xuggle 5.4 is available - Itaru - 04-12-2012 It seems to be working, but it can cause a nasty freeze in the UMD Browser for some games due to uncaught NullPointerException in the PmfDisplayThread in the jpcsp.GUI.UmdBrowserPmf class. If the game has a video playing in the UMD Browser when you select it, it will freeze. It won't freeze if the game only displays a still image in the UMD Browser though. With Xuggle 5.4, it seems that the method toImage() in the com.xuggle.xuggler.video.IConverter class returns null. To keep it from freezing, just modify line 457 in the jpcsp.GUI.UmdBrowserPmf class to become: Code: 457 if (display != null && getImage() != null) { RE: Xuggle 5.4 is available - Itaru - 04-12-2012 UPDATED! For those who wish to try Xuggle 5.4, here are the steps to get it working on the Windows version of JPCSP:
RE: Xuggle 5.4 is available - hyakki - 04-12-2012 Ill try out the new xuggle (btw looks like you can also remove all the old leftover ffmpeg dlls since they are embeded with the new libxuggle-5.dll, they are probably ok to leave but in my tests ill remove them to avoid any conflicts) swscale.dll libvorbisfile-3.dll libvorbisenc-2.dll libvorbis-0.dll libtheoraenc-1.dll libtheoradec-1.dll libtheora-0.dll libspeexdsp-1.dll libspeex-1.dll libogg-0.dll libmp3lame-0.dll avutil.dll avformat.dll avdevice.dll avcodec.dll RE: Xuggle 5.4 is available - Itaru - 04-13-2012 (04-12-2012, 09:12 PM)hyakki Wrote: Ill try out the new xuggle (btw looks like you can also remove all the old leftover ffmpeg dlls since they are embeded with the new libxuggle-5.dll, they are probably ok to leave but in my tests ill remove them to avoid any conflicts) I was wondering why the new dll file has gotten so big in Xuggle 5.4. Now I know. I really like how much cleaner the windows lib folder is now after removing those unnecessary ffmpeg dll files. Replacing 18 files with only 1 file is great. RE: Xuggle 5.4 is available - hyakki - 04-13-2012 so far im having good results with it besides for the umd browser bug , tested most of my games and videos and audio are working ok (testing x64 version) RE: Xuggle 5.4 is available - gid15 - 04-13-2012 (04-12-2012, 02:21 PM)Itaru Wrote: It seems to be working, but it can cause a nasty freeze in the UMD Browser for some games due to uncaught NullPointerException in the PmfDisplayThread in the jpcsp.GUI.UmdBrowserPmf class. If the game has a video playing in the UMD Browser when you select it, it will freeze. It won't freeze if the game only displays a still image in the UMD Browser though. With Xuggle 5.4, it seems that the method toImage() in the com.xuggle.xuggler.video.IConverter class returns null. To keep it from freezing, just modify line 457 in the jpcsp.GUI.UmdBrowserPmf class to become:This change has been submitted in r2530. Thanks! |