# MIDI Generator initialization file. # # Edit this file to change the files that are generated. # # Method name can be anything right now. # It is the directory name and file name prefix. method_name = 'four_notes' # Number of tracks. Only 1 works right now. num_tracks = 1 # Number of files to create. # It is also the random seed used to initialize the pseduo-random number generator. num_files = 50 # Minimum note number. # 60 is middle C. # 0 is ok. # 109-127 is silence all the time? min_note = 60 # Maximum note number. max_note = 63 # The probability that a note will repeat. # If set at 0%, you may still get quarter notes if the random generator returns the same number twice. # If set at 10%, you will get mostly 16th notes. # If set at 90%, you will get a lot of long notes. note_repeat_probability = 20 # Number of beats (16th notes) # BUG: songs have to be really short right now or they don't work. (20 max) num_beats = 20 # Rest probability # The probability that we have a rest. # This is affected by note_repeat_probability even though the rest is not a note. # You will most likely set this to a low number so you don't get too many. rest_probability = 10