|
|
|
|
|
by ajuc
3564 days ago
|
|
C is 0. Each half-tone up is +1. If you really want to keep it concise you can write it as base-12 numbers. C1 C1# D1 D1# E1 F1 F1# G1 G1# A1 A1# B1 C2 C2# D2 D2# E2 F2 F2# G2 G2# A2 A2# B2 ...
00 01 02 03 04 05 06 07 08 09 0a 0b 10 11 12 13 14 15 16 17 18 19 1a 1b ...
First number is octave. Second number is half-tone in that octave. Translating is just mechanical addition.EDIT: on second thought making it base-12 just to save some space makes no sense, people are good with base-10, just keep the numbers. |
|