@@ -5,18 +5,18 @@ import sys import time random.seed(time.time()) grammars = { - "u": ["I V I IV u", "e"], + "u": ["I V I IV u", "I IV", "I VII IV" , "e"], "e": [""], } def main(): score = "u u u" - key = "C" + key = "G#" score = generate_score(score) score = keyify_score(score, key) score = generate_csound_score(score) print "f1 0 256 10 1 0 3 ; sine wave function table" for line in score: @@ -72,11 +72,11 @@ "D#": "03", "E": "04", "F": "05", "F#": "06", "G": "07", - "F#": "08", + "G#": "08", "A": "09", "A#": "10", "B": "11", } t = 0