The VG Resource
Extracting Kill La Kill IF sound files - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: The Resources (https://www.vg-resource.com/forum-109.html)
+--- Forum: The Sounds Resource (https://www.vg-resource.com/forum-112.html)
+---- Forum: Ripping Help (https://www.vg-resource.com/forum-116.html)
+---- Thread: Extracting Kill La Kill IF sound files (/thread-37239.html)



Extracting Kill La Kill IF sound files - Evan Axel - 05-29-2020

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!


RE: Extracting Kill La Kill IF sound files - Pingus! - 05-30-2020

Upload file sample for us to help.


RE: Extracting Kill La Kill IF sound files - Evan Axel - 06-07-2020

(05-30-2020, 08:21 PM)Pingus! Wrote: Upload file sample for us to help.
https://www.dropbox.com/sh/xhlyyqjhw0zdcep/AABjtf2rZoH1zgAG-IkDAWX-a?dl=0


RE: Extracting Kill La Kill IF sound files - Anonymity Tony - 06-08-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