FileForums

FileForums (https://fileforums.com/index.php)
-   PC Games - CD/DVD Conversions (https://fileforums.com/forumdisplay.php?f=39)
-   -   Tron: Evolution (DVD9 to 1x DVD5) *Multi 5* *INNO SETUP* (https://fileforums.com/showthread.php?t=90864)

peterf1999 15-12-2010 02:10

1 Attachment(s)
Quote:

Originally Posted by theimperatorum (Post 391033)
The conversion is very rapid and the video file works perfect (with audio). Just open RAD video, Select the video file, press bink it, settings the % and start the conversion.

OMG,i have not explained or you have misunderstood, the tron's videos contain multiple audio tracks, if you make a simple resampling with sound enabled, you will get a video with only one audio track (the 1st track) but the video has multiple audio tracks for each game's language. The correct procedure is to resample the video, extract audio tracks and then remuxing them.

Attachment 2077

I hope everything is clear :)

pleomax 15-12-2010 04:13

But peterf1999 i did like theimperatorum said and because i use English Language during Setup i don't need the other audio tracks.

By resampling the bik files i was able to include DirectX, PhysX and Gfwl in my DVD5.

Will it be possible for you to make an exe which will install DirectX, PhysX and Gfwl after the Setup finishes like the Original Installer?

pakrat2k2 26-12-2010 10:03

Quote:

Originally Posted by goybus (Post 391223)
What files and folders I must be to compress? The final Game Dir or the Tron DVD5, because my final folder size is Movies 2.67 GB and Tron_Evolution.arc 4.12. Thx for the conversion.
Spanish Conversion

Obviously you didnt follow the steps properly. Start over again, meaning uninstall TRON & reinstall it. Then start conversion over again, do each step
and make sure you understand what it means before proceding and if you dont understand then stop & ask questions here

Step 4 means goto your installed game dir and delete the corresponding files you DONT want.

-> GridGame\CookedPC\Startup_foreignlanguages.upk files ANY ( that are NOT spanish ) -> Startup_CZE.upk Startup_DEU.upk Startup_FRA.upk etc

-> GridGame\Localization\foreignlanguages folders THOSE that arent spanish

DEU / INT / FRA etc DELETE those folders...

-> GridGame\CookedPC\foreignlanguages folders DELETE the English(US), French(France), German, Italian FOLDERS


Follow the rest of conversion, DONT overwrite movies when moving them.

Your Tron_Evolution.arc file ( you start freearc and select ALL files/folders INSIDE your installed game dir ) should end up about 1.77GB. The whole ISO should be no bigger then 4.37GB

pakrat2k2 28-12-2010 15:25

1. uninstall original version after completing conversion.
2. Run from ISO, you CANNOT run conversion from temp folder

sevendays 21-01-2011 12:25

Great thanks! ^^

peterf1999 25-01-2011 09:11

Quote:

Originally Posted by mangusta (Post 391660)
Ii didn't understand what files i have to compress: Entire Tron Evolution Directory? or GridGame Directory? THX a lot.

Tron Evolution Directory's contents ;)

85e 25-01-2011 22:16

It works!!! For ENG version
Thx peterf1999 :D

BlackWhite 18-03-2011 14:29

Hello peterf1999

About Inno
Quote:

RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin's Creed Brotherhood',
'InstallDir', appath)
....
or
Quote:

RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Drakensang - Phileasson's Secret',
'Path', appath)
...
'SOFTWARE\Ubisoft\Assassin's Creed Brotherhood',
'SOFTWARE\Drakensang - Phileasson's Secret'
Give me error because Assasin's and Phileasson's contain '. Like any word with ' in their name.
Do you know how fix this error, please?

Thanks and greeting

Joe Forster/STA 18-03-2011 16:40

Try replacing ' (single apostrophe) with the usual escape sequences: '' (two apostrophes) or \' (backslash and apostrophe).

peterf1999 19-03-2011 01:14

Quote:

Originally Posted by BlackWhite (Post 392851)
Hello peterf1999

About Inno
or
'SOFTWARE\Ubisoft\Assassin's Creed Brotherhood',
'SOFTWARE\Drakensang - Phileasson's Secret'
Give me error because Assasin's and Phileasson's contain '. Like any word with ' in their name.
Do you know how fix this error, please?

Thanks and greeting

The characters can be specified by their character value (usually an ASCII code):

Code:

RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin'#39's Creed Brotherhood',
'InstallDir', appath)

or

Code:

RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin'+chr(39)+'s Creed Brotherhood',
'InstallDir', appath)


The-revenge 19-03-2011 12:37

thanks for the conversion!!! I have a little problem, when i mount the ISO image the setup.exe don't start. I try to execute it trought the autoplay and directly on the setup.exe (with the administrator's rights), but don't work. I use windws 7 64 bit
EDIT : the setup in winx XP works

peterf1999 20-03-2011 04:42

Quote:

Originally Posted by The-revenge (Post 392891)
thanks for the conversion!!! I have a little problem, when i mount the ISO image the setup.exe don't start. I try to execute it trought the autoplay and directly on the setup.exe (with the administrator's rights), but don't work. I use windws 7 64 bit
EDIT : the setup in winx XP works

Did you remove the original instalation?

Check if this registry key was removed:

HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432node\\Disney Interactive Studios\tr2npc

The-revenge 20-03-2011 04:47

Quote:

Originally Posted by peterf1999 (Post 392905)
Did you remove the original instalation?

Check if this registry key was removed:

HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432node\\Disney Interactive Studios\tr2npc

thanks, now work. I tryed to find the installation file in register, searching "tron", but the follow registry key don't show me. My problem was a incorrect unistalling (PC crash).
Thanks peter

BlackWhite 24-03-2011 01:53

Sorry for the delay
Quote:

Originally Posted by Joe Forster/STA (Post 392855)
Try replacing ' (single apostrophe) with the usual escape sequences: '' (two apostrophes) or \' (backslash and apostrophe).

No work, at least for me. Directly assigned as two ' to the name of the folder
also thank

Quote:

Originally Posted by peterf1999 (Post 392863)
The characters can be specified by their character value (usually an ASCII code):

Code:

RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin'#39's Creed Brotherhood',
'InstallDir', appath)

or

Code:

RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin'+chr(39)+'s Creed Brotherhood',
'InstallDir', appath)


I tested Assassin'+chr(39)+'s and works
Thanks and greeting

karimazwaw 18-03-2012 10:15

Hi, i have a question (maybe stupid): How about if i delete all *.bik files and remplace them by dummies ones ? is there any chance that the game work? (of course without cinematics)
Thanks


All times are GMT -7. The time now is 23:36.

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