PS3GAME:「Rozen_Maiden_Wechseln_Sie_Welt_ab」I would like to extract the audio data stored in the DAT/FARC file.
If anyone can tell me how to extract from DAT/FARC files, I would appreciate it.
PS3GAME:[Rozen_Maiden_Wechseln_Sie_Welt_ab]How to expand a DAT/FARC file
-
- Posts: 48
- Joined: Tue Oct 18, 2022 10:49 pm
-
- Posts: 48
- Joined: Tue Oct 18, 2022 10:49 pm
-
- Posts: 367
- Joined: Fri Mar 10, 2017 7:23 am
Re: PS3GAME:[Rozen_Maiden_Wechseln_Sie_Welt_ab]How to expand a DAT/FARC file
Here's bms script to extract your sample
If QuickBMS told you that there are files with the same name already just overwrite it.
You can play the extracted MSF file with vgmstream.
Code: Select all
IDString "FARC0100"
get UNK long
get ZERO long
get UNK2 long
get FILES long
get NAME_INFO_SZ long
get ZERO long
get ZERO long
savepos TMP
xmath NAME_INFO_OFF "FILES * 0x14 + TMP"
for i = 0 < FILES
get OFFSET long
get SIZE long
get ZERO long
get UNK3 long
get REL_NAME_OFF long
if SIZE == 0
continue
else
savepos INFO_OFF
xmath NAME_OFF "NAME_INFO_OFF + REL_NAME_OFF"
goto NAME_OFF
get NAME string
log NAME OFFSET SIZE
goto INFO_OFF
endif
next i
You can play the extracted MSF file with vgmstream.