Rambo
Rambo

Reputation: 103

Control vlc process in java

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

Answers (1)

Sage
Sage

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

Related Questions