Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 1.07 KB

README.md

File metadata and controls

19 lines (12 loc) · 1.07 KB

Pete

Pete is an open source alternative to PEAT (Photosensitive Epilepsy Analysis Tool).

Pete is a free, downloadable tool for analyzing video files and identifying seizure risks in them. The analysis is based on the Web Content Accessibility Guidelines (WCAG) 2.0, guideline 2.3.2, with a correction to the relative luminance formula.

In this repository resides the main engine. It can't be run on its own, it's a library.

Building

Currently, Pete uses the Make build system.

If you're on Windows, use GNU Make and not NMake. Also make sure you have the gcc compiler. You can get it from the MinGW or MinGW-w64 projects.

  • Static library: run make static
  • Shared library: run make shared
  • Both: run make all
  • Only the object files: run make objects
  • Remove all the build results: run make clean