Stereo101 / python-MidiToVirtualPianoMacro

Takes a midi file and converts it into a macro which will play the midi using virtualpiano.net. Uses pyHook and ctypes for macro execution.
102 stars 84 forks source link

Bug fix for supporting multiple languages #65

Open starryeye-0001 opened 4 months ago

starryeye-0001 commented 4 months ago

// pyMIDI.py function save record

def save_record(self,record_file): print("Saving processing log to",record_file) with open(record_file,"w", encoding='utf-8') as f: for s in self.midiRecord_list: f.write(s) return

atirut-w commented 4 months ago

If you want to be in the record, you can fork the repo and edit the file yourself. Or, if you'd like, I can PR that in your place.