Hello everybody! I recently came across a program called
Ray2Get. I was interested in the program because I wanted to insert custom music into Tonic Trouble, and maybe even Rayman 2. However there is an issue, no matter what I do it seems that this program will not work at all! I have Python 3.10.5 x64 installed to my computer so if the program only works with a specific version of Python then let me know but I don't think that's the issue here. I read on the GitHub page that it's a command line tool so I found deton24's batch script that is supposed to work with Windows but to my surprise it did not work.
Code: Select all
@echo off
echo Starting conversion...
for %%f in (*.apm) do echo "%%f" & ray2get di "%%f"
echo Converted.
@echo on
pause
Above is deton24's batch script that is supposed to convert .apm files (the files that store Rayman 2's music) into .wav files. Upon loading this up in a .bat file I get this:

It seems Windows doesn't recognize Ray2Get as a python script even though it's in the same directory as the .bat file. No matter what changes I make to the batch script nothing fixes it and I'm now at a loss. If anyone knows how to fix this or if I'm just doing this completely wrong please let me know.