Hi every one, i'm trying to switch from the jvlc 0.8.6a to the 0.9.0 version and I have some issue that I can't fix.
Following the guideline provided I cloned the head version from the git, compiled vlc and then installed the jar on my local repository using maven.
Everything seemed to be perfectly working since even the example was running out of the box and I got so excited. But I guess it was too early,because as soon as I tried to implement it in my own player I found out a strange error: as soon as i try to perform the play() method of the object MediaPlayer I get the following error: no meta reader module matched "any".
Checking the example I figured out that there it's still used the Playlist object to perform play/stop/pause operations, while I tryid to use the new suggested policy using insthead the newer objects MediaDescriptor and MediaPlayer instead.
I was wondering if the use case:
-create JVLC
-create the MediaDescriptor for the resource we want to access
-get the MediaPlayer object from the media descriptor
-call the play method of the MediaPlayer
is already working or we still have to rely on the playlist object to perform the rendering of a resource
TIA