Hello, my pals!
I've been trying to extract the rest of the sound effects and even the voices, but the data are stored.
Is there any program or script to get all the data?
https://drive.google.com/open?id=1yHacw ... CGU363D1qJ
(Mobile) Magia Record
-
- Posts: 190
- Joined: Fri Aug 26, 2016 3:11 pm
Re: (Mobile) Magia Record
Mysticus wrote:Hello, my pals!
I've been trying to extract the rest of the sound effects and even the voices, but the data are stored.
Is there any program or script to get all the data?
https://drive.google.com/open?id=1yHacw ... CGU363D1qJ
They seems to be just hca files?
Ya I was able to convert to wav w/ this https://github.com/losnoco/vgmstream/releases/download/r1050-2797-g5ea57c08/test.zip
-
- Posts: 182
- Joined: Sat Mar 02, 2019 3:24 pm
Re: (Mobile) Magia Record
No, Loki.
What I meant to say is there any program to get all the data from that game?
What I meant to say is there any program to get all the data from that game?
-
- Posts: 190
- Joined: Fri Aug 26, 2016 3:11 pm
Re: (Mobile) Magia Record
Mysticus wrote:No, Loki.
What I meant to say is there any program to get all the data from that game?
Ah, I just used an emulator on the computer and went to settings told it to download everything. I can see if I can capture the download list but that is probably the easiest way.
-
- Posts: 190
- Joined: Fri Aug 26, 2016 3:11 pm
Re: (Mobile) Magia Record
Mysticus wrote:No, Loki.
What I meant to say is there any program to get all the data from that game?
Here ya go, links for all 3.7k sound files
Edit: Apparently I missed one of the lists, it's like 10x that
-
- Posts: 182
- Joined: Sat Mar 02, 2019 3:24 pm
Re: (Mobile) Magia Record
Many thanks! You're my lifesaver!
But how to download ALL of them?
And which one you missed?
But how to download ALL of them?
And which one you missed?
-
- Posts: 190
- Joined: Fri Aug 26, 2016 3:11 pm
Re: (Mobile) Magia Record
Mysticus wrote:Many thanks! You're my lifesaver!
But how to download ALL of them?
And which one you missed?
Sounds2.txt I believe is the complete one, if you want to browse around when I was digging into the NA ones I found what I think is the Japanese mirror site so you can actually traverse through all of the folders etc. https://jp.rika.ren/magica/resource/ (this is disallowed for the NA site)
as for a way to download all the files any download manager you could just put the list into would probably be the easiest way.
Edit: can also do something like this is powershell if you want, that will read each line and download the file
Code: Select all
PS C:\Users\user\Desktop\Files> foreach($s in ([System.IO.File]::ReadAllLines("C:\users\user\Desktop\Files\Sounds.txt"))){ C:\Windows\system32\curl.exe $s -o $s.Substring($s.LastIndexOf('/')+1)}