I want decompress these files (bin) somebody can help me ?
file : https://drive.google.com/file/d/1hKg5yV ... sp=sharing
Just Dance 3 Wii (.bin)
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Just Dance 3 Wii (.bin)
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:
Opening the file is a bit complicated since they are raw or uknown formats.
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
-
- Posts: 2
- Joined: Sat Mar 09, 2019 5:21 pm
Re: Just Dance 3 Wii (.bin)
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:Opening the file is a bit complicated since they are raw or uknown formats.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
Thanks!
-
- Posts: 70
- Joined: Thu Mar 21, 2019 1:02 am
Re: Just Dance 3 Wii (.bin)
with this script they came out in dats