7 ms·
I think that if you made a module that did voice commands for VLC media player that it could be quite popular. I've often wished I could just yell out "VLC paus
by blanderman 8y ago
I think that if you made a module that did voice commands for VLC media player that it could be quite popular. I've often wished I could just yell out "VLC pause" instead of having to walk over to the keyboard or mouse.
- lunixbochs 8y agoAs you wish: https://youtu.be/49kv_E9XjpY https://youtu.be/49kv_E9XjpY Script here: https://github.com/talonvoice/examples/blob/master/vlc.py https://github.com/talonvoice/examples/blob/master/vlc.py Alternate minimal script: from talon.voice import Context, Key ctx = Context('vlc', bundle='org.videolan.vlc') ctx.keymap({'video (pause | play)': Key('space')})