The VG Resource

Full Version: Extracting Kill La Kill IF sound files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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!
Upload file sample for us to help.
(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
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