Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Search this Thread Display Modes
  #76  
Old 26-02-2019, 21:11
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
I know I should use that section, but I don't know what to put there
Reply With Quote
Sponsored Links
  #77  
Old 27-02-2019, 03:10
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,053
Thanks: 1,768
Thanked 2,260 Times in 772 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by zirkhaki View Post
I know I should use that section, but I don't know what to put there
Just enter the path of AppxManifest.xml in the key Manifest#= of the [UWPGame] section.
If you are creating shortcuts, indicate which manifest ID corresponds to the executable in the [Executable#] section

Example (Registering only one manifest and one shortcut)
Code:
[UWPGame]
Manifest1#={app}\AppFiles\AppxManifest.xml

[Executable1]
Name=ORIGINAL
Icon={app}\AppFiles\Assets\Square44x44Logo.scale-400.png
ManifestID=1
Icon= key is opcional
Name= key using ORIGINAL will read the value in the AppxManifest.xml, but you can indicate the name for the shortcut.
ManifestID= key is the number of the registered file AppxManifest.xml
Reply With Quote
The Following 3 Users Say Thank You to Cesar82 For This Useful Post:
mausschieber (27-02-2019), Simorq (27-02-2019), zirkhaki (27-02-2019)
  #78  
Old 27-02-2019, 03:48
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
OK. Was that so easy to install a UWP game? thanks.

I tested it and the game installed properly. just a problem with shortcut.
I have this setting:
Code:
[UWPGame]
----------------------------------------------------------------------------------------------------------------------------------------
Manifest1={app}\AppxManifest.xml

[Executable1]
-------------------------------------------------------------------------------------------------------------------------------------------------------
Name=ORIGINAL
Icon={app}\Resources\Logo.png
ManifestID=1
in desktop I have a file named as "Crackdown 3" and it does not open anything, it has no extension and its size is 0KB
Reply With Quote
  #79  
Old 27-02-2019, 05:27
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,053
Thanks: 1,768
Thanked 2,260 Times in 772 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by zirkhaki View Post
OK. Was that so easy to install a UWP game? thanks.

I tested it and the game installed properly. just a problem with shortcut.
I have this setting:
Code:
[UWPGame]
----------------------------------------------------------------------------------------------------------------------------------------
Manifest1={app}\AppxManifest.xml

[Executable1]
-------------------------------------------------------------------------------------------------------------------------------------------------------
Name=ORIGINAL
Icon={app}\Resources\Logo.png
ManifestID=1
in desktop I have a file named as "Crackdown 3" and it does not open anything, it has no extension and its size is 0KB
Send me a PM (Private Message) with your setup.ini and also your AppxManifest.xml file of the game, which I analyze the problem.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
zirkhaki (02-03-2019)
  #80  
Old 27-02-2019, 12:24
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,305 Times in 464 Posts
Simorq is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
@KaktoR

I did not realize that.
Are files also extracted, or only the percentage (including progress bar) changed?
Possibly this occurs inside some of the libraries (Isdone.dll, Unarc.dll, or DiskSpan.dll).
This bug is only visible using diskspan, because UltraArc does not pause progress while installing (does not request part .002, etc).
I think this is not so important to correct.

The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.

Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;

//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200
Please make this change.

can use "Progress" instead of "SIZE".
For example
Code:
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:60
ArcFile2=Data3.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
20+60+20=100

Last edited by Simorq; 27-02-2019 at 12:27.
Reply With Quote
The Following 4 Users Say Thank You to Simorq For This Useful Post:
K4miKaZe (27-02-2019), mausschieber (27-02-2019), sajmon83 (01-03-2019), zirkhaki (27-03-2019)
  #81  
Old 27-02-2019, 18:43
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,053
Thanks: 1,768
Thanked 2,260 Times in 772 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Simorq View Post
Please make this change.

can use "Progress" instead of "SIZE".
For example
Code:
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:60
ArcFile2=Data3.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
20+60+20=100
It would not work.
UltraArc makes splits automatically when file is larger than disk (At least old version of UA).
Size will work fine in all cases, including the items on the task page
Size will be optional. If not put will work as before.
It would be simple to add Size to the UA because you just put the FindFirst function after you complete and add the values to the Records.ini
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
sajmon83 (01-03-2019), Simorq (28-02-2019)
  #82  
Old 01-03-2019, 09:19
MiniByte MiniByte is offline
Registered User
 
Join Date: Mar 2018
Location: rOMania
Posts: 1
Thanks: 3
Thanked 0 Times in 0 Posts
MiniByte is on a distinguished road
Many special thanks KaktoR & Razor12911 for all. I'm beginer.
Reply With Quote
  #83  
Old 05-03-2019, 02:39
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
I checked the Farsi translation, it needed some improvement. I translated the English parts and did some improvement on translated parts and alignment problems.

If you like, you can replace it with the old Farsi file in language folder.
Attached Files
File Type: zip Farsi.zip (4.0 KB, 7 views)
Reply With Quote
The Following 5 Users Say Thank You to zirkhaki For This Useful Post:
Cesar82 (07-03-2019), KaktoR (05-03-2019), mausschieber (05-03-2019), sajmon83 (07-03-2019), Simorq (05-03-2019)
  #84  
Old 10-03-2019, 20:14
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,053
Thanks: 1,768
Thanked 2,260 Times in 772 Posts
Cesar82 is on a distinguished road
CIU video black screen with audio only.

Hello guys.

Fabioddq reported a problem while playing .mp4 video in CIU.
The screen turns black and only plays the audio of the video.

I found out what happens to those who are using the latest versions of K-Lite Codec Pack.
The K-Lite developers have altered something in the LAV Video Decoder, it might be that the h264 option was unchecked before (I do not know).
With this option checked, the video does not play back the image (Audio only).

The LINK has a video on how to make the video work again. At the beginning of the video, if you are installing the K-Lite Codec Pack, and more towards the end of the video shows how to uncheck if you already have K-Lite installed.

There's nothing I can do to fix this.
Perhaps an update to the "ISMediaLib.dll" library (by altef_4) is required, or even a "LAV Video decoder" fix if it is a bug.
Maybe in the future it will work again when activated...
Reply With Quote
The Following 5 Users Say Thank You to Cesar82 For This Useful Post:
K4miKaZe (11-03-2019), mausschieber (11-03-2019), pakrat2k2 (11-03-2019), Simorq (11-03-2019), zirkhaki (11-03-2019)
  #85  
Old 11-03-2019, 13:40
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,305 Times in 464 Posts
Simorq is on a distinguished road
@Cesar82



Avidemux
Reply With Quote
The Following 3 Users Say Thank You to Simorq For This Useful Post:
Cesar82 (11-03-2019), K4miKaZe (11-03-2019), pakrat2k2 (11-03-2019)
  #86  
Old 11-03-2019, 18:13
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,053
Thanks: 1,768
Thanked 2,260 Times in 772 Posts
Cesar82 is on a distinguished road
@Simorq
if work, it's a solution, but we usually download the YouTube video and want to use it as it is.
The downloaded videos from YouTube that I downloaded a while back work fine, not now.

For me here using AVI Demux and using COPY did not work.
@Simorq If you want to test, try using this video HERE.

Last edited by Cesar82; 11-03-2019 at 22:11.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Simorq (12-03-2019)
  #87  
Old 12-03-2019, 12:27
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,305 Times in 464 Posts
Simorq is on a distinguished road
@Cesar82
You're right
By Remove "Haali Media Splitter"

The screen is black.

It's best to encode the video to XVID.
So even in Windows XP as well as the video is displayed.

Last edited by Simorq; 12-03-2019 at 12:30.
Reply With Quote
The Following 2 Users Say Thank You to Simorq For This Useful Post:
Cesar82 (12-03-2019), wangfeilong0317 (13-08-2019)
  #88  
Old 27-03-2019, 14:35
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
@KaktoR


The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.

Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;

//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200
I tried to add this to setup.ini but still does not work.
I have a "data1.bin" which is 160MB and a data2.bin.001 which is 21.4GB.
data1.bin goes to 50% in progress bar.

I used these methos:
Code:
[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1;Size:600;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1;Size:31500;

or

[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1; Size:160;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:21400;

or 

[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1; Progress:5;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:95;
I even used "Size=**" in Records.ini but still didn't work.
Reply With Quote
  #89  
Old 27-03-2019, 14:47
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,504
Thanks: 1,086
Thanked 7,126 Times in 2,709 Posts
KaktoR is on a distinguished road
^That's because this is not a part of public version atm (it is in testing).

If you want to participate in testing this, write Cesar82 a PM
__________________
Haters gonna hate
Reply With Quote
The Following 4 Users Say Thank You to KaktoR For This Useful Post:
mausschieber (27-03-2019), pakrat2k2 (28-03-2019), Simorq (27-03-2019), zirkhaki (27-03-2019)
  #90  
Old 08-04-2019, 05:55
mahmoudmakhamra mahmoudmakhamra is offline
Registered User
 
Join Date: Nov 2018
Location: palestine
Posts: 25
Thanks: 9
Thanked 3 Times in 3 Posts
mahmoudmakhamra is on a distinguished road
There is a problem with a browse button
I can not move it or put a button back on it

Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
[GSERIES] Custom Installer Ultimate V2g Gupta Conversion Tutorials 226 01-06-2018 13:12
Crysis 3 DVD9 to 3xDVD5 Custom Installer spawniectes PC Games - CD/DVD Conversions 79 31-08-2017 07:19



All times are GMT -7. The time now is 06:20.


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