10 comments

  • scottyeager51 minutes ago
    I picked up a couple of foot pedals built to control manual transcription software from thrift stores. That was years ago and I hacked them to control music software instead. Then one day I got Nvidia's Parakeet model running locally and was sold on automatic transcription in an instant. So in an ironic twist, I started using one of my spare transcription pedals to do transcription by wiring it up to a harness for Parakeet. It's great and the setup is basically trivial to create these days on Linux with a bit of help from an agent.
  • simongray26 minutes ago
    Other than the novelty of being able to press buttons with your feet, why is this useful?<p>If you lack special buttons, you could also just buy a bigger keyboard (or a MIDI controller that sits on the table).
  • _kb4 hours ago
    This is like vim pedal (<a href="https:&#x2F;&#x2F;github.com&#x2F;foxweb&#x2F;vim-pedal" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;foxweb&#x2F;vim-pedal</a>) on steroids. I love it.
    • aguynamedben3 hours ago
      Sir, Emacs pedals came way earlier, we needed to avoid &quot;Emacs pinky&quot;!
  • rahulmax1 hour ago
    Love this! In the photography community, we had MIDI2LR (MIDI to Lightroom) (<a href="https:&#x2F;&#x2F;rsjaffe.github.io&#x2F;MIDI2LR&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rsjaffe.github.io&#x2F;MIDI2LR&#x2F;</a>)<p>I used Behringer Xtouch Mini mapped to Lightroom. This allows tactile controls, and also lets you keep your eyes on the photo being edited, instead of the constant back and forth between the controls and the photo.
  • ashtuchkin4 hours ago
    Love it! Trying to use it with my nanoPAD2 and it only outputs `note_on` and `note_off` events. Can we bind on these? Example output:<p>22:56:38.740 note_on channel=1 note=36 velocity=89 [nanoPAD2 PAD]
  • tristanMatthias4 hours ago
    I have one of these! And I almost made this exact thing myself! Love this thank you. PS would love a little UI for this if there isn&#x27;t one already
  • _def6 hours ago
    I always thought using something like this for debugger shortcuts could be fun
  • aguynamedben3 hours ago
    This would be sick for video game keybinds!
  • NewJazz6 hours ago
    This is dope. Would love to bring it to linux
    • tetraodonpuffer5 hours ago
      I have something like this in linux using a novation launchcontrol, it&#x27;s quite straightforward using aseqdump, say I use the buttons to switch desktops, I have this launched as part of my session and always in background. While developing this I just printed $line to see what aseqdump sent to figure out the regexes<p><pre><code> while IFS=&#x27; &#x27; read -r line; do if [[ &quot;$line&quot; == *&quot;client&quot;*&quot;Launch Control&quot;\* ]]; then device=$(echo &quot;$line&quot; | cut -d&#x27; &#x27; -f2) fi done &lt; &lt;(aconnect -i) aseqdump -p ${device::-1} | while IFS=&#x27; &#x27; read -r line; do if [[ &quot;$line&quot; == *&quot;Note on&quot;* ]]; then note=$(echo &quot;$line&quot; | grep -o &quot;note [0-9]*&quot; | cut -d&#x27; &#x27; -f2) if [ &quot;$note&quot; == &quot;9&quot; ]; then wmctrl -s 8 fi elif [[ &quot;$line&quot; == *&quot;Control change&quot;*&quot;127&quot; ]]; then note=$(echo &quot;$line&quot; | grep -o &quot;controller [0-9]*&quot; | cut -d&#x27; &#x27; -f2) if [ &quot;$note&quot; == &quot;114&quot; ]; then # some macro fi fi done</code></pre>
    • wyre5 hours ago
      Repo is 2,500loc, all-in, according to SCC. Should be really easy to point your favorite coding agent at the repo and have it one or two shot something similiar in the language of your choice.