JuliusCode / MP4MUSEUM

MP4MUSEUM.org Media Player
GNU General Public License v3.0
32 stars 8 forks source link

VLC does not accept normal keystrokes? #6

Closed fridde closed 2 years ago

fridde commented 2 years ago

This is probably obvious to someone who has more experience with the python bindings, but I was confused by the VLC player in version 5 not accepting any keystrokes from my keyboard.

Is that expected? I tried inserting a --global-key-next=Up into the Instance arguments, but no change. Also: my --repeat argument is ignored, too.

Any ideas? Am I approaching the problem from the wrong side?

JuliusCode commented 2 years ago

Hi fridde

the code is not running the vlc binary anymore, but using python-vlc, a module to include the player into the engine that runs the python code.

for your application, that means you would have to change the code (or copy that part) where gpio triggers are handled, at "add event listener". instead of gpio, your script would react to the keystrokes.

edit: towards the repeat thing, the easy way is "--input-repeat=999999"

best, Julius.