Skip to content

Commit

Permalink
0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ech0wav3 committed May 28, 2017
1 parent 4abb7c5 commit 2aec4f2
Show file tree
Hide file tree
Showing 121 changed files with 33,340 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ChapEdit.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

$chapfile = file($argv[1]);
$outfile = fopen($argv[1], 'w');

$line_total = count($chapfile);

foreach($chapfile as $linenum => $line) {
if ($linenum != ($line_total - 2) && $linenum != ($line_total - 1) && $linenum != ($line_total)) {
$output = $line;
fwrite($outfile, $output);
}
}

fclose($outfile);
exit;

?>
20 changes: 20 additions & 0 deletions ParamEdit.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

$parmfile = file($argv[1] . $argv[2]);
$outfile = fopen($argv[1] . $argv[2], 'w');

foreach($parmfile as $line) {
if (substr($line, -13) == "IFO_REPLACE\r\n") {
exec("cmd /c dir /b \"" . $argv[1] . "*.ifo\"", $ifo_file);
$output = str_replace("IFO_REPLACE", $ifo_file[0], $line);
fwrite($outfile, $output);
} else {
$output = $line;
fwrite($outfile, $output);
}
}

fclose($outfile);
exit;

?>
Binary file added Tools/avisynth_258/Avisynth_258.exe
Binary file not shown.
Binary file added Tools/ccextractor.0.55/CCExtractorGUI.exe
Binary file not shown.
Binary file added Tools/ccextractor.0.55/ccextractorwin.exe
Binary file not shown.
31 changes: 31 additions & 0 deletions Tools/dgmpgdec158/Bugs_Limitations.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
DGMPGDec Known Bugs and Limitations
-----------------------------------

"No-I-frame" streams cannot be processed.

Need auto horizontal scrollbar in file list dialog (no scrollbar when not needed).

DGParse should show the effects of FF decimation/replication.

Need to add back the autoincrement open option.

Not all DGIndex funtions are available through the CLI, and not all information that
DGIndex gathers can be accessed by a third-party application. For example, the DGIndex
Info dialog contents (and other info) should be readable via the CLI.

Decode to WAV is limited to 2GB WAV files.

DGDecode macroblocks on some severe video errors for which DGIndex recovers without
macroblocking.

DGMPGDec needs to be able to load older D2V files. Backward compatibility in general
should be a strong requirement.

DVR-MS files are not supported.

DGIndex should do audio playback.

DGIndex should process multiple audio streams from transport streams (just as it does
for program streams). Currently, only one audio PID can be specified at a time.

Unicode paths and file names are not supported.
340 changes: 340 additions & 0 deletions Tools/dgmpgdec158/COPYING.txt

Large diffs are not rendered by default.

Binary file added Tools/dgmpgdec158/DGDecode.dll
Binary file not shown.
Loading

0 comments on commit 2aec4f2

Please sign in to comment.