/*
TILTED-WEIGHTS
madskjeldgaard, 2020
https://github.com/madskjeldgaard
Tested using SuperCollider version 3.11.0
on: | |
push: | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: |
// A west coast / Buchla inspired synth originally by Mark Wheeler, released in their Norns synth "passersby" https://github.com/markwheeler/passersby/blob/master/lib/Engine_Passersby.sc | |
/* | |
// Test | |
( | |
Pmono(\west, | |
\freq, Pwhite(100.0,400.0), | |
\dur, 0.125, | |
\gate, 1, | |
\pitchBendRatio, 1, |
pkgname=reaper-bin | |
pkgver=6.18 | |
pkgrel=1 | |
conflicts=(reaper) | |
pkgdesc="Digital Audio Workstation" | |
url="http://www.reaper.fm" | |
arch=('x86_64') | |
license=('custom') |
( | |
/////////////////////////////// | |
// Korg nanokontrol2 Clouds interface | |
/////////////////////////////// | |
/* | |
By Mads Kjeldgaard, 08-11-2020 | |
Dependencies: | |
- mi ugens: https://github.com/v7b1/mi-UGens |
# Maintainer: Mads Kjeldgaard <[email protected]> | |
pkgname=mi-ugens-git | |
pkgver=r27.d9ff7f7 | |
pkgrel=1 | |
pkgdesc="SuperCollider UGen versions of Mutable Instruments synthesizer modules" | |
arch=('x86_64') | |
url="https://github.com/v7b1/mi-UGens" | |
license=('GPL') | |
groups=('pro-audio') | |
depends=() |
# Maintainer: Mads Kjeldgaard <[email protected]> | |
pkgname=emissioncontrol2-git | |
pkgver=r647.fca70f5 | |
pkgrel=1 | |
pkgdesc="EmissionControl2 (EC2) is a standalone interactive real-time application for granular synthesis and sound file granulation" | |
arch=('x86_64') | |
url="https://github.com/EmissionControl2/EmissionControl2" | |
license=('GPL') | |
groups=('pro-audio') | |
depends=() |
# Maintainer: Mads Kjeldgaard <[email protected]> | |
pkgname=sparta-plugins | |
pkgver=2020_10_09_v1.4.2 | |
pkgrel=1 | |
pkgdesc='AALTO vst plugins for Spatial Audio Real-time Applications' | |
arch=('x86_64') | |
url="http://research.spa.aalto.fi/projects/sparta_vsts/" | |
license=('GPL') | |
depends=('netcdf' 'hdf5' 'lapack' 'webkit2gtk' 'netcdf-fortran' 'libcurl-gnutls') | |
provides=() |
/*
TILTED-WEIGHTS
madskjeldgaard, 2020
https://github.com/madskjeldgaard
Tested using SuperCollider version 3.11.0
/* | |
Sketch for a cloud generator | |
By Mads Kjeldgaard, 2020 | |
*/ | |
( | |
~numChannels = 2; | |
s.options.numOutputBusChannels_(~numChannels); |
( | |
s.waitForBoot{ | |
// Create new Ndef setter event type | |
Event.addEventType(\ndset, {|server| | |
~type = \set; | |
~id = Ndef(~key).group; | |
~args = Ndef(~key).controlKeys(except: ~exceptArgs); | |
currentEnvironment.play; |