Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Search found 78 matches

by spider91
Tue Oct 06, 2015 4:39 am
Forum: Audio file formats
Topic: help pls (wem2ogg)
Replies: 4
Views: 6322

Re: help pls (wem2ogg)

Use this tool
by spider91
Sat Oct 03, 2015 8:25 pm
Forum: Audio file formats
Topic: Block N Load [*.wem]
Replies: 2
Views: 1155

Re: Block N Load [*.wem]

Half of them are vorbis and it seems you didn't notice spaces in names. In this case you need to use "" for filename (ww2ogg --pcb packed_codebooks_aoTuV_603.bin "BnL Theme V3_longer.wem"). Others are pcm and you can use this script.
by spider91
Thu Oct 01, 2015 1:12 pm
Forum: Audio file formats
Topic: Darkness 2/Warframe/Star Trek Compressed audio (headerless)
Replies: 15
Views: 8029

Re: Darkness 2/Warframe/Star Trek Compressed audio (headerle

In darkness 2 files are adpcm. I can restore headers for some files and play them, but not for all.
by spider91
Sun Sep 13, 2015 6:09 pm
Forum: Audio file formats
Topic: Sound ZombiU .SON
Replies: 2
Views: 945

Re: Sound ZombiU .SON

It's not raw pcm, it's normal pcm audio. Just remove first 32 bytes from file and you can play it with any player.
by spider91
Thu Sep 03, 2015 2:41 am
Forum: Audio file formats
Topic: Rayman Legends PC Audio Container
Replies: 27
Views: 11895

Re: Rayman Legends PC Audio Container

Replace

Code: Select all

%CD%\quickbms.exe
with

Code: Select all

"%CD%\quickbms.exe"
You must do it when you have spaces in your filenames/pathes.
by spider91
Thu Sep 03, 2015 2:35 am
Forum: Audio file formats
Topic: Rayman Legends PC Audio Container
Replies: 27
Views: 11895

Re: Rayman Legends PC Audio Container

1) It's a simple .txt file renamed to .bat
2) In folder with .ckd files or in the main game folder (it will scan subdirectories too)
3) Yes, it's the same script i posted before.
4) Can't undestand this one.
by spider91
Thu Sep 03, 2015 1:56 am
Forum: Audio file formats
Topic: Rayman Legends PC Audio Container
Replies: 27
Views: 11895

Re: Rayman Legends PC Audio Container

You can create batch file like this (just change pathes to ones you are using)

Code: Select all

for /r %%i in (*.ckd) do (
cd "%%~dpi"
"C:\Users\spider91\Desktop\test\quickbms.exe" "C:\Users\spider91\Desktop\test\script.txt" "%%i"
)
pause
by spider91
Thu Sep 03, 2015 1:47 am
Forum: Audio file formats
Topic: Rayman Legends PC Audio Container
Replies: 27
Views: 11895

Re: Rayman Legends PC Audio Container

Image

Maybe it's about version of quickbms. What is your version?
by spider91
Thu Sep 03, 2015 1:38 am
Forum: Audio file formats
Topic: Rayman Legends PC Audio Container
Replies: 27
Views: 11895

Re: Rayman Legends PC Audio Container

Upload a file that gives that error. I've tested it on all files from your previous acrhieve only and it worked well.
by spider91
Wed Sep 02, 2015 2:46 pm
Forum: Audio file formats
Topic: Rayman Legends PC Audio Container
Replies: 27
Views: 11895

Re: Rayman Legends PC Audio Container

for mono (should work for stereo as well) adpcm files that lonrot posted before get NAME basename goto 0x38 get DATA_SIZE long set RIFF_SIZE long DATA_SIZE math RIFF_SIZE += 0x46 set FULL_SIZE long RIFF_SIZE math FULL_SIZE += 0x8 get CODEC short get CHANNELS short get FREQ long get BPS long get ALIG...
by spider91
Fri Aug 21, 2015 10:35 pm
Forum: Audio file formats
Topic: Trine 3 new WEM format
Replies: 3
Views: 4037

Re: Trine 3 new WEM format

Since i stiil receiving pm's about this format here is a simple script for music files with codec id FFFE (for FFFF use ww2ogg) get SIZE asize math SIZE -= 0x12 putVarChr MEMORY_FILE SIZE 0 log MEMORY_FILE 0 0 append log MEMORY_FILE 0 0x26 math SIZE -= 0x26 log MEMORY_FILE 0x38 SIZE append get SIZE ...
by spider91
Mon Aug 10, 2015 3:04 pm
Forum: Audio file formats
Topic: WMA 5.1 console mixer
Replies: 0
Views: 661

WMA 5.1 console mixer

I need a console application that can mix wma 5.1 to wmv video. Sadly ffmpeg doesn't work propperly, i use ffmpeg -i CHL_01.wmv -i CHL_01.wma -c copy -map 0:5 -map 0:1 done.wmv and all i get it's wmv video with broken sound, cause it sets format to Extensible (http://puu.sh/jsJgE/3b0ca9a6e0.png). So...
by spider91
Tue Aug 04, 2015 6:52 pm
Forum: Game Archive
Topic: Star Wars The Force Unleashed pcd, pcp files
Replies: 15
Views: 7892

Re: Star Wars The Force Unleashed pcd, pcp files

AlphaTwentyThree First of all thanks for your work. I've unpacked some files and found a little error in your script. get UNK long 0 set NAMEOFF FILES math NAMEOFF *= 0x1c math NAMEOFF += 0x10 should be replaced to get XML long 0 set NAMEOFF FILES math NAMEOFF *= 0x1c math NAMEOFF += 0x10 math NAME...
by spider91
Thu Jul 30, 2015 10:50 am
Forum: Audio file formats
Topic: Force Unleashed II Bnk and Riff Wave
Replies: 5
Views: 1796

Re: Force Unleashed II Bnk and Riff Wave

You are doing something wrong, cause it works. Proff ---> http://puu.sh/jiC53/73ec078aa7.png
by spider91
Wed Jul 29, 2015 8:11 pm
Forum: Audio file formats
Topic: Force Unleashed II Bnk and Riff Wave
Replies: 5
Views: 1796

Re: Force Unleashed II Bnk and Riff Wave

Just converted .wav file with ww2ogg. Works fine.