Commit Graph
1119 Commits
Author SHA1 Message Date
Blake Blackshear 1fbcf4d9b9 fixes 2021-05-23 08:21:18 -05:00
Sean VigandBlake Blackshear 80f8256422 Improve handling of object matching
Use `np.unique` to determine the correct set of row/col pairs to iterate
over when doing the object matching without needing to track which rows
or columns have already been seen.  Add to some of the accompanying
documentation to clarify this algorithm.

Also fix what looks to be an erroneous early return, and change this to
a continue.
2021-05-22 08:04:38 -05:00
Sean VigandBlake Blackshear 57864f2be6 Wait on stop event when possible
Generally eliminate the `while True` loops while waiting for a stop
event and prefer to condition the loops on if the stop event is set,
blocking on that where it makes sense.  This generally comes in 3
flavors.  First and simplest, when there is a sleep and the stop event
is the only thing the loop blocks on, instead do a check using
`stop_event.wait(timeout)` to instead block on the stop event for the
designated amount of time. Second, when there is a different event that
is blocking in the loop, condition the loop on `stop_event.is_set()`
rather than breaking when it is set. Finally, when there is a separate
internal condition that requires a counter, have the loop iterate over
the counter and use `if stop_event.wait(timeout)` internal to the loop.
2021-05-22 07:54:16 -05:00
Jason HunterandBlake Blackshear f4bc68d396 update HTTP API docs 2021-05-22 07:48:44 -05:00
Jason HunterandBlake Blackshear 926eec3c65 add --push so the images actually get published for nginx since they are not saved locally 2021-05-22 07:48:44 -05:00
Jason HunterandBlake Blackshear abc6bbe7e0 Add nginx build arg for other architectures 2021-05-22 07:48:44 -05:00
Jason HunterandBlake Blackshear acdfd1ccc4 remove comments from nginx.conf 2021-05-22 07:48:44 -05:00
Jason HunterandBlake Blackshear 315a13e1ce Make command has to be different than directory 2021-05-22 07:48:44 -05:00
Jason HunterandBlake Blackshear aab6a00e4c Add support for NGINX VOD Module 2021-05-22 07:48:44 -05:00
Sean VigandBlake Blackshear a4e6d9ed9a Improve ffprobe executions
When running ffprobe, use `subprocess.run` rather than
`subprocess.Popen`.  This simplifies the handling that is needed to run
and process the outputs.  Here, filename parsing is also simplified by
explicitly removing the file extension with `os.path.splitext` and
forcing a single split into the camera name and the formatted date.
2021-05-22 07:48:00 -05:00
digiblurandGitHub e16dbcb671 docs(howto): Combined links, add authors, and cleaned up (#1124) 2021-05-20 07:01:25 -07:00
Jason HunterandBlake Blackshear e89697fab0 update Home Assistant brand identity references 2021-05-19 06:48:50 -05:00
Chris HelmingandBlake Blackshear c52782aa3f Add record to configuration docs
Record was missing from the configuration docs. Added it in based on the other options show and the info under 24/7 recordings in the cameras docs.
2021-05-18 20:45:10 -05:00
Chris HelmingandGitHub 7060f22024 docs: Update advanced.md to move type: to its own line (#1101)
Type was stuck on the comment line. Added a line break to move it onto its own line so it's visible.
2021-05-14 09:23:02 -07:00
Blake BlackshearandGitHub d1931f249c Update cameras.md 2021-05-14 07:15:01 -05:00
Blake BlackshearandGitHub bf1a542afb Update howtos.md 2021-05-13 07:41:10 -05:00
ebb6d348a3 feat(web): Delete events from Event page and API (#991)
Co-authored-by: Scott Roach <scott@thinkpivot.io>
Co-authored-by: Paul Armstrong <paul@spaceyak.com>
2021-05-12 08:19:02 -07:00
Blake BlackshearandGitHub f667bd9066 Update howtos.md 2021-05-12 06:55:33 -05:00
peyanskiandBlake Blackshear ff2eba5b9f Create howtos.md
Community guides and How-To's section. 

Feel free to approve, move, edit or reject the changes. 

Either way keep up the good work,
Kiril
2021-05-12 06:47:12 -05:00
digiblurandBlake Blackshear 3eb0021207 Update detectors.md
Add example for dual PCIe
2021-05-12 06:45:34 -05:00
Colin McCambridgeandBlake Blackshear 6379f5cd5e Update nvdec.md
`covid` --> `cuvid` in example arguments.
2021-05-12 06:44:44 -05:00
dependabot[bot]andBlake Blackshear e3a8448a23 build(deps): bump hosted-git-info from 2.8.8 to 2.8.9 in /web
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9.
- [Release notes](https://github.com/npm/hosted-git-info/releases)
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md)
- [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-12 06:43:53 -05:00
dependabot[bot]andBlake Blackshear 00d6036788 build(deps): bump lodash from 4.17.20 to 4.17.21 in /web
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-12 06:43:42 -05:00
dependabot[bot]andBlake Blackshear 53bb69621c build(deps-dev): bump postcss from 8.2.2 to 8.2.10 in /web
Bumps [postcss](https://github.com/postcss/postcss) from 8.2.2 to 8.2.10.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.2.2...8.2.10)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-12 06:43:24 -05:00
Blake Blackshear ad85beea91 Update cameras.md 2021-05-11 06:48:28 -05:00
Blake Blackshear d7a237677a Update cameras.md 2021-05-11 06:48:28 -05:00
WhyteyandBlake Blackshear 16effa3938 Update cameras.md 2021-05-11 06:48:28 -05:00
WhyteyandBlake Blackshear 33a04c425b Add MJPEG example 2021-05-11 06:48:28 -05:00
ManuelandBlake Blackshear 20a52bc4e6 Update installation.md
Added missing \ in line 70
2021-05-07 07:22:13 -05:00
Jason HunterandBlake Blackshear 482399d82f allow logger daemon process to be killed with the main thread, thus allowing us to continue logging during shutdown 2021-05-06 07:01:33 -05:00
Jason HunterandBlake Blackshear 3a171d19e3 update contributing docs 2021-05-04 17:29:23 -05:00
Jason HunterandBlake Blackshear 480970c799 remove mqtt-cli 2021-05-04 17:29:23 -05:00
Jason HunterandBlake Blackshear ceb3329f9e add rtmp port 2021-05-04 17:29:23 -05:00
Jason HunterandBlake Blackshear 1c0162c181 fix devcontainer setup 2021-05-04 17:29:23 -05:00
Paulus SchoutsenandBlake Blackshear cf62dccef7 Correct spelling Home Assistant 2021-05-01 06:33:49 -05:00
Ron SchaefferandBlake Blackshear 42410a260c Update index.md
Corrected
2021-04-07 13:50:07 -05:00
Ron SchaefferandBlake Blackshear 00c6a8f577 Update index.md
Remove outdated (?) info that Addon users define their configs in the GUI. Corrected outdated (?) config,yml to frigate.yml.
2021-04-07 13:50:07 -05:00
Ron SchaefferandBlake Blackshear 9d2469549f Update installation.md
It is not possible--unless I'm totally overlooking something--to define the add-on's configuration in the GUI. The user must define the configuration in a frigate.yml file,
2021-04-07 13:27:10 -05:00
JohnandBlake Blackshear d2bc2c20c1 Update api.md
Fixed example URL for the viewing higher resolution mjpeg stream.
2021-03-19 09:30:21 -05:00
Paul ArmstrongandBlake Blackshear 10c37a3036 docs: include available objects in documentation 2021-03-09 06:23:37 -06:00
Mitch RossandBlake Blackshear 00d14fa49f Update Unraid Install Instructions 2021-03-02 06:42:42 -06:00
Blake Blackshear 0f1bc40f00 docs for core development 2021-02-25 07:01:59 -06:00
Blake Blackshear 4252857e19 remove tmpfs_cache_size option 2021-02-25 07:01:59 -06:00
Blake Blackshear 6d12a34c40 remove thumbnail attribute if null 2021-02-25 07:01:59 -06:00
Blake Blackshear 9e126a4b91 style cleanup 2021-02-25 07:01:59 -06:00
Blake Blackshear 040ffda687 use fstr log style 2021-02-25 07:01:59 -06:00
Blake Blackshear 39ff49e054 formatting cleanup 2021-02-25 07:01:57 -06:00
Blake Blackshear b8f72a5bcb add devcontainer setup 2021-02-25 07:00:59 -06:00
Blake Blackshear 43db704b74 Update version 2021-02-25 07:00:57 -06:00
Paul ArmstrongandBlake Blackshear 5043040530 fix(web): ensure tooltips and menus don't cause scrollbar reflow v0.8.4 2021-02-25 06:34:36 -06:00