I have just been playing with the excellent library B4JVLCj by @moster67 that allows you embed VLC media player within a B4J desktop application. Within certain limitations it all seems to work as advertised.
In trying to push it a little further I would like to extract the Video Codec name or fourCC value that the desktop version of VLC can tell you at the click of a mouse. The author hints that other properties are exposed by the lib but need to be addressed by the Java Object method....
I have looked at the Java Docs but there seems to be no access to any of the principle video properties other than Frames/Sec. Has anyone explored this and been successful ?
In trying to push it a little further I would like to extract the Video Codec name or fourCC value that the desktop version of VLC can tell you at the click of a mouse. The author hints that other properties are exposed by the lib but need to be addressed by the Java Object method....
Exposing Video Proerties:
Dim jo As JavaObject = vlc.player
Dim fps As Float = jo.RunMethodJo("getMp", Null).RunMethod("getFps",Null)
I have looked at the Java Docs but there seems to be no access to any of the principle video properties other than Frames/Sec. Has anyone explored this and been successful ?