MIDI Processors
- Docs: https://manual.ardour.org/lua-scripting/#DSP%20Scripts
- API: https://manual.ardour.org/lua-scripting/class_reference/#ARDOUR:MidiBuffer
- dsp_run_map seems to be the more performant API metod
MIDI Note Repeat / Delay
MIDI Processors
MIDI Note Repeat / Delay
// O2 Minipops rhythm box (c) DSP Synthesizers 2016 | |
// Free for non commercial use | |
// http://janostman.wordpress.com | |
#include <avr/interrupt.h> | |
#include <avr/io.h> | |
#include <avr/pgmspace.h> |
'use strict'; | |
// Setup: | |
// npm install node-rest-client | |
// Usage: | |
// node create_gitea_repos.js <repo name> <repo desc> [<gitea url>] [<user>] [<token>] | |
// You may put hardcoded values below instead of using last three arguments. | |
// Create a token in your user's settings at <gitea url>/user/settings/applications | |
var url = process.argv[4] || '', |
# Maintainer: Daniel Appelt <[email protected]> | |
pkgname=traKmeter | |
pkgver=2.3.0 | |
pkgrel=1 | |
pkgdesc="Loudness meter for correctly setting up tracking and mixing levels" | |
arch=('i686' 'x86_64') | |
url="http://www.mzuther.de/en/software/trakmeter/" | |
license=('GPL3') | |
depends=() |
D3 Links | |
-------- | |
https://d3js.org/ | |
https://bost.ocks.org/mike/bar/ | |
https://jsfiddle.net/tLgp7qvv/ -> skalierender Bar Chart (abgewandelt von Teil 2 des Tutorials) | |
Javascript testen | |
----------------- | |
https://jsfiddle.net/ |
[ | |
{"name": "Locke", "value": 4}, | |
{"name": "Reyes", "value": 8}, | |
{"name": "Ford", "value": 15}, | |
{"name": "Jarrah", "value": 16}, | |
{"name": "Shephard", "value": 23}, | |
{"name": "Kwon", "value": 42} | |
] |
# Sequencer64 0.9.9.11 (and above) rc configuration file | |
# (Also works with Sequencer24) | |
[midi-control] | |
74 # MIDI controls count | |
0 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0] | |
1 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0] | |
2 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0] | |
3 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0] |
# Maintainer: Daniel Appelt <[email protected]> | |
_pkgbasename=sequencer64 | |
pkgname=${_pkgbasename}-git | |
pkgver=r233.c14ba05 | |
pkgrel=1 | |
pkgdesc="A live-looping MIDI sequencer" | |
arch=('i686' 'x86_64') | |
url="https://github.com/ahlstromcj/sequencer64.git" | |
license=('GPL') | |
depends=('gtkmm' 'jack2') |
CFLAGS = `pkg-config --cflags glib-2.0 gtk+-2.0` | |
LDFLAGS = `pkg-config --libs glib-2.0 gtk+-2.0` | |
pixbuf: pixbuf.c pixbufloader.c | |
gcc -Wall pixbuf.c -o pixbuf $(CFLAGS) $(LDFLAGS) | |
gcc -m32 -Wall pixbuf.c -o pixbuf32 $(CFLAGS) $(LDFLAGS) | |
gcc -Wall pixbufloader.c -o pixbufloader $(CFLAGS) $(LDFLAGS) | |
gcc -m32 -Wall pixbufloader.c -o pixbufloader32 $(CFLAGS) $(LDFLAGS) |