Hacker News new | ask | show | jobs
by blanderman 2944 days 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.
1 comments

As you wish: https://youtu.be/49kv_E9XjpY

Script here: 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')})