commit 5abbfb5740ed14233d0953ef196b2f8c09579471 Author: bel Date: Tue Sep 14 06:36:09 2021 -0600 archive diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..fa98ff2 Binary files /dev/null and b/.DS_Store differ diff --git a/adgmaker b/adgmaker new file mode 100644 index 0000000..a90f9b8 --- /dev/null +++ b/adgmaker @@ -0,0 +1,3 @@ +https://github.com/Miserlou/ADGMaker + +create instruments for timidity for chords2midi diff --git a/alda/github b/alda/github new file mode 100644 index 0000000..c140698 --- /dev/null +++ b/alda/github @@ -0,0 +1 @@ +https://github.com/alda-lang/alda diff --git a/alda/install.sh b/alda/install.sh new file mode 100644 index 0000000..ebaabb4 --- /dev/null +++ b/alda/install.sh @@ -0,0 +1,13 @@ +#! /bin/bash + +cd "$(dirname "$BASH_SOURCE")" +if [ ! -f ./alda ]; then + curl -L https://github.com/alda-lang/alda/releases/download/1.4.4/alda > ./alda +elif which nix-env; then + nix-env -i alda +fi +chmod +x ./alda + +echo "consider https://member.keymusician.com/Member/FluidR3_GM/index.html for quality" +echo "install via git clone https://github.com/alda-lang/alda && scripts/install-fluidr3" +echo "installs to $HOME/.gervill" diff --git a/alda/run.sh b/alda/run.sh new file mode 100644 index 0000000..d26006b --- /dev/null +++ b/alda/run.sh @@ -0,0 +1,4 @@ +#! /bin/bash + +echo once: alda up +echo always: alda play --file ./path diff --git a/alda/test.alda b/alda/test.alda new file mode 100644 index 0000000..a7f06da --- /dev/null +++ b/alda/test.alda @@ -0,0 +1,6 @@ +piano: + o3 + g8 a b > c d e f+ g | a b > c d e f+ g4 + g8 f+ e d c < b a g | f+ e d c < b a g4 + << g1/>g/>g/b/>d/g + diff --git a/chords2midi/.gitignore b/chords2midi/.gitignore new file mode 100644 index 0000000..ca2859f --- /dev/null +++ b/chords2midi/.gitignore @@ -0,0 +1,2 @@ +*.mid +**/*.sw* diff --git a/chords2midi/chords2midi.py b/chords2midi/chords2midi.py new file mode 100755 index 0000000..0ed9c56 --- /dev/null +++ b/chords2midi/chords2midi.py @@ -0,0 +1,479 @@ +#! /usr/local/bin/python2 +# c2m.py - chords2midi + +import argparse +import errno +import os +import pychord +import time +import traceback + +from midiutil import MIDIFile +from mingus.core.progressions import to_chords, determine +import mingus.core.notes as notes + +#################################################################### +# Data +#################################################################### + +# N: Next +# S: Same +# X: Rest + +# TODO: +# +Z: Move Z Intervals Up +# +Z: Move Z Intervals Down + +# TODO: +# Include duration in inputs +# ex: 2N X N .5S .5S + +N = 'N' +X = 'X' +S = 'S' +patterns = { + 'basic': [N, X], + 'basic2': [N, X, S, X,], + 'basic4': [N, X, S, X, S, X, S, X], + 'alt': [X, N], + 'alt2': [X, N, X, S], + 'alt4': [X, N, X, S, X, S, X, S], + 'hiphop': [N, X, X, N, X, N, X, N] +} + +#################################################################### +# Main +#################################################################### + +class Chords2Midi(object): + """ + Read CLI input, create MIDI files. + + """ + + def handle(self, argv=None): + """ + Main function. + + Parses command, load settings and dispatches accordingly. + + """ + help_message = "Please supply chord progression!. See --help for more options." + parser = argparse.ArgumentParser(description='chords2midi - Create MIDI files from written chord progressions.\n') + parser.add_argument('progression', metavar='U', type=str, nargs='*', help=help_message) + parser.add_argument('-B', '--bassline', action='store_true', default=False, help='Throw an extra bassline on the pattern') + parser.add_argument('-b', '--bpm', type=int, default=80, help='Set the BPM (default 80)') + parser.add_argument('-t', '--octave', type=str, default='4', help='Set the octave(s) (ex: 3,4) (default 4)') + parser.add_argument('-i', '--input', type=str, default=None, help='Read from an input file.') + parser.add_argument('-k', '--key', type=str, default='C', help='Set the key (default C)') + parser.add_argument('-n', '--notes', type=int, default=99, help='Notes in each chord (default all)') + parser.add_argument('-d', '--duration', type=float, default=1.0, help='Set the chord duraction (default 1)') + parser.add_argument('-D', '--directory', action='store_true', default=False, help='Output the contents to the directory of the input progression.') + parser.add_argument('-H', '--humanize', type=float, default=0.0, help='Set the amount to "humanize" (strum) a chord, in ticks - try .11 (default 0.0)') + parser.add_argument('-o', '--output', type=str, help='Set the output file path. Default is the current key and progression in the current location.') + parser.add_argument('-O', '--offset', type=float, default=0.0, help='Set the amount to offset each chord, in ticks. (default 0.0)') + parser.add_argument('-p', '--pattern', type=str, default=None, help='Set the pattern. Available patterns: ' + (', '.join(patterns.keys()))) + parser.add_argument('-r', '--reverse', action='store_true', default=False, help='Reverse a progression from C-D-E format into I-II-III format') + parser.add_argument('-v', '--version', action='store_true', default=False, + help='Display the current version of chords2midi') + + args = parser.parse_args(argv) + self.vargs = vars(args) + + if self.vargs['version']: + version = pkg_resources.require("chords2midi")[0].version + print(version) + return + + # Support `c2m I III V and `c2m I,III,V` formats. + if not self.vargs['input']: + if len(self.vargs['progression']) < 1: + print("You need to supply a progression! (ex I V vi IV)") + return + if len(self.vargs['progression']) < 2: + progression = self.vargs['progression'][0].split(',') + else: + progression = self.vargs['progression'] + else: + with open(self.vargs['input']) as fn: + content = ''.join(fn.readlines()).strip() + content = content.replace('\n', ' ').replace(',', ' ') + progression = content.split(' ') + og_progression = progression + + # If we're reversing, we don't need any of the MIDI stuff. + if self.vargs['reverse']: + result = "" + key = self.vargs['key'] + for item in progression: + comps = pychord.Chord(item).components() + position = determine(comps, key, True)[0] + if 'M' in position: + position = position.upper() + position = position.replace('M', '') + if 'm' in position: + position = position.lower() + position = position.replace('m', '') + if 'B' in position: + position = position + "b" + position = position.replace('B', '') + + result = result + position + " " + print result + return + + track = 0 + channel = 0 + ttime = 0 + duration = self.vargs['duration'] # In beats + tempo = self.vargs['bpm'] # In BPM + volume = 100 # 0-127, as per the MIDI standard + bar = 0 + humanize_interval = self.vargs['humanize'] + directory = self.vargs['directory'] + num_notes = self.vargs['notes'] + offset = self.vargs['offset'] + key = self.vargs['key'] + octaves = self.vargs['octave'].split(',') + root_lowest = self.vargs.get('root_lowest', False) + bassline = self.vargs['bassline'] + pattern = self.vargs['pattern'] + + # Could be interesting to do multiple parts at once. + midi = MIDIFile(1) + midi.addTempo(track, ttime, tempo) + + ## + # Main generator + ## + has_number = False + progression_chords = [] + + # Apply patterns + if pattern: + if pattern not in patterns.keys(): + print("Invalid pattern! Must be one of: " + (', '.join(patterns.keys()))) + return + + new_progression = [] + input_progression = progression[:] # 2.7 copy + pattern_mask = patterns[pattern] + pattern_mask_index = 0 + current_chord = None + + while True: + pattern_instruction = pattern_mask[pattern_mask_index] + + if pattern_instruction == "N": + if len(input_progression) == 0: + break + current_chord = input_progression.pop(0) + new_progression.append(current_chord) + elif pattern_instruction == "S": + new_progression.append(current_chord) + elif pattern_instruction == "X": + new_progression.append("X") + + if pattern_mask_index == len(pattern_mask) - 1: + pattern_mask_index = 0 + else: + pattern_mask_index = pattern_mask_index + 1 + progression = new_progression + + # We do this to allow blank spaces + for chord in progression: + + # This is for # 'I', 'VI', etc + progression_chord = to_chords(chord, key) + if progression_chord != []: + has_number = True + + # This is for 'C', 'Am', etc. + if progression_chord == []: + try: + progression_chord = [pychord.Chord(chord).components()] + except Exception: + # This is an 'X' input + progression_chord = [None] + + chord_info = {} + chord_info['notes'] = progression_chord[0] + if has_number: + chord_info['number'] = chord + else: + chord_info['name'] = chord + + if progression_chord[0]: + chord_info['root'] = progression_chord[0][0] + else: + chord_info['root'] = None + progression_chords.append(chord_info) + + # For each input.. + previous_pitches = [] + for chord_index, chord_info in enumerate(progression_chords): + + # Unpack object + chord = chord_info['notes'] + # NO_OP + if chord == None: + bar=bar+1 + continue + root = chord_info['root'] + root_pitch = pychord.utils.note_to_val(notes.int_to_note(notes.note_to_int(root))) + + # Reset internals + humanize_amount = humanize_interval + pitches = [] + all_new_pitches = [] + + # Turns out this algorithm was already written in the 1800s! + # https://en.wikipedia.org/wiki/Voice_leading#Common-practice_conventions_and_pedagogy + + # a) When a chord contains one or more notes that will be reused in the chords immediately following, then these notes should remain, that is retained in the respective parts. + # b) The parts which do not remain, follow the law of the shortest way (Gesetze des nachsten Weges), that is that each such part names the note of the following chord closest to itself if no forbidden succession XXX GOOD NAME FOR A BAND XXX arises from this. + # c) If no note at all is present in a chord which can be reused in the chord immediately following, one must apply contrary motion according to the law of the shortest way, that is, if the root progresses upwards, the accompanying parts must move downwards, or inversely, if the root progresses downwards, the other parts move upwards and, in both cases, to the note of the following chord closest to them. + root = None + for i, note in enumerate(chord): + + # Sanitize notes + sanitized_notes = notes.int_to_note(notes.note_to_int(note)) + pitch = pychord.utils.note_to_val(sanitized_notes) + + if i == 0: + root = pitch + + if root: + if root_lowest and pitch < root: # or chord_index is 0: + pitch = pitch + 12 # Start with the root lowest + + all_new_pitches.append(pitch) + + # Reuse notes + if pitch in previous_pitches: + pitches.append(pitch) + + no_melodic_fluency = False # XXX: vargify + if previous_pitches == [] or all_new_pitches == [] or pitches == [] or no_melodic_fluency: + pitches = all_new_pitches + else: + # Detect the root direction + root_upwards = None + if pitches[0] >= all_new_pitches[0]: + root_upwards = True + else: + root_upwards = False + + # Move the shortest distance + if pitches != []: + new_remaining_pitches = list(all_new_pitches) + old_remaining_pitches = list(previous_pitches) + for i, new_pitch in enumerate(all_new_pitches): + # We're already there + if new_pitch in pitches: + new_remaining_pitches.remove(new_pitch) + old_remaining_pitches.remove(new_pitch) + continue + + # Okay, so need to find the overall shortest distance from the remaining pitches - including their permutations! + while len(new_remaining_pitches) > 0: + nearest_distance = 9999 + previous_index = None + new_index = None + pitch_to_add = None + for i, pitch in enumerate(new_remaining_pitches): + # XXX: DRY + + # The Pitch + pitch_to_test = pitch + nearest = min(old_remaining_pitches, key=lambda x:abs(x-pitch_to_test)) + old_nearest_index = old_remaining_pitches.index(nearest) + if nearest < nearest_distance: + nearest_distance = nearest + previous_index = old_nearest_index + new_index = i + pitch_to_add = pitch_to_test + + # +12 + pitch_to_test = pitch + 12 + nearest = min(old_remaining_pitches, key=lambda x:abs(x-pitch_to_test)) + old_nearest_index = old_remaining_pitches.index(nearest) + if nearest < nearest_distance: + nearest_distance = nearest + previous_index = old_nearest_index + new_index = i + pitch_to_add = pitch_to_test + + # -12 + pitch_to_test = pitch - 12 + nearest = min(old_remaining_pitches, key=lambda x:abs(x-pitch_to_test)) + old_nearest_index = old_remaining_pitches.index(nearest) + if nearest < nearest_distance: + nearest_distance = nearest + previous_index = old_nearest_index + new_index = i + pitch_to_add = pitch_to_test + + # Before we add it - just make sure that there isn't a better place for it. + pitches.append(pitch_to_add) + del old_remaining_pitches[previous_index] + del new_remaining_pitches[new_index] + + # This is for the C E7 type scenario + if len(old_remaining_pitches) == 0: + for x, extra_pitch in enumerate(new_remaining_pitches): + pitches.append(extra_pitch) + del new_remaining_pitches[x] + + # Final check - can the highest and lowest be safely folded inside? + max_pitch = max(pitches) + min_pitch = min(pitches) + index_max = pitches.index(max_pitch) + folded_max = max_pitch - 12 + if (folded_max > min_pitch) and (folded_max not in pitches): + pitches[index_max] = folded_max + + max_pitch = max(pitches) + min_pitch = min(pitches) + index_min = pitches.index(min_pitch) + + folded_min = min_pitch + 12 + if (folded_min < max_pitch) and (folded_min not in pitches): + pitches[index_min] = folded_min + + # Make sure the average can't be improved + # XXX: DRY + if len(previous_pitches) != 0: + previous_average = sum(previous_pitches) / len(previous_pitches) + + # Max + max_pitch = max(pitches) + min_pitch = min(pitches) + index_max = pitches.index(max_pitch) + folded_max = max_pitch - 12 + + current_average = sum(pitches) / len(pitches) + hypothetical_pitches = list(pitches) + hypothetical_pitches[index_max] = folded_max + hypothetical_average = sum(hypothetical_pitches) / len(hypothetical_pitches) + if abs(previous_average-hypothetical_average) <= abs(previous_average-current_average): + pitches[index_max] = folded_max + # Min + max_pitch = max(pitches) + min_pitch = min(pitches) + index_min = pitches.index(min_pitch) + folded_min = min_pitch + 12 + + current_average = sum(pitches) / len(pitches) + hypothetical_pitches = list(pitches) + hypothetical_pitches[index_min] = folded_min + hypothetical_average = sum(hypothetical_pitches) / len(hypothetical_pitches) + if abs(previous_average-hypothetical_average) <= abs(previous_average-current_average): + pitches[index_min] = folded_min + + # Apply contrary motion + else: + print ("Applying contrary motion!") + for i, new_pitch in enumerate(all_new_pitches): + if i == 0: + pitches.append(new_pitch) + continue + + # Root upwards, the rest move down. + if root_upwards: + if new_pitch < previous_pitches[i]: + pitches.append(new_pitch) + else: + pitches.append(new_pitch - 12) + else: + if new_pitch > previous_pitches[i]: + pitches.append(new_pitch) + else: + pitches.append(new_pitch + 12) + + # Bassline + if bassline: + pitches.append(root_pitch - 24) + + # Melody + + # Octave is a simple MIDI offset counter + for octave in octaves: + i = 0 + for note in pitches: + pitch = int(note) + (int(octave.strip()) * 12) + + # Don't humanize bassline note + if bassline and (pitches.index(note) == len(pitches) -1): + midi_time = offset + bar + else: + midi_time = offset + bar + humanize_amount + + # Write the note + midi.addNote( + track=track, + channel=channel, + pitch=pitch, + time=midi_time, + duration=duration, + volume=volume + ) + if i + 1 >= num_notes: + break + humanize_amount = humanize_amount + humanize_interval + bar = bar + 1 + previous_pitches = pitches + + ## + # Output + ## + + if self.vargs['output']: + filename = self.vargs['output'] + elif self.vargs['input']: + filename = self.vargs['input'].replace('.txt', '.mid') + else: + if has_number: + key_prefix = key + '-' + else: + key_prefix = '' + + filename = key_prefix + '-'.join(og_progression) + '-' + str(tempo) + if bassline: + filename = filename + "-bassline" + if pattern: + filename = filename + "-" + pattern + if os.path.exists(filename): + filename = key_prefix + '-'.join(og_progression) + '-' + str(tempo) + '-' + str(int(time.time())) + filename = filename + '.mid' + + if directory: + directory_to_create = '-'.join(og_progression) + try: + os.makedirs(directory_to_create) + except OSError as exc: # Python >2.5 + if exc.errno == errno.EEXIST and os.path.isdir(directory_to_create): + pass + else: + raise + filename = directory_to_create + '/' + filename + + with open(filename, "wb") as output_file: + midi.writeFile(output_file) + + +def handle(): # pragma: no cover + """ + Main program execution handler. + """ + try: + c2m_obj = Chords2Midi() + c2m_obj.handle() + except (KeyboardInterrupt, SystemExit): # pragma: no cover + return + except Exception as e: + print(e) + traceback.print_exc() + +if __name__ == '__main__': # pragma: no cover + handle() diff --git a/chords2midi/github b/chords2midi/github new file mode 100644 index 0000000..26f70a1 --- /dev/null +++ b/chords2midi/github @@ -0,0 +1 @@ +https://github.com/Miserlou/chords2midi diff --git a/chords2midi/install.sh b/chords2midi/install.sh new file mode 100644 index 0000000..4251703 --- /dev/null +++ b/chords2midi/install.sh @@ -0,0 +1,23 @@ +#! /bin/bash + +set -e + +cd "$(dirname "$BASH_SOURCE")" +if ! [ -f ./c2m.py ]; then + curl -L https://github.com/Miserlou/chords2midi/raw/master/chords2midi/c2m.py > ./c2m.py +fi +if ! [ -f ./req.txt ]; then + curl -L https://github.com/Miserlou/chords2midi/raw/master/requirements.txt > ./req.txt + pip2.7 install -r ./req.txt +fi +if ! [ -f ./chords2midi.py ]; then + echo "#! $(which python2)" > ./chords2midi.py + cat ./c2m.py >> ./chords2midi.py +fi +chmod +x ./chords2midi.py + +if ! which timidity; then + brew install timidity +fi +echo ./chords* ARGUMENTS +echo timidity ./*.mid diff --git a/chords2midi/midify.py b/chords2midi/midify.py new file mode 100644 index 0000000..5f10962 --- /dev/null +++ b/chords2midi/midify.py @@ -0,0 +1,153 @@ +def main() : + True + +class Chord() : + pitches = None + + ## [0-9]?[a-gA-G][bMmd]? + # octave + # note + # flat/Major chord/minor chord/deminutive chord + def __init__(self, s) : + note = Note(s) + self.pitches = note.pitch + if note.mod == "M" : + raise Exception("not impl") + elif note.mod == "m" : + raise Exception("not impl") + elif note.mod == "d" : + raise Exception("not impl") + elif note.mod == "" : + pass + else : + raise Exception(f"invalid note mod '{note.mod}'") + +class Note(): + octave = None + offset = None + s = None + pitch = None + mod = None + + # [0-9]?[a-gA-G][b]? + # octave (default 4) + # note (case insensitive) + def __init__(self, s): + assert(s) + self.s = s + self.octave = 4 + self.offset = 0 + if s[0].isnumeric() : + self.octave = int(s[0]) + s = s[1:] + note = s[0].lower() + self.mod = s[1:] + assert(note >= 'a' and note <= 'g') + self.offset = ord(note) - ord('a') - 2 + if self.offset < 0 : + self.offset += 7 + # de gab + # c f + self.offset += len([j for j in [1,2,4,5,6] if self.offset >= j]) + if self.mod == "b" and note in "degab" : + self.mod = "" + self.offset -= 1 + self.pitch = 12 * self.octave + self.offset + +class Writer(): + writer = None + + def __init__(self, writer): + self.writer = writer + + def chord(self, chord, duration=1, track=0, channel=0, volume=100): + return self.chords([chord], duration, track, channel, volume) + + def chords(self, chords, duration=1, track=0, channel=0, volume=100): + for chord in chords: + chord = Chord(chord) + for pitch in chord.pitches : + self.writer.pitch(pitch, duration, track, channel, volume) + +class MIDIWriter(): + time = 0 + driver = None + + def __init__(self, driver): + self.driver = driver + + def pitch(self, pitch, duration, track, channel, volume): + self.pitches([pitch], duration, track, channel, volume) + + def pitches(self, pitches, duration, track, channel, volume): + for pitch in pitches : + self.driver.pitch(self.time, pitch, duration, track, channel, volume) + self.time += 1 + + def flush(self, path): + self.driver.write(path) + +class MIDIDriver(): + def pitch(self, time, pitches, duration, track, channel, volume): + raise Exception("not impl") + + def write(self, path) : + raise Exception("not impl") + +class MIDIDriverStream(MIDIDriver): + stream = None + buff = None + def __init__(self, stream=None) : + super().__init__() + self.stream = stream + self.buff = "" + + def pitch(self, time, pitch, duration, track, channel, volume): + if self.buff : + self.buff += "\n" + self.buff += f't={time}, p={pitch}, d={duration}' + + def write(self, path) : + print(self.buff, file=self.stream) + self.buff = "" + +class MIDIDriverStdout(MIDIDriverStream): + def __init__(self) : + super().__init__() + +class MIDIDriverImpl(MIDIDriver): + midi = None + bpm = None + def __init__(self, bpm=60): + self.bpm = bpm + self.__set_midi__() + super().__init__() + + def __set_midi__(self) : + import midiutil + + ttime = 0 # ? + tempo = self.bpm + + self.midi = midiutil.MIDIFile(1) + for track in range(11) : + self.midi.addTempo(track, ttime, tempo) + + def pitch(self, time, pitch, duration, track, channel, volume): + assert(track >= 0 and track <= 10) + self.midi.addNote( + track=track, + channel=channel, + pitch=int(pitch), + time=time, + duration=duration, + volume=volume, + ) + + def write(self, path) : + with open(path, "wb") as f : + self.midi.writeFile(f) + self.__set_midi__() + +if __name__ == "__main__": + main() diff --git a/chords2midi/player/totry.txt b/chords2midi/player/totry.txt new file mode 100644 index 0000000..600197e --- /dev/null +++ b/chords2midi/player/totry.txt @@ -0,0 +1,11 @@ +https://www.mindwerks.net/projects/wildmidi/ +https://en.wikipedia.org/wiki/Software_synthesizer +https://knowyourtheory.com/ +https://yoshimi.github.io/ +https://surge-synthesizer.github.io/ +https://tytel.org/helm/ +https://amsynth.github.io/ +https://awesomeopensource.com/project/FluidSynth/fluidsynth +http://timidity.sourceforge.net/#info +https://www.laborejo.org/documentation/patroneo/english.html + diff --git a/chords2midi/req.txt b/chords2midi/req.txt new file mode 100644 index 0000000..43a6194 --- /dev/null +++ b/chords2midi/req.txt @@ -0,0 +1,3 @@ +MIDIUtil==1.2.1 +mingus==0.5.1 +pychord==0.3.1 diff --git a/textbeat.sh b/textbeat.sh new file mode 100644 index 0000000..4078275 --- /dev/null +++ b/textbeat.sh @@ -0,0 +1 @@ +git clone https://github.com/flipcoder/textbeat.git diff --git a/tone.js b/tone.js new file mode 100644 index 0000000..7c9c9fc --- /dev/null +++ b/tone.js @@ -0,0 +1 @@ +cli too hard