-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
572b8cf
commit 1656b50
Showing
5 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# MPF.ExecutionContexts | ||
|
||
This library represents the logic needed to invoke 3 different dumping programs: | ||
|
||
- [Aaru](github.com/aaru-dps/Aaru) | ||
- [DiscImageCreator](github.com/saramibreak/DiscImageCreator) | ||
- [Redumper](https://github.com/superg/redumper) | ||
|
||
These execution wrappers allow for generating valid parameters for each of the programs as well as provide some helpers that make it easier to determine what those parameters are. | ||
|
||
External options are defined in order to help create reasonable default parameter sets for different combinations of media type and system. | ||
|
||
Paths to the programs need to be provided if they are expected to be invoked as a part of another program. The expected versions of these programs can be found in either the changelog or the publish script in the parent project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# MPF.Processors | ||
|
||
This library represents the logic needed to process the outputs of 7 different dumping programs: | ||
|
||
- [Aaru](github.com/aaru-dps/Aaru) | ||
- [CleanRip](https://github.com/emukidid/cleanrip) | ||
- [DiscImageCreator](github.com/saramibreak/DiscImageCreator) | ||
- PS3 Custom Firmware (CFW) | ||
- [Redumper](https://github.com/superg/redumper) | ||
- [UmdImageCreator](https://github.com/saramibreak/UmdImageCreator) | ||
- Xbox Backup Creator (XBC) | ||
|
||
These processors allow for extracting a large amount of information from the output files generated by each of the programs. This information is then formatted according to the requirements of [Redump](http://redump.org/), which provides an easy comparison point. | ||
|
||
Each processor also includes the ability to clean up the output files, including compressing certain types of output or deleting files that are not required to use the resulting images. | ||
|
||
There is no requirement that the original media is present for any of the processing to be done, though additional checks may be made if the media is present and made available to the library. | ||
|
||
Additionally, there is a specialized tool included that allows for information extraction from potentially generic sources. This tool is used across many of the processors and can be invoked separately by any calling library. |