Page 1 of 1

Ray2Get won't Open?

Posted: Sat Aug 11, 2018 11:00 pm
by screechy
When I use ray2get and try to open the ray2get.py file, it opens the python shell for an instant and then immediately closes. I want to use this to import my own custom music, but alas it won't work. Any help?

Re: Ray2Get won't Open?

Posted: Sun Aug 12, 2018 8:02 pm
by screechy
I also switched to a python version that has been tested and was proved to be working, so i have no idea how to fix this.

Re: Ray2Get won't Open?

Posted: Mon Aug 13, 2018 5:01 am
by WizardMinecraft
Try doing a fresh install of Ray2Get

Re: Ray2Get won't Open?

Posted: Mon Aug 13, 2018 2:36 pm
by PluMGMK
It's a command-line tool, right? You have to launch it from the console, with the appropriate options. You can't just double-click it.

Re: Ray2Get won't Open?

Posted: Mon Aug 13, 2018 2:41 pm
by Steo
Ah I used to make the same mistake with those command line tools back in the day. I love how MS replace CMD with Powershell which doesn't work :lol:

Re: Ray2Get won't Open?

Posted: Tue Aug 28, 2018 12:03 am
by deton24
Put these
https://yadi.sk/d/UZcygfRL3acSCx
into R2 get folder.

Put some WAV.
.....enc will convert any wav placed nearby, into APM

if not, edit the second bat, just by placing correct file name.

Use attached Ray2Get 1.0 to decode APM to WAV in case if 2.0 doesn't work.

__________
edit. 2021

In Windows there is no need to use in batch script "python" before executing Ray2get. The script won't work this way.
Exemplary script for converting all APM files to WAV (go to Rayman 2\Data\World\Sound and save it in notepad as .bat and place Ray2Get nearby):

Code: Select all

@echo off
echo Starting conversion...
for %%f in (*.apm) do echo "%%f" & ray2get di "%%f"
echo Converted.
@echo on
pause

Re: Ray2Get won't Open?

Posted: Tue Sep 04, 2018 12:59 am
by Synthesis
I just fixed a major issue involving the file header; due to a stupid endianness mistake of mine I only discovered slightly too late, ray2get wouldn't even open apm files at all, unless they were generated previously by ray2get. That means a wav->apm->wav process would work, but trying to decode from apm to wav with the original files from the game wouldn't work.
:oops:
I updated the GitHub repository, you might want to try again with the fixed version.