Giter Club home page Giter Club logo

midi-cmd-server's Introduction

midi-cmd-server

midi_cmd_server.py

A midi listening device to execute pre-programmed commands based on MIDI control change messages.

import time
import mido
import os
import subprocess
import re

Also requires the 'amidithru' command

The script creates a virtual midi device (MidiCmdServer, name adjustable in script), and listens to it for incoming midi control change (and note!) messages.

In the script, you can add control change identifiers, values, and the desired command to run, along with an optional uptime restriction. You will find this section around line 44 or so:

# set up midi commands here
# midi_cc_cmd( cc, cc_val, command, optional uptime seconds restriction) 
midi_cc_cmd(64, 127, "echo '64 on' >> /tmp/test", 120)
# this would be the shutdown server functionality here
#midi_cc_cmd(64, 127, "init 0", 120)
midi_cc_cmd(64, 0,   "echo '64 off' >> /tmp/test")

The script was recently updated to also handle commands triggered from midi notes. The section to edit them is just below the midi_cc_cmd parts.

Generally, add an entry to your crontab to call the script on startup: (Make sure you set your path properly)

@reboot /usr/bin/sudo /path/to/midi_cmd_server.py &

Note about sudo

This script requires root to run, so you need to call it with sudo, without a password, or save the startup under the root crontab without the need for sudo.

To have this work on boot with sudo, you must not have sudo require a password to work.

You can achieve this by adding a new file and rule to your sudoers config. with visudo (username modep in examples):

sudo visudo -f /etc/sudoers.d/modep

Once in visudo, write the sudoers rule to allow your user to run sudo without a password:

modep ALL = (ALL:ALL) NOPASSWD: ALL

After that, you can log out and back in or reboot, and then be able to run sudo things without a password.

midi-cmd-server's People

Contributors

whofferbert avatar

Stargazers

maartmaart avatar  avatar Andrew Halliwell avatar  avatar

Forkers

mahlonsmith

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.