1
0
Fork 0
mirror of https://github.com/eXpl0it3r/bnkextr.git synced 2026-01-01 10:22:58 +00:00
Wwise *.BNK File Extractor
Find a file
Lukas Dürrenberger 5be16893f9 Update broken links
2025-02-18 08:14:14 +01:00
.github/workflows Update broken links 2025-02-18 08:14:14 +01:00
.gitignore Slightly modernize code base using C++17 2020-06-06 00:55:51 +02:00
bnk.bt Add support for HIRC EventAction dumping 2021-07-09 21:54:49 +02:00
bnkextr.cpp Fix typo in EventActionType 2022-03-08 16:00:47 +01:00
bnkextr.dpr Initial implementation with original Delphi source code. 2015-03-17 19:39:46 +01:00
CMakeLists.txt Clean up some of the code 2021-12-11 20:03:30 +01:00
LICENSE.md Update broken links 2025-02-18 08:14:14 +01:00
README.md Update broken links 2025-02-18 08:14:14 +01:00

Wwise *.BNK File Extractor

This is a C++ rewrite and extension of bnkextr originally written by CTPAX-X in Delphi. It extracts WEM files from the ever more popular Wwise BNK format.

Use ww2ogg to convert WEM files to the OGG format.

Usage

Usage: bnkextr filename.bnk [/swap] [/nodir] [/obj]
        /swap - swap byte order (use it for unpacking 'Army of Two')
        /nodir - create no additional directory for the *.wem files
        /obj - generate an objects.txt file with the extracted object data

BNK Format

Supported HIRC Events

  • Generic event type logging
  • Event
  • EventAction

Build

CMake

cmake -S . -B build/
cmake --build build/ --target install

GCC

g++ bnkextr.cpp -std=c++17 -static -O2 -s -o bnkextr.exe

License

  • bnkextr.dpr falls under the original copryright holders rights and is solely kept for archival purpose
  • bnkextr.cpp is available under 2 licenses: Public Domain or MIT -- choose whichever you prefer