Reputation: 103
I am wondering if there is any way to control the windows vlc app in c++. My purpose is to control the video and perform functions like pause, resume, stop, volume etc.
Upvotes: 0
Views: 268
Reputation: 15418
vlcJ is one such option. The vlcj framework uses JNA to bind to the vlc native library. This requires that the run-time environment is properly configured so that your Java application is able to locate the vlc native library. Here is a Tutorial to get you started with it.
Upvotes: 1