https://sites.google.com/site/artifakelabs/
Verwendet Mellotron-Samples von "Tajiguy":
| #!/usr/bin/env python3 | |
| import json | |
| import sys | |
| from subprocess import CalledProcessError, run | |
| ARRAY_FIELDS = ( | |
| "arch", | |
| "arch", | |
| "b2sums", |
| import sys | |
| from miditk.smf.reader import MidiFileReader | |
| from miditk.smf.sequence import MidiSequence, ObjectMidiEventHandler | |
| # This defines callbacks called while parsing the MIDI sequence | |
| # We only need to overwrite the event handlers we want to handle specially | |
| class MySequenceHandler(ObjectMidiEventHandler): | |
| def __init__(self, instance=None, debug=False): |
https://sites.google.com/site/artifakelabs/
Verwendet Mellotron-Samples von "Tajiguy":
| import usocket | |
| class Response: | |
| def __init__(self, f): | |
| self.raw = f | |
| self.encoding = "utf-8" | |
| self._cached = None | |
| def close(self): |
| #!/usr/bin/env python | |
| """Convert joystick axis position into MIDI Control Change value in-/decrements.""" | |
| import os | |
| import sys | |
| import pygame | |
| from rtmidi.midiutil import open_midioutput | |
| # Lua dev | |
| LUA_DIR="$HOME/share/lua" | |
| LUA_CDIR="$HOME/lib/lua" | |
| if which lua5.1 >/dev/null 2>&1; then | |
| if which luarocks >/dev/null 2>&1; then | |
| LUA_PATH_5_1="$(luarocks --lua-version 5.1 --local path --lr-path)" | |
| LUA_CPATH_5_1="$(luarocks --lua-version 5.1 --local path --lr-cpath)" | |
| fi |
| declare name "StereoCrossDelay"; | |
| declare description "A stereo delay with feedback and cross-mixing"; | |
| declare author "Christopher Arndt"; | |
| declare license "MIT license"; | |
| import("stdfaust.lib"); | |
| MAX_DELAY = 2.0; | |
| time_l = ba.sec2samp(hslider("[0]Delay Left[symbol: delay_l][unit: ms]", 250.0, 0, MAX_DELAY * 1000, 0.1) * 0.001 : si.smoo); |
| # Maintainer: Frederic Van Assche <[email protected]> | |
| # Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de> | |
| _pkgname=kicad-packages3d | |
| pkgname="${_pkgname}-git" | |
| pkgver=r2020.10.06.27d653ce | |
| pkgrel=1 | |
| pkgdesc="KiCad component 3D model libraries from the official git repo" | |
| arch=('any') | |
| url="https://github.com/KiCad/kicad-packages3D" |
| pkg/ | |
| src/ | |
| lupa-*.tar.gz | |
| python2-lupa-*.pkg.tar.xz | |
| python2-lupa-*.pkg.tar.zst |
| # Makefile for creating a standalone program via Cython from a *.py / *.pyx file | |
| PYX ?= main.pyx | |
| PROG ?= $(basename $(PYX)) | |
| PYTHON ?= python | |
| PYVERSION = $(shell $(PYTHON) -c 'import sys;print("%d.%d" % sys.version_info[:2])') | |
| PYMAJOR = $(shell $(PYTHON) -c 'import sys;print(sys.version_info[0])') | |
| PYPREFIX = /usr | |
| INCLUDES = -I$(PYPREFIX)/include/python$(PYVERSION) |