This is basically the full OST with loops working correctly. The problem with the Crossbell PC versions is that the loop codes (unlike the Trails in the Sky STEAM releases) don't store their loops in the ogg fileheaders themselves but externally in the t_bgm._dt file in the ../data/text/ folder. Simply replacing this file with the one provided and of course the ../data/bgm/ folder will make it work flawlessly. Before anyone asks: I didn't set the loops myself but I've had an older release of the game on one of my external HDDs which for some reason had the working/looping Evo OST. The only thing I did was to locate the file which contains the loops.
Theoretically this can also be done with Zero no Kiseki, but it requires to modify its t_bgm._dt and set the loops manually. It would be cool if there were a method to not only convert the Vita version's AT9 files but also read their loop codes. But sadly the latter is not possible yet (at least from my knowledge). So manually setting the loops for 100+ files seems to be the only possible way to make a Zero Evo mod as far as I know.
As for the Ao Evo OST itself: Unlike Zero Evo and Sora SC/3rd Evo this one has been done entirely by Yukihiro Jindo and Toshiharu Okajima without other arrangers, leading to a very faithful and consistent OST.
Original OST:
Evo OST:
Edit: due to copyright reasons and concerns I have deleted the complete OST mod pack. Instead I've uploaded just the file (t_bgm._dt) that houses the loop information. You have to copy/replace this file into the ../data/text/ folder. Of course you still need to either get the soundtrack files from somewhere else or convert the AT9 files from your Ao no Kiseki Evolution copy. I won't provide those.
Edit 2: Since some people asked, here a detailed How To on converting the Evo version OST into OGG files:
Prerequisites: Maidump version of Ao no Kiseki Evolution
Tools you need:
- Total Commander + the PSARC Plugin: https://totalcmd.net/plugring/PSARC.html (to unpack the PSARC files found in the Maidump to get the AT9 files)
- AT9 Tool: https://amicitiamods.jcink.net/index.php?showtopic=29
or this version
https://wololo.net/talk/viewtopic.php?t=44525
- WAV to OGG Converter: https://github.com/jcsnider/Batch-Wav-To-Ogg-Converter
Steps:
1. Get the Maidump and extract the PSARC file with Total Commander (it should be the data.psarc )
2. Create a folder and put the AT9Tool.exe as well as the AT9 files in this directory
3. Write a batch file (name it convert.bat or whatever), it belongs in the same directory as the AT9Tool and the AT9 files
Following code for the batch file:
What it does: it creates a new directory, loops through the AT9 files and writes the WAVs into the wav_out directory
4. Convert the WAVs into OGGs with the Batch-Wav-To-Ogg-Converter
5. Paste the OGG files into the ../data/bgm/ game directory
6. Paste the "t_bgm._dt" I've provided into the ../data/text/ game directory
Theoretically this can also be done with Zero no Kiseki, but it requires to modify its t_bgm._dt and set the loops manually. It would be cool if there were a method to not only convert the Vita version's AT9 files but also read their loop codes. But sadly the latter is not possible yet (at least from my knowledge). So manually setting the loops for 100+ files seems to be the only possible way to make a Zero Evo mod as far as I know.
As for the Ao Evo OST itself: Unlike Zero Evo and Sora SC/3rd Evo this one has been done entirely by Yukihiro Jindo and Toshiharu Okajima without other arrangers, leading to a very faithful and consistent OST.
Original OST:
Evo OST:
Edit: due to copyright reasons and concerns I have deleted the complete OST mod pack. Instead I've uploaded just the file (t_bgm._dt) that houses the loop information. You have to copy/replace this file into the ../data/text/ folder. Of course you still need to either get the soundtrack files from somewhere else or convert the AT9 files from your Ao no Kiseki Evolution copy. I won't provide those.
Edit 2: Since some people asked, here a detailed How To on converting the Evo version OST into OGG files:
Prerequisites: Maidump version of Ao no Kiseki Evolution
Tools you need:
- Total Commander + the PSARC Plugin: https://totalcmd.net/plugring/PSARC.html (to unpack the PSARC files found in the Maidump to get the AT9 files)
- AT9 Tool: https://amicitiamods.jcink.net/index.php?showtopic=29
or this version
https://wololo.net/talk/viewtopic.php?t=44525
- WAV to OGG Converter: https://github.com/jcsnider/Batch-Wav-To-Ogg-Converter
Steps:
1. Get the Maidump and extract the PSARC file with Total Commander (it should be the data.psarc )
2. Create a folder and put the AT9Tool.exe as well as the AT9 files in this directory
3. Write a batch file (name it convert.bat or whatever), it belongs in the same directory as the AT9Tool and the AT9 files
Following code for the batch file:
Code:
@Echo off
mkdir wav_out
for %%f in (*.at9) do (
at9tool -d "%%f" "wav_out\%%~nf.wav"
)
What it does: it creates a new directory, loops through the AT9 files and writes the WAVs into the wav_out directory
4. Convert the WAVs into OGGs with the Batch-Wav-To-Ogg-Converter
5. Paste the OGG files into the ../data/bgm/ game directory
6. Paste the "t_bgm._dt" I've provided into the ../data/text/ game directory
Attachments
Last edited by moonblood666,