Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
konduktiva [2024/06/28 02:39] – removed steve.wang | konduktiva [2024/09/12 18:02] (current) – steve.wang | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Konduktiva | ||
+ | {{ : | ||
+ | Konduktiva is a JavaScript library for live coding, an improved version of the Conductive library for live coding in the Haskell programming language by Renick Bell. The code was originally developed by Renick Bell. Then, my classmate, Yiler Huang, and I added to it. Yiler was focused on music generation within Konnduktiva and I mainly worked on the interface of the Konduktiva system combined with most of the MIDI system design in Konduktiva. We have submitted a conference paper about it at Audio Mostly 2024 (https:// | ||
+ | I mainly worked on the MIDI system in Konduktiva and the interface of Konduktiva. Some of my work includes the configuration objects in Kondutkiva, the addMap method in the MusicalEnvironment, | ||
+ | |||
+ | Originally, the main method to add information into Konduktiva was to manipulate the information directly. However, when I just started using Konduktiva, I often got confused and ended up not being able to play any sound. So, while working on my first task integrating MIDI into Konduktiva, I created a way for myself to be able to get the same setup every time for testing and be able to learn more from a working setup. Eventually I was able to get a set of useful action functions that users can use easily to control different parts of MIDI like Control Change messages and program change messages. To make the system easier for users, I started adding features that I would find useful. These include, helper functions to identify MIDI inputs and outputs, verbosity to give myself a clean environment to work with, type checking functions, worker helper functions, etc. Eventually, I found myself needing to add more QuantizedMaps to the MusicalEnvironment and constantly made mistakes. This was when Dr.Bell suggested the addMap method which I have implemented. Some of the other things which I have added at Dr.Bell request are, recording and playing back MIDI, saving the MusicalEnvironment, | ||
+ | |||
+ | The documentation part was difficult for me to write because I am not the best at communication and I find writing documentation quite dull. Even so, I persisted and wrote most of the documentation you will see on the [[https:// | ||
+ | |||
+ | The next steps for me will be writing some code that will allow smooth and gradual transitions between music. In more technical terms, figuring out how to gradually and smoothly transition an array of numbers to a final state. That would mean figuring out a way to quantify how different two number arrays are and how to gradually transition arrays without feeling slow or sudden. | ||
+ | |||
+ | Furthermore, |