Posts: 2
Threads: 1
Joined: Oct 2018
Hello! I got Kill La Kill:IF for the PC and I want to extract the sound file of the game. However, I noticed they are all in .snp and .vcd files. Upon looking at them via a hex editor, these files contain .oggs. How can I extract them? I find nothing when I try to look up .snp, and searching for .vcd's point me towards video converters. I'm not sure if those will work.
Thank you for your time!
Posts: 841
Threads: 27
Joined: Jan 2015
Upload file sample for us to help.
Posts: 2
Threads: 1
Joined: Oct 2018
(05-30-2020, 08:21 PM)Pingus! Wrote: Upload file sample for us to help.
https://www.dropbox.com/sh/xhlyyqjhw0zdc...AWX-a?dl=0
Posts: 11
Threads: 1
Joined: Feb 2020
Code:
# Kill La Kill IF .snp sound files
# Script for QuickBMS - http://quickbms.aluigi.org
idstring "DGKP"
endian little
goto 0xC
get FILES long
goto 0x30
for i = 0 < FILES
getdstring DUMMY 4 # SOGG
get ENTRY_LEN long # 0x90
get FILE_LEN long
get FILE_POS long
getdstring NAME 0x80
log NAME FILE_POS FILE_LEN
next i
https://pastebin.com/EZyeTAVm