![]() |
r1512 Use Media Engine issue running on Eclipse - 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: svn trunk discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=56) +---- Thread: r1512 Use Media Engine issue running on Eclipse (/showthread.php?tid=1117) |
r1512 Use Media Engine issue running on Eclipse - BlackDaemon - 05-16-2010 When i'm trying to run JPCSP with "Use Media Engine" compatibily option from Eclipse i got Code: 39704 [main] INFO misc - 2010-05-16 13:34:31,140 [main] WARN com.xuggle.ferry.JNILibraryLoader - Failure: library load of library: xuggle-xuggler; version: 3: absolute path: D:\eclipse\workspace\Jpcsp\lib\windows-x86\libxuggle-xuggler-3.dll; error: java.lang.UnsatisfiedLinkError: D:\eclipse\workspace\Jpcsp\lib\windows-x86\libxuggle-xuggler-3.dll: Can't find dependent libraries Code: Exception in thread "main" java.lang.UnsatisfiedLinkError: no xuggle-xuggler in java.library.path ![]() VM arguments used: Code: -Xmx512m -Xss10m -Djava.library.path=lib/windows-x86 RE: r1512 Use Media Engine issue running on Eclipse - theball - 05-16-2010 If you start it with eclipse, you must copy all the directory x86 at the base of the project to eclipse use it correctly RE: r1512 Use Media Engine issue running on Eclipse - BlackDaemon - 05-16-2010 theball, Hmm, could you write an example path? Thanks. My current paths: Eclipse - D:\Eclipse Workspace - D:\Eclipse\workspace JPCSP - D:\Eclipse\workspace\Jpcsp RE: r1512 Use Media Engine issue running on Eclipse - theball - 05-16-2010 \workspace\jpcsp\*.dll I do like this and it's work fine. RE: r1512 Use Media Engine issue running on Eclipse - Orphis - 05-16-2010 You just need to edit the environment and point the PATH variable to the folder with the xuggler libraries actually. No need to pollute the Eclipse directory... RE: r1512 Use Media Engine issue running on Eclipse - BlackDaemon - 05-16-2010 Orphis, Could you show (screenshot) how properly do it? Thanks. RE: r1512 Use Media Engine issue running on Eclipse - Orphis - 05-16-2010 Google how to edit the PATH environment variable for your OS, as it depends on your OS version. That's easy enough to find ! RE: r1512 Use Media Engine issue running on Eclipse - hyakki - 05-17-2010 control panel - system - Advanced settings (left of screen) - Environmental variables find PATH in "system variables" append the path, add the full path to jpcsp\lib\windows-x86 (or where you extracted the ffmpeg archive to) make sure you don't delete any other paths in there since the system needs them. the reason i suggested the path in the bat file was because of this , its to much to add it to the global system path for most users where in the bat file it just for that session only, so adding the path to global system would be the only way for eclipse to find, OR start eclipse from a bat file with the path set. like in the jpcsp bat file. for example make a bat file in the eclipse root dir except change the path to match your path i used c:\jpcsp as an example put this in it @echo off set PATH=%PATH%;C:\jpcsp\lib\windows-x86\ eclipse.exe RE: r1512 Use Media Engine issue running on Eclipse - BlackDaemon - 05-17-2010 Or do this in Eclipse. ![]() |