Im using Camera class from video library in an eclipse project, while it works fine within that particoular project when i try to invoke camera functions from within my framework i get the warning
(javaw.exe:3840): GStreamer-WARNING **: Failed to load plugin 'C:/Users/aaa/Desktop/bbb/ccc/video/library/\windows64\plugins\libgstvorbis.dll' ecc... on 30+ plugins.
Basically i got a "view" project with all view logics and some working tests and a "root" project that instantiates the view,the controller and link them togheter.
Problem is that apparently the directory from which im running the main affects some jna related property, so if i run my application from "root" project i get the above warnings and consequent fails. To test the above sentence i made a one line main in "root" project that invokes a working test in "view" project, and run the same test directly in "view" project. the first fails the second not.
What i would like to do is to keep things as are now(all the dlls in "view" project) to keep my MVC like pattern and make it work, is that possible?