From 75b78a0c7e49ebec652c5d1e0976caa1951534d7 Mon Sep 17 00:00:00 2001 From: James Fenn Date: Sun, 31 Jan 2021 17:42:18 -0500 Subject: [PATCH] fixed timing bug --- blog/2021-01-31-Audio-Automation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/2021-01-31-Audio-Automation.md b/blog/2021-01-31-Audio-Automation.md index ed720bd..2948ced 100644 --- a/blog/2021-01-31-Audio-Automation.md +++ b/blog/2021-01-31-Audio-Automation.md @@ -13,7 +13,7 @@ links: tags: blog --- -Earlier this year, I had the opportunity to take a course on Programming Environments in Music focused on the [Max/MSP software](https://cycling74.com/products/max-features). It involved a wide variety of topics around the software and aspects of computer music in general, such as MIDI sequencing, manipulating sound samples, and creating our own waveforms. I also learnt a lot about the various control flows & structures in Max/MSP, which led me to revisit an earlier attempt at developing my own music programming API. +Last year, I had the opportunity to take a course on Programming Environments in Music focused on the [Max/MSP software](https://cycling74.com/products/max-features). It involved a wide variety of topics around the software and aspects of computer music in general, such as MIDI sequencing, manipulating sound samples, and creating our own waveforms. I also learnt a lot about the various control flows & structures in Max/MSP, which led me to revisit an earlier attempt at developing my own music programming API. Firstly, I had a distinct need to write this software in Kotlin. I am most comfortable with this language, and its [multiplatform](https://kotlinlang.org/docs/reference/multiplatform.html) functionality would allow me to make use of it in websites, desktop programs, and Android applications. This is also why most existing solutions are inadequate; while I am certainly reinventing a few wheels here, the benefit is that its APIs can be used directly in other Kotlin applications to integrate with other variables - no experience needed. -- GitLab