Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

6 роки тому
12345678910111213141516171819202122232425262728
  1. Logchecker
  2. ==========
  3. A CD rip logchecker, used for analyzing the generated logs for any problems that would potentially
  4. indicate a non-perfect rip was produced. Of course, just because a log doesn't score a perfect 100%
  5. does not mean that the produced rip isn't bit perfect, it's just less likely. While this library can
  6. largely run on both Linux and Windows, validating of checksums is only really supported for Linux.
  7. While this library will analyze most parts of a log, unfortunately it cannot properly validate the checksums
  8. for all types of logs. This is due to creators of these programs making their logchecker closed source
  9. and involves some amount of custom mathematical work to produce it. Therefore, we have to fallback on
  10. external methods to validate the checksums of EAC and XLD. If the logchecker detects that we do not have
  11. the necessary programs, then we will just skip this external step and assume the checksum is valid. For
  12. setting up the necessary programs to validate the checksum, see below for the given program you care about.
  13. ## Requirements
  14. * PHP 7.0+
  15. * Python3.4+
  16. * chardet
  17. * eac_logchecker.py
  18. * xld_logchecker.py
  19. ## Installation
  20. ```
  21. $ composer require orpheusnet/logchecker
  22. $ pip3 install chardet
  23. $ pip3 install eac-logchecker
  24. ```