-
Notifications
You must be signed in to change notification settings - Fork 5
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 #39 from LemurPwned/feat/image-folder-support
Feat/image folder support
- Loading branch information
Showing
30 changed files
with
1,626 additions
and
477 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,32 @@ | ||
# Whether to process only keyframes (it's way faster than processing all frames) | ||
# Read interval while processing video (in seconds) (when there's no frame yielded, when to check again) | ||
queue_wait: 0.1 | ||
debug: false | ||
# Whether to print stats | ||
print_stats: false | ||
# Buffer configuration | ||
buffer_config: | ||
type: grid | ||
# the smaller the hash size, the greater chance of collision | ||
# smaller hashsets are faster to process & reduce frames more aggressively | ||
hash_size: 8 | ||
# size of the collision buffer. The larger the buffer, the more in time back the | ||
# hashes are stored. | ||
grid_x: 5 | ||
grid_y: 5 | ||
max_hits: 2 | ||
size: 15 | ||
debug: false | ||
# Gating configuration | ||
gate_config: | ||
type: pass | ||
extractor_config: {} | ||
summary_config: {} | ||
# Number of workers (separate processes) to process the frames. Determines level of parallelism | ||
n_workers: 3 | ||
save_format: | ||
encode_time_b64: false | ||
include_filename: false | ||
avoid_dot: false | ||
|
||
frame_time_regex: '(\d+(?:\.\d+)?)' |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.