Just Dance 3 Wii (.bin)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Mail37
Posts: 2
Joined: Sat Mar 09, 2019 5:21 pm

Just Dance 3 Wii (.bin)

Post by Mail37 »

I want decompress these files (bin) somebody can help me ?

file : https://drive.google.com/file/d/1hKg5yV ... sp=sharing
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Just Dance 3 Wii (.bin)

Post by aluigi »

I clearly see raw GC adpcm audio data, you can recognize it due to the 8 bytes patterns with the first byte being similar to the previous and next pattern (hex editor + scrolling trick).

Use this script for dumping the data:

Code: Select all

# Just Dance 3 Wii (.bin)

get FILES long
for i = 0 < FILES
    get DUMMY short
    get DUMMY short
    get XSIZE long
    get SIZE long
    savepos OFFSET
    log "" OFFSET SIZE
    goto SIZE 0 SEEK_CUR
next i
Opening the file is a bit complicated since they are raw or uknown formats.
Mail37
Posts: 2
Joined: Sat Mar 09, 2019 5:21 pm

Re: Just Dance 3 Wii (.bin)

Post by Mail37 »

aluigi wrote:I clearly see raw GC adpcm audio data, you can recognize it due to the 8 bytes patterns with the first byte being similar to the previous and next pattern (hex editor + scrolling trick).

Use this script for dumping the data:

Code: Select all

# Just Dance 3 Wii (.bin)

get FILES long
for i = 0 < FILES
    get DUMMY short
    get DUMMY short
    get XSIZE long
    get SIZE long
    savepos OFFSET
    log "" OFFSET SIZE
    goto SIZE 0 SEEK_CUR
next i
Opening the file is a bit complicated since they are raw or uknown formats.


Thanks! :D
AlarodJD
Posts: 70
Joined: Thu Mar 21, 2019 1:02 am

Re: Just Dance 3 Wii (.bin)

Post by AlarodJD »

with this script they came out in dats