Users browsing this thread: 1 Guest(s)
Extracting Kill La Kill IF sound files
#1
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!
Reply
Thanked by:
#2
Upload file sample for us to help.
Reply
Thanked by:
#3
(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
Reply
Thanked by:
#4
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
Reply
Thanked by: Pingus!, Evan Axel


Forum Jump: