hello
We plan to develop a java-player using jvlc for video-streaming. Is it possible to build a unique "vlcplayer.jar" which can run under different operating systems, e.g. linux and windows where no vlc is installed? Or do we have to install, register the vlc-player?
I've tried the following on a windows xp with no vlc installed:
- lib-folder -> jna.jar, jvlc-core.jar
- libvlc.dll
- libvlccore.dll
- vlcplayer.jar (my own jvlc java player)
java -jar vlcplayer.jar -> it works!
But I know there are different dll's necessarily e.g. for Linux and Windows, so is there a way to put this dll's and jar's into one global jar to get this works without installing anything on different OS?
Kind regards,
Peter