jazz-soft/JZZ

[Feature Request] note number to key: 60 => C4

Closed this issue ยท 2 comments

As described in title ๐Ÿ‘

There are many conventions for numbering the notes.
JZZ note range is from C0 (0) to G12 (127).
If you need different numbering, it's a one line code:
function(x) { return ['C', 'C#', 'D', 'Eb', 'E', 'F', 'F#', 'G', 'Ab', 'A', 'Bb', 'B'][x % 12] + Math.floor(x / 12 -1); }

cool ~