You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hvalfangst
changed the title
Implement the ability to play scores imported from JSON
Implement the ability to play scores imported from text files
Jul 19, 2024
The original idea of using JSON as format is bad as it only introduces unnecessary dependencies (serde, serde-json, serde-derive). Let's keep it simple by instead just using plain old text.
hvalfangst
changed the title
Implement the ability to play scores imported from text files
Implement the ability to export and import scores that one may play
Jul 19, 2024
Syntax:
{NOTE},{OCTAVE},{WAVEFORM},{DURATION};
Example (C,D,E in octave 4 as Sine):
C,4,Sine,0.5;D,4,Sine,0.5;E,4,Sine,0.5;
The text was updated successfully, but these errors were encountered: