-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from alganzory/bugfixes_and_feat/disable-detec…
…tion-per-video Bugfixes and feat/disable detection per video
- Loading branch information
Showing
13 changed files
with
451 additions
and
244 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
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,25 @@ | ||
export const DEFAULT_SETTINGS = { | ||
status: true, | ||
blurryStartMode: false, | ||
blurAmount: 20, | ||
blurImages: true, | ||
blurVideos: true, | ||
blurMale: false, | ||
blurFemale: true, | ||
unblurImages: false, | ||
unblurVideos: false, | ||
gray: true, | ||
strictness: 0.5, // goes from 0 to 1 | ||
}; | ||
|
||
export const STATUSES = { | ||
// the numbers are there to make it easier to sort | ||
ERROR: "-1ERROR", | ||
OBSERVED: "0OBSERVED", | ||
QUEUED: "1QUEUED", | ||
LOADING: "2LOADING", | ||
LOADED: "3LOADED", | ||
PROCESSING: "4PROCESSING", | ||
PROCESSED: "5PROCESSED", | ||
DISABLED: "9DISABLED", | ||
}; |
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
Oops, something went wrong.