MelodyGen bootstraps LearnerJS and MaxiInstrument from the MIMIC research project (more information below) and Google's Magenta. This project is directly built off of MIMIC platform developer Louis Busby's project. The Melody Generator uses Magenta's machine learning technology to generate sequences of notes based off of user input (presets are provided) that are then played by MaxiInstrument.
Scroll to the bottom for local development and for trying it out at home.
Press the button to start
The System
Select A Melody To Start With
Or Upload A New One
The upload button will open a prompt to select a file. Once a proper .midi
file is selected the user will see the file in the dropdown of melodies.
Select a piece of the uploaded MIDI file to work with
Each slider moves one percent at a time. It will start the percentage the start slider is on into the MIDI file and end the percentage into the MIDI file the end slider is at.
- Temperature tells Google's Magenta how far from the original sequence it can diverge, values between 1 and 2 are best. 2 Is very extreme, 1.5 is even pretty extreme. The influence of the original melody is always heard though.
- Step amount is how many quantized steps to make the sequence is.
- Seq repeats is how many times to loop the sequences magenta returns.
- Steps per qn is steps per quarter note, how many quarter notes one step should be. Higher values, usually means slows, good values are evenly divisible by four.
Once A Sequence Is Created From Magenta, MaxiSynth Will Begin Playing The Sequence Looped The Amount of Times Entered In The Seq Repeats Box. The Music Can Then Be Altered In Real Time.
-
Length controls the length of the sequence. The further to the left the slider is the less notes are played. Notes are removed semi-randomly.
-
Variation will change the order of the notes. The slider entirely to the left will mean no variation, the slider all the way to the right creates the maximum amount of variation. In order to keep the melody sounding familiar, this only varies the middle 90 percent of notes.
-
The user can also vary the first five percent of notes to get really crazy. This slider works the same as the variation slider, except on the aforementioned note set.
-
The user can also vary the last five percent of notes. This slider works the same as the variation slider, except on the aforementioned note set.
The Control Panel At The Bottom Allows Manipulations Of The Sequence of Melodies.
-
Test will play back the selected segment of the selected melody as is once, so the user can see if it is to the user's liking. It cannot be modulated.
-
Play Clean plays the selected segment of the selected melody as is, not a Magenta generated sequence, looped and it can be modualted.
-
Generate uses Magenta to generate a new sequence of notes
-
Cancel will stop the looping of the sequence and allow the user to generate a new sequence, test or play clean.
-
Download, will download a text file with the current composition you have created, in case you ever want to use it again
Home of Learner.js and MaxiInstruments.js
Learner.js and MaxiInstruments.js are two libraries built as part of the MIMIC research project. Here we host the source and gives instructions for using the libraries locally, or in other projects away from the main MIMIC site.
Learner.js provides an interface that allows you to easily record in examples of input and output pairings into a dataset that is saved locally in your browser.
You can then train a model to respond with new outputs when you provide new inputs.
We take care of all the storage, threading and GUI needs and all you have to do is pick what you want to control is what!
You can follow the guide on the MIMIC site to learn more about the library
Or you can look at the API documentation.
For a number of reasons, currently, MaxiInstruments will performs best in Chrome!. It does work in Firefox, although if you are pushing limits computationally, you can get some artifacts.
MaxiInstruments is a class of simple synths and samplers that are designed so that their parameters can be easily controlled using the Learner.js library.
They are AudioWorklets backed so they do not get interrupted by beefy feature extractors, one might use an an input or the running of a model to do the mapping.
You can follow the guide on the MIMIC site to learn more about the library
Or you can look at the API documentation.
To run on your local machine you will first need to serve some files. The recommended way to do this is to use the python server we have provided (server.py). This is because we have to set some headers when serving the files to use SharedArrayBuffers, and this is what makes MaxiInstruments run smooooooth.
Then when in the project folder in the terminal run the command below.
python server.py
This serves the files in the folder at http://localhost:8000 and adds a header to get around CORS issues.
Then all you need to do is visit http://localhost:8000 to see the demo running
Remember, currently, MaxiInstruments will only work in Chrome!