Hi all,<br><br>I don&#39;t know exactly for what list I should ask for help about the jVLC, since I couldn&#39;t find any specific list for that, so I&#39;m sending my questions here, hoping that someone here work with jVLC or know someone that could help me...
<br><br>I&#39;m trying to create a streaming server using jVLC (the java binding for VLC) and I&#39;m having trouble using the addBroadcast method from VLM.java class.<br><br>I&#39;ve already implemented a video player using jVLC, so I believe the environment itself is alright, and now I&#39;m trying to create the server also using jVLC.
<br><br>I&#39;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>&nbsp;&nbsp;&nbsp; vlm.addBroadcast(&quot;Test channel&quot;, &quot;E:\\MediaContent\\Z1N_teste_1.mpg&quot;, &quot;#duplicate{dst=std{access=rtp,mux=ts,dst=
<a href="http://172.20.5.19:1234">172.20.5.19:1234</a>}}&quot;, null, true, false);<br>} catch (VLCException e) {<br>&nbsp;&nbsp;&nbsp; // TODO Auto-generated catch block<br>&nbsp;&nbsp;&nbsp; e.printStackTrace();<br>}<br><br>and I&#39;m getting the following exception:
<br><br>Exception in thread &quot;main&quot; java.lang.UnsatisfiedLinkError: _addBroadcast<br>&nbsp;&nbsp;&nbsp; at org.videolan.jvlc.VLM._addBroadcast(Native Method)<br>&nbsp;&nbsp;&nbsp; at org.videolan.jvlc.VLM.addBroadcast(VLM.java:39)<br>&nbsp;&nbsp;&nbsp; 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&#39;t find some dependency... I would like to know if it&#39;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>