varunon9 / Remote-Control-PC

Control Laptop using Android. Remote control PC consists of android as well as desktop app written in Java to control laptop using phone.
MIT License
193 stars 99 forks source link

Add media control #16

Open franzmueller opened 6 years ago

franzmueller commented 6 years ago

Hi, I forked your app and modified it to include media controls (play, stop, next, previous, mute, volume up and down). The problem I encountered is that java (or at least the Robot class) by default can't emulate key presses for special keys like the media keys. I therefore used the jnativehook library, which I found working just fine (tested on Windows only). For the moment you need to import the library yourself (I think the GPL license of jnativehook isn't compatible with your MIT license).

Feel free to check my implementation and include it in your build or modify it as you like.

Kind regards

varunon9 commented 6 years ago

Thanks franzmueller,

I'll have a look into it.