Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 18-10-2022, 04:15
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
A Plague Tale Requiem

*.dpc -> zlib
Different voice packs are all contained in VO_MEDIA.PC.PCK - use WWise PCK BMS script from here to extract and then use XTool erase command to remove unneeded voice packs.
Reply With Quote
The Following 2 Users Say Thank You to Masquerade For This Useful Post:
KaktoR (18-10-2022), ScOOt3r (18-10-2022)
Sponsored Links
  #2  
Old 18-10-2022, 11:55
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 217
Thanks: 513
Thanked 78 Times in 71 Posts
fabrieunko is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
Different voice packs are all contained in VO_MEDIA.PC.PCK - use WWise PCK BMS script from here to extract and then use XTool erase command to remove unneeded voice packs.
can you tell me if i think i'm doing it right?

I launch quickbms, I open the WWise.bms file then the VO_MEDIA.PC.PCK file



it is extracted from wma files in directories (chinese(simplified)/english(us)/french(france)/german/spanish(spain)

if i want to delete the german i type in a back window (from the post of KaktoR)

xtool erase "VO_MEDIA.PC.PCK_extract\german" "VO_MEDIA.PC.PCK" test.xtl
Reply With Quote
  #3  
Old 18-10-2022, 12:06
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Quote:
Originally Posted by fabrieunko View Post
can you tell me if i think i'm doing it right?

I launch quickbms, I open the WWise.bms file then the VO_MEDIA.PC.PCK file



it is extracted from wma files in directories (chinese(simplified)/english(us)/french(france)/german/spanish(spain)

if i want to delete the german i type in a back window (from the post of KaktoR)

xtool erase "VO_MEDIA.PC.PCK_extract\german" "VO_MEDIA.PC.PCK" test.xtl
Make batch files for this, so you don't have to type all manually in cmd.

unpack.bat for quickbms
Code:
for %%f in (*.pck) do quickbms_4gb_files.exe -d -o -Y wwise.bms "%%f"
pause
xtool_erase.bat for xtool
Code:
xtool erase "VO_MEDIA.PC.PCK_extract\german" "VO_MEDIA.PC.PCK" test.xtl
This will delete all german voice files from the file.

PS: Make a backup of the file first
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
fabrieunko (18-10-2022)
  #4  
Old 16-02-2023, 09:15
Butza Butza is offline
Registered User
 
Join Date: Jun 2021
Location: Kiev
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
Butza is on a distinguished road
I am newbie. this is what it says to me when I use it Skipped VO_MEDIA.PC.PCK (Larger than 2147483647)

Quote:
Originally Posted by KaktoR View Post
Make batch files for this, so you don't have to type all manually in cmd.

unpack.bat for quickbms
Code:
for %%f in (*.pck) do quickbms_4gb_files.exe -d -o -Y wwise.bms "%%f"
pause
xtool_erase.bat for xtool
Code:
xtool erase "VO_MEDIA.PC.PCK_extract\german" "VO_MEDIA.PC.PCK" test.xtl
This will delete all german voice files from the file.

PS: Make a backup of the file first
Reply With Quote
  #5  
Old 16-02-2023, 23:31
Butza Butza is offline
Registered User
 
Join Date: Jun 2021
Location: Kiev
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
Butza is on a distinguished road
Did now the test.xtl file appeared, but the file itself did not change the size. what to do next with this file? file size does not decrease after erasing

Quote:
Originally Posted by KaktoR View Post
Make batch files for this, so you don't have to type all manually in cmd.

unpack.bat for quickbms
Code:
for %%f in (*.pck) do quickbms_4gb_files.exe -d -o -Y wwise.bms "%%f"
pause
xtool_erase.bat for xtool
Code:
xtool erase "VO_MEDIA.PC.PCK_extract\german" "VO_MEDIA.PC.PCK" test.xtl
This will delete all german voice files from the file.

PS: Make a backup of the file first
Reply With Quote
  #6  
Old 18-10-2022, 04:44
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Does not work here, or lets say only partial.

Seems like xtool just erase some files, as I can see in hex editor filled sectors with zeros. But if I extract the archive once again, all files are still there.

Maybe I do it just wrong lol

Edit: Oh ok, the extracted files are zero'ed, now I got it.

Edit 2: Forget my prevous edit. Seems like this one worked correctly (before I was using wildcards for the folders/files)

Code:
xtool erase "VO_MEDIA.PC.PCK_extract\chinese(simplified)" "VO_MEDIA.PC.PCK" test.xtl
xtool erase "VO_MEDIA.PC.PCK_extract\french(france)" "VO_MEDIA.PC.PCK" test.xtl
xtool erase "VO_MEDIA.PC.PCK_extract\german" "VO_MEDIA.PC.PCK" test.xtl
xtool erase "VO_MEDIA.PC.PCK_extract\spanish(spain)" "VO_MEDIA.PC.PCK" test.xtl
__________________
Haters gonna hate

Last edited by KaktoR; 18-10-2022 at 05:17.
Reply With Quote
  #7  
Old 19-10-2022, 09:47
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Uncharted Legacy of Thieves Collection Precompression

Using the oo2core_9_win64.dll from game folder:

Code:
Compressing animtex0.psarc, 47,187,477 bytes

xtool v0.6.5 (-mkraken)

Compressed 1 file, 47,187,477 => 180,655,223 bytes. Ratio 382.85%
Compression time: cpu 0.05 sec/real 6.76 sec = 1%. Speed 6.98 mB/s
All OK

xtool v0.6.5 (-mkraken:n256)

Compressed 1 file, 47,187,477 => 183,093,362 bytes. Ratio 388.01%
Compression time: cpu 0.06 sec/real 11.78 sec = 1%. Speed 4.01 mB/s
All OK

oo2reck (rename oo2core_9_win64.dll to oo2core_7_win64.dll)

Compressed 1 file, 47,187,477 => 183,176,064 bytes. Ratio 388.19%
Compression time: cpu 0.08 sec/real 15.15 sec = 1%. Speed 3.11 mB/s
All OK

Last edited by Masquerade; 19-10-2022 at 10:09.
Reply With Quote
The Following 3 Users Say Thank You to Masquerade For This Useful Post:
L0v3craft (19-10-2022), Prettyboy099 (20-10-2022), ScOOt3r (19-10-2022)
  #8  
Old 19-10-2022, 15:21
dixen dixen is offline
Registered User
 
Join Date: Sep 2014
Location: Russia
Posts: 410
Thanks: 453
Thanked 444 Times in 204 Posts
dixen is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
Uncharted Legacy of Thieves Collection Precompression
Using the oo2core_9_win64.dll from game folder:
And zlib also

XTool v0.53 (zlib+kraken)

Quote:
Compressing 4 files, 58,792,062 bytes. Processed 0%
Compressing 58,792,062 bytes with xtool.exe precomp -mzlib+reflate+kraken -c128mb -t100p $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
XTool is created by Razor12911

Streams: 6445/6445
Time: 00:00:50 (00:00:49)
Memory: 331 MB (331 MB)

100%
Errorlevel=0
Compressed 4 files, 58,792,062 => 211,162,930 bytes. Ratio 359.17%
Compression time: cpu 0.02 sec/real 50.73 sec = 0%. Speed 1.16 mB/s
All OK
XTool v0.53 (only kraken)

Quote:
Compressing 4 files, 58,792,062 bytes. Processed 0%
Compressing 58,792,062 bytes with xtool.exe precomp -mkraken -c128mb -t100p $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
XTool is created by Razor12911

Streams: 6370/6370
Time: 00:00:45 (00:00:44)
Memory: 298 MB (298 MB)

100%
Errorlevel=0
Compressed 4 files, 58,792,062 => 197,760,883 bytes. Ratio 336.37%
Compression time: cpu 0.00 sec/real 46.67 sec = 0%. Speed 1.26 mB/s
All OK

Last edited by dixen; 19-10-2022 at 15:27.
Reply With Quote
The Following 3 Users Say Thank You to dixen For This Useful Post:
KaktoR (20-10-2022), Prettyboy099 (20-10-2022), ScOOt3r (19-10-2022)
  #9  
Old 20-10-2022, 07:51
Wanterlude's Avatar
Wanterlude Wanterlude is offline
Registered User
 
Join Date: Apr 2017
Location: Swamp in Russia
Posts: 38
Thanks: 242
Thanked 70 Times in 24 Posts
Wanterlude is on a distinguished road
Uncharted Legacy of Thieves Collection (v.1.0.20122 | English/Russian lang.)

Code:
XTool (zlib+kraken*)+srep+lolz

Compressed 81 files, 106,547,733,553 => 51,633,688,075 bytes. Ratio 48.46%
Compression time: cpu 1323.59 sec/real 33653.46 sec = 4%. Speed 3.17 mB/s
Overall conversion time: 09:20:55 (i5 11400F)

99.23 GB => 48.09 GB
*Use oo2core_9_win64.dll from game folder
Reply With Quote
The Following 4 Users Say Thank You to Wanterlude For This Useful Post:
dixen (20-10-2022), fabrieunko (20-10-2022), Gehrman (20-10-2022), JustFun (11-12-2022)
  #10  
Old 20-10-2022, 09:05
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 217
Thanks: 513
Thanked 78 Times in 71 Posts
fabrieunko is on a distinguished road
Quote:
Originally Posted by Wanterlude View Post
Uncharted Legacy of Thieves Collection (v.1.0.20122 | English/Russian lang.)

Code:
XTool (zlib+kraken*)+srep+lolz

Compressed 81 files, 106,547,733,553 => 51,633,688,075 bytes. Ratio 48.46%
Compression time: cpu 1323.59 sec/real 33653.46 sec = 4%. Speed 3.17 mB/s
Overall conversion time: 09:20:55 (i5 11400F)

99.23 GB => 48.09 GB
*Use oo2core_9_win64.dll from game folder
how to use your :Use oo2core_9_win64.dll with dsg?
Reply With Quote
  #11  
Old 20-10-2022, 10:42
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Quote:
Originally Posted by fabrieunko View Post
how to use your :Use oo2core_9_win64.dll with dsg?
DSG contains fake parameters for xtool. Use "xtool:mkraken:9+xtool:mzlib" to use oo2core_9_win64.dll library.
__________________
Haters gonna hate
Reply With Quote
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
fabrieunko (21-10-2022), mausschieber (20-10-2022)
  #12  
Old 20-10-2022, 14:14
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,335 Times in 2,837 Posts
KaktoR is on a distinguished road
Anyone knows what compression "The Valiant" is using? unity lz4/lz4hc does not seem to have any effect.

Sample
__________________
Haters gonna hate

Last edited by KaktoR; 20-10-2022 at 14:17.
Reply With Quote
  #13  
Old 20-10-2022, 14:22
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Anyone knows what compression "The Valiant" is using? unity lz4/lz4hc does not seem to have any effect.

Sample
I believe it's LZ4, but Razor might need to take a look at this one because the unity plugin could be bugged.
Reply With Quote
The Following User Says Thank You to Masquerade For This Useful Post:
KaktoR (20-10-2022)
  #14  
Old 21-10-2022, 21:00
shazzla shazzla is offline
Registered User
 
Join Date: Nov 2010
Location: Hunnia
Posts: 292
Thanks: 523
Thanked 102 Times in 78 Posts
shazzla is on a distinguished road
Hi!

Anyone knows what is the correct LZ4 library for COD : Infinite warfare ?
Reply With Quote
  #15  
Old 23-10-2022, 02:54
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Treasures of the Aegean

Code:
xtool_unity+srep+lolz
1.5GB ---> 850MB

liblz4 v1.8.3 used.
Reply With Quote
The Following User Says Thank You to Masquerade For This Useful Post:
JustFun (11-12-2022)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Games Are For Kids JoyBoy Chit Chat 83 16-11-2021 14:28
CorePack Compression methods ? Help ramazan19833 Conversion Tutorials 34 09-08-2018 06:51
i got the email in the mail about copying ps2 games EVOEvo PS2 Games 7 21-11-2003 07:56
Self-booting games on an older Japanese DC? Named DC Games 1 26-09-2003 17:48
Having Problems Burning Numerous *Recent* Games....Help is Appreciated Protosstic PSX Games 2 15-01-2002 21:27



All times are GMT -7. The time now is 02:40.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com