Hi all,<br><br>I don't know exactly for what list I should ask for help about the jVLC, since I couldn't find any specific list for that, so I'm sending my questions here, hoping that someone here work with jVLC or know someone that could help me...
<br><br>I'm trying to create a streaming server using jVLC (the java binding for VLC) and I'm having trouble using the addBroadcast method from VLM.java class.<br><br>I've already implemented a video player using jVLC, so I believe the environment itself is alright, and now I'm trying to create the server also using jVLC.
<br><br>I'm doing just a simple test trying to stream some content:<br><br>VLMIntf vlm = new VLM(1); //What is this long parameter?<br>try {<br> vlm.addBroadcast("Test channel", "E:\\MediaContent\\Z1N_teste_1.mpg", "#duplicate{dst=std{access=rtp,mux=ts,dst=
<a href="http://172.20.5.19:1234">172.20.5.19:1234</a>}}", null, true, false);<br>} catch (VLCException e) {<br> // TODO Auto-generated catch block<br> e.printStackTrace();<br>}<br><br>and I'm getting the following exception:
<br><br>Exception in thread "main" java.lang.UnsatisfiedLinkError: _addBroadcast<br> at org.videolan.jvlc.VLM._addBroadcast(Native Method)<br> at org.videolan.jvlc.VLM.addBroadcast(VLM.java:39)<br> at test.Test.main
(Test.java:20)<br><br>I believe the error is coming from the native call to the DLLs right. The jVLC could't find some dependency... I would like to know if it's possible to stream some content with jVLC (or if it have just the client functionalities), and if yes, what could I be doing wrong?
<br><br>note: I tried other formats for the content location, like file://xxx, but I believe this error is before the usage of that address... Am I right?<br><br>Any help will be greatly appreciated! ;-)<br><br>Thanks,<br>
Diego<br>