When it is ready!Excellent news! Not sure what the general policy is on asking, but is there any ETA on the next version which will include this feature?
if we have to add them i dont see where or how i see how to change hotkeys but not to add the play or stop buttons that are on your keyboard
laptops?Brand new here, so forgive me if this deserves another thread etc.
On the topic of keyboard support, is there any reason why VLC doesn't have the numpad mapped? Can it *please* be mapped?
I've got (an admittedly kooky) setup where I am using a wireless numpad as a "remote,"
I was really hoping to map out the numpad so 4 skips back, 6 skips forward, 8 volume up, 2 volume down, 5 pause, etc. But no option was available for that.
I've dug around looking for answers, finally found myself in vlc_keys.h and it looks like no numeric keys are defined in the first place.
So any chance this can be added into the next release?
if not, any guesses as to whether the mapping is dirt simple ({ "1", '1' },{ "2", '2' },etc.) or requires a special hex code, so I can compile it myself?
what about them?laptops?Brand new here, so forgive me if this deserves another thread etc.
On the topic of keyboard support, is there any reason why VLC doesn't have the numpad mapped? Can it *please* be mapped?
I've got (an admittedly kooky) setup where I am using a wireless numpad as a "remote,"
I was really hoping to map out the numpad so 4 skips back, 6 skips forward, 8 volume up, 2 volume down, 5 pause, etc. But no option was available for that.
I've dug around looking for answers, finally found myself in vlc_keys.h and it looks like no numeric keys are defined in the first place.
So any chance this can be added into the next release?
if not, any guesses as to whether the mapping is dirt simple ({ "1", '1' },{ "2", '2' },etc.) or requires a special hex code, so I can compile it myself?
Code: Select all
keycode 130 = XF86HomePage
keycode 144 = XF86AudioPrev
keycode 152 = XF86Launch4
keycode 153 = XF86AudioNext
keycode 160 = XF86AudioMute
keycode 162 = XF86AudioPause
keycode 164 = XF86AudioStop
keycode 174 = XF86AudioLowerVolume
keycode 176 = XF86AudioRaiseVolume
keycode 177 =
keycode 180 = XF86Launch3
Code: Select all
#define KEY_MEDIA_FASTER 0x002d0000
#define KEY_MEDIA_SLOWER 0x002e0000
… …
{ "Media Prev Track", KEY_MEDIA_PREV_TRACK },
{ "Media Stop", KEY_MEDIA_STOP },
{ "Media Play Pause", KEY_MEDIA_PLAY_PAUSE }
{ "Media Play Pause", KEY_MEDIA_PLAY_PAUSE },
{ "Media Faster", KEY_MEDIA_FASTER },
{ "Media Slower", KEY_MEDIA_SLOWER }
Code: Select all
#include <X11/XF86keysym.h>
... ...
keysymToVlcKey[XF86XK_AudioMute] = KEY_VOLUME_MUTE;
keysymToVlcKey[XF86XK_AudioLowerVolume] = KEY_VOLUME_DOWN;
keysymToVlcKey[XF86XK_AudioRaiseVolume] = KEY_VOLUME_UP;
keysymToVlcKey[XF86XK_AudioNext] = KEY_MEDIA_NEXT_TRACK;
keysymToVlcKey[XF86XK_AudioPrev] = KEY_MEDIA_PREV_TRACK;
keysymToVlcKey[XF86XK_AudioStop] = KEY_MEDIA_STOP;
keysymToVlcKey[XF86XK_AudioPause] = KEY_MEDIA_PLAY_PAUSE;
keysymToVlcKey[XF86XK_Launch3] = KEY_MEDIA_FASTER;
keysymToVlcKey[XF86XK_Launch4] = KEY_MEDIA_SLOWER;
Well technically VLC doesn't officially support Global Hotkeys, yet, but someone is working on it, really, has already worked on it.Currently it seems that VLC doesn't support Global hotkeys, hopefully someone will fix this in future.
Return to “VLC media player Feature Requests”
Users browsing this forum: No registered users and 16 guests