Skip to content

Instantly share code, notes, and snippets.

View madskjeldgaard's full-sized avatar

Mads Kjeldgaard madskjeldgaard

View GitHub Profile
@madskjeldgaard
madskjeldgaard / PKGBUILD
Created December 3, 2020 13:49
Install Reaper 6.18 using this pkgbuild. Download it to a temporary folder, run `makepkg -si --clean`
pkgname=reaper-bin
pkgver=6.18
pkgrel=1
conflicts=(reaper)
pkgdesc="Digital Audio Workstation"
url="http://www.reaper.fm"
arch=('x86_64')
license=('custom')
@madskjeldgaard
madskjeldgaard / double-clouds-nanokorg.scd
Last active January 17, 2023 21:16
Using the mi ugens and Modality toolkit to create a double Clouds granulator synth with a korg Nanokontrol2 as the interface
(
///////////////////////////////
// Korg nanokontrol2 Clouds interface
///////////////////////////////
/*
By Mads Kjeldgaard, 08-11-2020
Dependencies:
- mi ugens: https://github.com/v7b1/mi-UGens
@madskjeldgaard
madskjeldgaard / PKGBUILD
Last active October 27, 2020 21:26
Arch linux package for installing the mi-UGens mutable instruments ugens for SuperCollider
# Maintainer: Mads Kjeldgaard <mail@madskjeldgaard.dk>
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=()
@madskjeldgaard
madskjeldgaard / PKGBUILD
Last active October 23, 2020 22:17
emissioncontrol2-git pkgbuild
# Maintainer: Mads Kjeldgaard <mail@madskjeldgaard.dk>
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=()
@madskjeldgaard
madskjeldgaard / PKGBUILD
Last active February 20, 2023 04:46
Arch linux PKGBUILD for installing the Aalto Sparta Plugins
# Maintainer: Mads Kjeldgaard <mail@madskjeldgaard.dk>
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=()
@madskjeldgaard
madskjeldgaard / tilted-weights.scd
Created August 29, 2020 14:54
Titled weights example SuperCollider
@madskjeldgaard
madskjeldgaard / KloudGen.scd
Last active December 30, 2022 02:39
Sketch for a supercollider based cloud generator

/*

Sketch for a cloud generator

By Mads Kjeldgaard, 2020

*/ ( ~numChannels = 2; s.options.numOutputBusChannels_(~numChannels);

@madskjeldgaard
madskjeldgaard / parallel-patterns.scd
Created August 15, 2020 20:23
Play a source sound pattern and an fx processing pattern in parallel in SuperCollider

( 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;
@madskjeldgaard
madskjeldgaard / transcript-sas-2020-june.md
Last active June 17, 2020 19:04
Transcript of the Notam spatial audio meetup of june 2020

mads kjeldgaard Welcome to this virtual Notam meetup!

This is a space for sharing ideas, inspiration, workflow, projects, tips and tricks and just hanging out with like minded people.

It's nice to get to know each other so when/if it's your turn to speak for the first time, please tell us your name and a bit about yourself.

Feel free to post a link in the chat to your website/soundcloud/bandcamp/github or whichever page we could visit to learn a bit more about you and your work.

Thanks for joining!

@madskjeldgaard
madskjeldgaard / Cargo.toml
Created June 11, 2020 14:31
Example of polling Raspberry Pi 4 GPIO pins and sending the result over OSC
[package]
name = "gpio-osc-button"
version = "0.1.0"
authors = ["mads kjeldgaard <mail@madskjeldgaard.dk>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nannou_osc = "0.14.0" # The OSC API for Nannou, the creative coding framework.