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

x86 Doesn't Work #40

Closed kdoub05 closed 2 years ago

kdoub05 commented 2 years ago

I was trying to run pyMIDI.exe and it said that my PC cant run it. Please help me. This happens even with the newest version of Python installed. Screenshot 2022-06-16 111702

Stereo101 commented 2 years ago

Your computer is 32bit and not 64bit?

Stereo101 commented 2 years ago

You can try directly using the python files in the Source folder if you have python installed.

You need the keyboard library installed via pip, which should be "python -m pip install keyboard" in command prompt. If you don't have pip, or python isn't found in the command prompt, you can enable these options if you run the python installer again (tick install pip and add python to PATH).

You'll also need to move the midi files you want to use into the Source folder to work with them there.

The exe files are there so you don't have to do the above, but they might be compiled for 64bit only.

kdoub05 commented 2 years ago

Thanks!