mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-07 22:15:28 +03:00
4ff7ab96dc
5737 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
4ff7ab96dc
|
Fixes (#23130)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* respect section hiddenFields when detecting config overrides * change audio events to audio detection to match docs * add field messages for object and review genai * add more config messages * more messages * add guard to prevent race when adding camera dynamically * fix duplicate websocket messages from zombie connection under react strict mode detach ws event handlers before close() in WsProvider cleanup so a CONNECTING socket's deferred onclose can't schedule a reconnect after the next mount resets the unmounted guard, which was spawning a second live ws and duplicating every message * fix double event publishes for stationary objects with attributes |
||
|
|
d0f44de6bc
|
UI fixes (#23127)
* hide camera overrides badge from system sections * show empty card on camera metrics page when no cameras are defined * fix enabled camera state switch after adding via wizard Cameras added mid-session have no WS state until the dispatcher publishes camera_activity (which only happens on a fresh onConnect). Fall back to the config's enabled value so the switch reflects reality immediately after the wizard closes. * guard camera enabled access console would throw errors after adding via camera wizard * fix useOptimisticState dropping debounced setState under StrictMode * use openvino on cpu as default model - faster than tflite on cpu - add to default generated config * use an enum for model_size the frontend will then render this as a select dropdown because of the changes in the json schema * i18n * sync object filter entries with tracked labels in camera config form Filter sub-collapsibles in the camera Objects section are driven by `filters` dict keys, but profile merges and live track-switch edits don't add matching entries, so newly tracked labels (like from a profile override) had no collapsible. Synthesize default filter entries from `track` in the form data so every tracked label renders a collapsible; baseline data also gets the synthesized entries, so save payloads are unchanged. * revalidate raw paths cache after config save so CameraPathWidget shows fresh credentials * fix test * restore masked ffmpeg credentials when persisting camera config * formatting * rebuild ffmpeg commands when enabling recording for the first time Toggling record.enabled from the config UI updated the in-memory config but left ffmpeg running with its original command, so the record output args were never wired in and nothing landed in the cache for the maintainer to move. The record config update now rebuilds ffmpeg_cmds when enabled_in_config transitions, and the camera watchdog restarts ffmpeg on a false to true transition so the record output gets wired in. MQTT toggles, which only flip record.enabled at runtime, are unaffected and continue to work via the maintainer's drop/keep gate. * keep record toggle switch in single camera view disabled until enabled in config * fix override detection for sections unset in the global config Override badges and the blue dot now compare against schema defaults for sections like motion that the API serializes as null when omitted from the global YAML, instead of treating any populated camera config as an override * add support for config-aware patterns in section hiddenFields Section configs can now declare dynamic hidden-field entries as functions of the loaded config; objects.ts uses this to hide auto-populated attribute filters (DHL, face, license_plate, etc.) from the form, save flow, and override popover when those labels aren't user-settable * siimplify object filters handling live updating was getting very messy. users will just need to save once they enable a new object in order to see filters for that object * tweaks * update docs for new detector default * make genai provider required and add special case for UI prevent validation errors from appearing on initial creation of genai provider by setting the first option in the select dropdown as default |
||
|
|
5211590866
|
Miscellaneous fixes (#23124)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* use continuous expire date when loading reviews for recording cleanup * reset heatmap filter when motion preview camera changes * Add note about speed zones unit when enabled * don't display fps warning for dedicated LPR cameras * language tweaks * allow changing camera type from management UI * i18n * fix ollama tool calling failure when conversation contains multimodal content from live frame tool results * fix mypy --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> |
||
|
|
704ee9667c
|
fix(face_recognition): feed BGR (not RGB) to FaceDetectorYN in manual detection branch (#23123)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* fix(face_recognition): feed BGR (not RGB) to FaceDetectorYN in manual detection branch
Frigate's `requires_face_detection` branch in `FaceRealTimeProcessor.process_frame`
converts the YUV camera frame to RGB and passes it to `cv2.FaceDetectorYN`.
YuNet is trained on BGR — feeding it RGB silently degrades detection
confidence by ~10× on typical person crops, causing face_recognition to
emit no `sub_label` and produce no `train/` entries. There is no log signal
because the detector simply returns 0 faces; from outside the box it looks
like nobody is walking past any camera.
The same file already does the YUV→BGR conversion correctly in the
else-branch (was line 271, now line 285) — only the manual-detection
branch was missed.
## Reproduction
Verified in-pod against the running Frigate's models on identical
person crops (snapshot pulled from a real person event):
BGR (correct): cv2.FaceDetectorYN ← confidence 0.744 ✓
RGB (current): cv2.FaceDetectorYN ← confidence 0.047 ✗
The `score_threshold=0.5` set on `FaceDetectorYN.create()` filters anything
under 0.5 at the detector layer, so the RGB-degraded crops never reach
the user-configurable `detection_threshold`. Result: silent outage.
## Fix
Three changes in `frigate/data_processing/real_time/face.py`:
1. `cv2.COLOR_YUV2RGB_I420` → `cv2.COLOR_YUV2BGR_I420`
2. Variable rename `rgb` → `bgr` to match
3. Remove the now-redundant `cv2.cvtColor(face_frame, cv2.COLOR_RGB2BGR)`
block — `face_frame` is already BGR after the upstream conversion change
Net diff: +6 / -7. Pure Python, no new dependencies.
## How a deployment confirms the fix
After this change, walking past a camera produces:
- `data.attributes` with a `face` entry on the person event (currently empty)
- New entries in `/api/faces` `train/` array (currently frozen)
- `sub_label` populated on subsequent person events for trained faces
Signed-off-by: Vinnie Esposito <vespo21@gmail.com>
* Cleanup comment
---------
Signed-off-by: Vinnie Esposito <vespo21@gmail.com>
Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
|
||
|
|
76a1230885
|
ROCm Optimizations (#23118)
* Update to ROCm 7.2.3 * Add inference time for 9060XT * Update times * Update hardware info for latest ROCm * Add env vars to save kernels and miopen database * re-enable face recognition for ROCm * Update * Save LLVM cache |
||
|
|
52a3301726
|
Miscellaneous fixes (#23111)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* return 404 from /api/login if auth is disabled * locale sort object label switches * enable search on object switches field * add profiles docs link |
||
|
|
f448b259a2
|
Settings UI improvements (#23109)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* use badge with popover to show which cameras override each global config section * don't use shorthand * use label i18n |
||
|
|
ef9d7e07b7
|
Rewrite intel stats (#23108)
* Rewrite intel GPU stats to use file descriptors instead of intel_gpu_top, leading to significantly better API for interaction and more accurate results * Update tests * Update docs * Adjust approach * Update strings |
||
|
|
814c497bef
|
Use Job infrastructure for Debug Replay (#23099)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* use ReplayState enum * extract shared ffmpeg progress helper * make start call non-blocking with worker thread * expose replay state on status endpoint and return 202 from start * cancel in-flight ffmpeg when stop is called during preparation * add replay i18n strings for preparing and error states * show status in replay UI * navigate immediately on 202 from debug replay menus and dialog * remove unused * simplify to use Job infrastructure * tests * cleanup and tweaks * fetch schema * update api spec * formatting * fix e2e test * mypy * clean up * formatting * fix * fix test * don't try to show camera image until status reports ready * simplify loading logic * fix race in latest_frame on debug replay shutdown * remove toast when successfully stopping it gets hidden almost immediately |
||
|
|
5bc15d4aa9
|
chapter and thumbnail fixes (#23100)
- Skip null end_time when building export chapter metadata - Use plain seconds for export thumbnail ffmpeg seek |
||
|
|
7ad233ef15
|
fix malformed svg from breaking docs build (#23102) | ||
|
|
882b3a8ffd
|
docs: add docker compose generator (#22956)
* docs: add docker compose generator * docs: add more icon support * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Rename heading from 'Generic Hardware Acceleration' to 'Generic Hardware Devices' * Remove port 5000 configuration for security reasons Removed unauthenticated Web UI port 5000 from configuration due to security risks. * docs: remove 5000 port tips * docs: improve NVIDIA GPU count input * docs: add docker compose tabs * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/components/OtherOptions.tsx Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/components/StoragePaths.tsx Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/components/StoragePaths.tsx Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * Update docs/src/components/DockerComposeGenerator/config/config.yaml Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> * docs: Adjust the position of the RTSP password variable option * docs: timezone change to select * docs: add hailo and memryX mx3 driver tips * docs: RTSP password is optional * docs: fix select style --------- Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> |
||
|
|
b6fd86a066
|
feat(genai): add api_key auth support for ollama cloud (#23096)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
- Add _auth_headers() helper to pass Bearer token when api_key is set - Wire headers into all Ollama client instantiations (sync + async) - Update docs with Ollama Cloud direct connection example and yaml config |
||
|
|
147cd5cc2b
|
Miscellaneous fixes (#23092)
* lpr fixes - remove duplicate code - fix min_area check for non frigate+ code path - move log outside of non frigate+ code path * only show chat link when a genai provider is configured with the chat role * respect ui.timezone when generating fallback export names * reapply radix pointer events fix to call sites that use navigate() * formatting * fall back to prior preview frame for short export thumbnails * fix typing * fix e2e test for chat navigation * batch annotation offset to seek atomically and throttle slider drag * add debug replay loading toast for explore actions * Improve handling of webpush missing shortSummary --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> |
||
|
|
6a2b914b10 |
Merge remote-tracking branch 'origin/master' into dev
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
|
||
|
|
45213d0420
|
Miscellaneous fixes (#23082)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* openvino log message and preview directory checks * restrict config vars for viewer users * recording timestamp fix when startTime is exactly on an hour boundary, findIndex returns the first matching chunk, which is the previous hour's chunk (where before == startTime), instead of the correct chunk (where after == startTime) the bug shows up when using the share timestamp feature and sharing a specific timestamp on the exact hour mark. when accessing the shared link, the timeline would jump to the incorrect hour * use helper for chunked time range * Adjustments to contributing docs * tweak * Improve wording * tweak --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> |
||
|
|
ba4a6a53d7
|
Miscellaneous fixes (#23053)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* don't exempt draft PRs from stalebot * Fix import * ensure toast shows when export API returns 20n (202, accepted) --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> |
||
|
|
e90079ab2f
|
Include chapters for review items in exports (#23052) | ||
|
|
edcf0b0d2c
|
Bump actions/github-script from 7 to 9 (#22830)
Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
578d6391fb |
Translated using Weblate (Norwegian Bokmål)
Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (469 of 469 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (790 of 790 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (95 of 95 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 99.3% (144 of 145 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (1076 of 1076 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (1074 of 1074 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (235 of 235 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (10 of 10 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (790 of 790 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: OverTheHillsAndFarAway <prosjektx@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-configeditor/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/nb_NO/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-configeditor Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings |
||
|
|
c9c9c1793d |
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (236 of 236 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1081 of 1081 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (469 of 469 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1077 of 1077 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (790 of 790 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1077 of 1077 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (469 of 469 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (790 of 790 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 82.1% (83 of 101 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 41.8% (36 of 86 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (469 of 469 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 99.7% (788 of 790 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (235 of 235 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1074 of 1074 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1074 of 1074 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (469 of 469 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (790 of 790 strings) Co-authored-by: GuoQing Liu <842607283@qq.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/zh_Hans/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings |
||
|
|
a3b10c308b |
Translated using Weblate (Kannada)
Currently translated at 16.6% (1 of 6 strings) Translated using Weblate (Kannada) Currently translated at 0.9% (1 of 101 strings) Translated using Weblate (Kannada) Currently translated at 4.0% (1 of 25 strings) Translated using Weblate (Kannada) Currently translated at 10.0% (1 of 10 strings) Translated using Weblate (Kannada) Currently translated at 0.8% (1 of 123 strings) Translated using Weblate (Kannada) Currently translated at 0.1% (1 of 1081 strings) Translated using Weblate (Kannada) Currently translated at 10.0% (1 of 10 strings) Translated using Weblate (Kannada) Currently translated at 50.0% (1 of 2 strings) Translated using Weblate (Kannada) Currently translated at 2.1% (1 of 47 strings) Translated using Weblate (Kannada) Currently translated at 0.5% (1 of 174 strings) Translated using Weblate (Kannada) Currently translated at 0.4% (1 of 236 strings) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Added translation using Weblate (Kannada) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Rakshit Chandrahasa <r211093@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-auth/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-icons/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-configeditor/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-recording/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/kn/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/kn/ Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/common Translation: Frigate NVR/components-auth Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-icons Translation: Frigate NVR/objects Translation: Frigate NVR/views-configeditor Translation: Frigate NVR/views-recording Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
540290bba7 |
Translated using Weblate (Korean)
Currently translated at 54.8% (34 of 62 strings) Translated using Weblate (Korean) Currently translated at 14.7% (21 of 142 strings) Translated using Weblate (Korean) Currently translated at 40.8% (20 of 49 strings) Translated using Weblate (Korean) Currently translated at 16.2% (21 of 129 strings) Translated using Weblate (Korean) Currently translated at 3.7% (30 of 790 strings) Translated using Weblate (Korean) Currently translated at 76.0% (19 of 25 strings) Translated using Weblate (Korean) Currently translated at 86.9% (20 of 23 strings) Translated using Weblate (Korean) Currently translated at 4.2% (20 of 469 strings) Translated using Weblate (Korean) Currently translated at 84.4% (49 of 58 strings) Translated using Weblate (Korean) Currently translated at 98.9% (98 of 99 strings) Translated using Weblate (Korean) Currently translated at 13.4% (144 of 1074 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: fgh812 <fgh812@naver.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/ko/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ko/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-search Translation: Frigate NVR/views-settings |
||
|
|
b02d928056 |
Translated using Weblate (Finnish)
Currently translated at 40.0% (10 of 25 strings) Translated using Weblate (Finnish) Currently translated at 50.0% (11 of 22 strings) Translated using Weblate (Finnish) Currently translated at 50.8% (120 of 236 strings) Translated using Weblate (Finnish) Currently translated at 20.0% (216 of 1077 strings) Translated using Weblate (Finnish) Currently translated at 0.8% (7 of 790 strings) Translated using Weblate (Finnish) Currently translated at 25.2% (44 of 174 strings) Translated using Weblate (Finnish) Currently translated at 67.2% (39 of 58 strings) Translated using Weblate (Finnish) Currently translated at 80.8% (80 of 99 strings) Translated using Weblate (Finnish) Currently translated at 33.6% (34 of 101 strings) Translated using Weblate (Finnish) Currently translated at 16.2% (14 of 86 strings) Translated using Weblate (Finnish) Currently translated at 100.0% (10 of 10 strings) Translated using Weblate (Finnish) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Finnish) Currently translated at 39.0% (25 of 64 strings) Translated using Weblate (Finnish) Currently translated at 2.1% (10 of 469 strings) Translated using Weblate (Finnish) Currently translated at 8.5% (11 of 129 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Tumeroz <tuomas.kettunen@hotmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-auth/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/fi/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/fi/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-auth Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-events Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
057351e492 |
Translated using Weblate (French)
Currently translated at 29.0% (25 of 86 strings) Translated using Weblate (French) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (French) Currently translated at 70.1% (755 of 1076 strings) Translated using Weblate (French) Currently translated at 4.5% (36 of 790 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: NicoA08 <nicolasantunes08@gmail.com> Co-authored-by: Riton Du Boulon <henripl37@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/fr/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/components-player Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings |
||
|
|
c7af51376b |
Translated using Weblate (Spanish)
Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Spanish) Currently translated at 57.4% (58 of 101 strings) Translated using Weblate (Spanish) Currently translated at 21.9% (103 of 469 strings) Translated using Weblate (Spanish) Currently translated at 70.3% (757 of 1076 strings) Translated using Weblate (Spanish) Currently translated at 31.3% (27 of 86 strings) Translated using Weblate (Spanish) Currently translated at 98.4% (127 of 129 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Spanish) Currently translated at 20.5% (162 of 790 strings) Translated using Weblate (Spanish) Currently translated at 99.4% (173 of 174 strings) Translated using Weblate (Spanish) Currently translated at 95.9% (118 of 123 strings) Translated using Weblate (Spanish) Currently translated at 29.6% (24 of 81 strings) Translated using Weblate (Spanish) Currently translated at 67.6% (728 of 1076 strings) Translated using Weblate (Spanish) Currently translated at 92.7% (218 of 235 strings) Translated using Weblate (Spanish) Currently translated at 66.4% (715 of 1076 strings) Translated using Weblate (Spanish) Currently translated at 66.4% (714 of 1074 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (22 of 22 strings) Translated using Weblate (Spanish) Currently translated at 98.2% (57 of 58 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Spanish) Currently translated at 92.0% (23 of 25 strings) Translated using Weblate (Spanish) Currently translated at 10.2% (48 of 469 strings) Translated using Weblate (Spanish) Currently translated at 8.9% (71 of 790 strings) Translated using Weblate (Spanish) Currently translated at 99.4% (173 of 174 strings) Translated using Weblate (Spanish) Currently translated at 98.2% (171 of 174 strings) Translated using Weblate (Spanish) Currently translated at 97.1% (169 of 174 strings) Translated using Weblate (Spanish) Currently translated at 95.9% (167 of 174 strings) Co-authored-by: Daniel G. <keybyte@gmail.com> Co-authored-by: Francesc Domene <fdomenef@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Luis Enrique Barral <luisbarral22@hotmail.com> Co-authored-by: NecrumBlacke4984a794e814493 <k_spin@hotmail.com> Co-authored-by: Riker <alpha9@icloud.com> Co-authored-by: ThatStella7922 <stella@thatstel.la> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/es/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/objects Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
74cfa61952 |
Translated using Weblate (Dutch)
Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Dutch) Currently translated at 50.6% (41 of 81 strings) Translated using Weblate (Dutch) Currently translated at 93.7% (121 of 129 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Sjoerd Kocken <info@sjoerdk.nl> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/nl/ Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-live |
||
|
|
81899ddf57 |
Translated using Weblate (Indonesian)
Currently translated at 3.0% (33 of 1076 strings) Co-authored-by: Glen Ricky Himawan <glen.ricky23@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/id/ Translation: Frigate NVR/views-settings |
||
|
|
33e2b23f2e |
Translated using Weblate (Italian)
Currently translated at 100.0% (235 of 235 strings) Translated using Weblate (Italian) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Italian) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Italian) Currently translated at 9.3% (44 of 469 strings) Translated using Weblate (Italian) Currently translated at 10.1% (80 of 790 strings) Translated using Weblate (Italian) Currently translated at 9.4% (75 of 790 strings) Translated using Weblate (Italian) Currently translated at 8.3% (39 of 469 strings) Translated using Weblate (Italian) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Italian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Italian) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Italian) Currently translated at 5.8% (46 of 790 strings) Translated using Weblate (Italian) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Italian) Currently translated at 5.9% (28 of 469 strings) Translated using Weblate (Italian) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Italian) Currently translated at 5.6% (45 of 790 strings) Translated using Weblate (Italian) Currently translated at 61.8% (664 of 1074 strings) Translated using Weblate (Italian) Currently translated at 100.0% (22 of 22 strings) Translated using Weblate (Italian) Currently translated at 100.0% (174 of 174 strings) Co-authored-by: Gringo <ita.translations@tiscali.it> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/it/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
b5193c9978 |
Translated using Weblate (Polish)
Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Polish) Currently translated at 82.1% (143 of 174 strings) Translated using Weblate (Polish) Currently translated at 60.3% (652 of 1081 strings) Translated using Weblate (Polish) Currently translated at 72.7% (16 of 22 strings) Translated using Weblate (Polish) Currently translated at 67.1% (43 of 64 strings) Translated using Weblate (Polish) Currently translated at 4.3% (34 of 790 strings) Translated using Weblate (Polish) Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Polish) Currently translated at 18.6% (16 of 86 strings) Translated using Weblate (Polish) Currently translated at 22.7% (5 of 22 strings) Translated using Weblate (Polish) Currently translated at 3.0% (24 of 790 strings) Translated using Weblate (Polish) Currently translated at 16.2% (14 of 86 strings) Translated using Weblate (Polish) Currently translated at 2.6% (21 of 790 strings) Translated using Weblate (Polish) Currently translated at 13.6% (3 of 22 strings) Translated using Weblate (Polish) Currently translated at 98.9% (98 of 99 strings) Translated using Weblate (Polish) Currently translated at 15.1% (13 of 86 strings) Translated using Weblate (Polish) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Polish) Currently translated at 100.0% (145 of 145 strings) Co-authored-by: Dawid Kędzierski <dawidk612@wp.pl> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: J P <jpoloczek24@gmail.com> Co-authored-by: Michał Budzik <budzikmichal@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/pl/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
93443773f4 |
Translated using Weblate (Hungarian)
Currently translated at 18.6% (16 of 86 strings) Translated using Weblate (Hungarian) Currently translated at 7.6% (36 of 469 strings) Translated using Weblate (Hungarian) Currently translated at 80.0% (20 of 25 strings) Translated using Weblate (Hungarian) Currently translated at 5.9% (47 of 790 strings) Translated using Weblate (Hungarian) Currently translated at 86.3% (19 of 22 strings) Translated using Weblate (Hungarian) Currently translated at 74.7% (130 of 174 strings) Translated using Weblate (Hungarian) Currently translated at 4.1% (33 of 790 strings) Translated using Weblate (Hungarian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Hungarian) Currently translated at 52.0% (13 of 25 strings) Translated using Weblate (Hungarian) Currently translated at 92.7% (218 of 235 strings) Translated using Weblate (Hungarian) Currently translated at 39.6% (427 of 1076 strings) Translated using Weblate (Hungarian) Currently translated at 6.1% (29 of 469 strings) Translated using Weblate (Hungarian) Currently translated at 59.0% (13 of 22 strings) Translated using Weblate (Hungarian) Currently translated at 66.1% (41 of 62 strings) Translated using Weblate (Hungarian) Currently translated at 87.8% (87 of 99 strings) Translated using Weblate (Hungarian) Currently translated at 5.5% (26 of 469 strings) Translated using Weblate (Hungarian) Currently translated at 54.5% (12 of 22 strings) Translated using Weblate (Hungarian) Currently translated at 37.9% (408 of 1076 strings) Translated using Weblate (Hungarian) Currently translated at 44.0% (11 of 25 strings) Translated using Weblate (Hungarian) Currently translated at 3.7% (30 of 790 strings) Translated using Weblate (Hungarian) Currently translated at 71.8% (125 of 174 strings) Translated using Weblate (Hungarian) Currently translated at 86.8% (86 of 99 strings) Translated using Weblate (Hungarian) Currently translated at 4.4% (21 of 469 strings) Translated using Weblate (Hungarian) Currently translated at 65.2% (15 of 23 strings) Translated using Weblate (Hungarian) Currently translated at 2.6% (21 of 790 strings) Co-authored-by: Da4ndo <vrgdnl20@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: KecskeTech <teonyitas@gmail.com> Co-authored-by: ZELO <zg1990@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/hu/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/hu/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
57eb7db5c9 |
Translated using Weblate (Catalan)
Currently translated at 100.0% (236 of 236 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1081 of 1081 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1077 of 1077 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1077 of 1077 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (58 of 58 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (95 of 95 strings) Translated using Weblate (Catalan) Currently translated at 97.8% (93 of 95 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (95 of 95 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (81 of 81 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1076 of 1076 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (790 of 790 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1074 of 1074 strings) Co-authored-by: Eduardo Pastor Fernández <123eduardoneko123@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: anton garcias <isaga.percompartir@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ca/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-settings |
||
|
|
eb73277322 |
Translated using Weblate (Japanese)
Currently translated at 10.0% (79 of 790 strings) Translated using Weblate (Japanese) Currently translated at 63.4% (686 of 1081 strings) Translated using Weblate (Japanese) Currently translated at 63.4% (686 of 1081 strings) Translated using Weblate (Japanese) Currently translated at 80.1% (81 of 101 strings) Translated using Weblate (Japanese) Currently translated at 9.8% (46 of 469 strings) Translated using Weblate (Japanese) Currently translated at 96.5% (56 of 58 strings) Translated using Weblate (Japanese) Currently translated at 8.7% (41 of 469 strings) Translated using Weblate (Japanese) Currently translated at 70.3% (45 of 64 strings) Translated using Weblate (Japanese) Currently translated at 90.8% (158 of 174 strings) Translated using Weblate (Japanese) Currently translated at 76.2% (77 of 101 strings) Translated using Weblate (Japanese) Currently translated at 94.5% (122 of 129 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Japanese) Currently translated at 62.9% (681 of 1081 strings) Translated using Weblate (Japanese) Currently translated at 8.9% (71 of 790 strings) Translated using Weblate (Japanese) Currently translated at 6.1% (29 of 469 strings) Translated using Weblate (Japanese) Currently translated at 61.8% (669 of 1081 strings) Translated using Weblate (Japanese) Currently translated at 5.6% (45 of 790 strings) Translated using Weblate (Japanese) Currently translated at 92.3% (218 of 236 strings) Translated using Weblate (Japanese) Currently translated at 61.8% (669 of 1081 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Japanese) Currently translated at 68.3% (69 of 101 strings) Translated using Weblate (Japanese) Currently translated at 5.9% (28 of 469 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Japanese) Currently translated at 89.0% (155 of 174 strings) Translated using Weblate (Japanese) Currently translated at 67.1% (43 of 64 strings) Translated using Weblate (Japanese) Currently translated at 5.5% (44 of 790 strings) Translated using Weblate (Japanese) Currently translated at 93.7% (121 of 129 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (22 of 22 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Japanese) Currently translated at 61.0% (658 of 1077 strings) Translated using Weblate (Japanese) Currently translated at 62.3% (63 of 101 strings) Translated using Weblate (Japanese) Currently translated at 94.4% (137 of 145 strings) Translated using Weblate (Japanese) Currently translated at 92.3% (217 of 235 strings) Translated using Weblate (Japanese) Currently translated at 65.6% (42 of 64 strings) Translated using Weblate (Japanese) Currently translated at 98.8% (85 of 86 strings) Translated using Weblate (Japanese) Currently translated at 60.9% (656 of 1076 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Japanese) Currently translated at 93.0% (120 of 129 strings) Translated using Weblate (Japanese) Currently translated at 37.2% (32 of 86 strings) Translated using Weblate (Japanese) Currently translated at 37.2% (32 of 86 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Yusuke, Hirota <hirota.yusuke@jp.fujitsu.com> Co-authored-by: alpha <etc@alpha-line.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/ja/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-filter Translation: Frigate NVR/components-player Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
d3853688ed |
Translated using Weblate (Bulgarian)
Currently translated at 0.2% (2 of 790 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Ivan Ivanov <ivan.ivanov@scoutbg.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/bg/ Translation: Frigate NVR/Config - Global |
||
|
|
5fd8fc881a |
Translated using Weblate (Romanian)
Currently translated at 100.0% (1081 of 1081 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (236 of 236 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1077 of 1077 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (95 of 95 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (81 of 81 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1076 of 1076 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1074 of 1074 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (790 of 790 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: lukasig <lukasig@hotmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ro/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings |
||
|
|
7000712454 |
Translated using Weblate (Russian)
Currently translated at 8.4% (67 of 790 strings) Translated using Weblate (Russian) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Russian) Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Russian) Currently translated at 93.7% (121 of 129 strings) Translated using Weblate (Russian) Currently translated at 88.5% (154 of 174 strings) Translated using Weblate (Russian) Currently translated at 100.0% (58 of 58 strings) Translated using Weblate (Russian) Currently translated at 93.1% (54 of 58 strings) Translated using Weblate (Russian) Currently translated at 61.3% (659 of 1074 strings) Translated using Weblate (Russian) Currently translated at 88.0% (22 of 25 strings) Translated using Weblate (Russian) Currently translated at 95.4% (21 of 22 strings) Translated using Weblate (Russian) Currently translated at 69.3% (43 of 62 strings) Translated using Weblate (Russian) Currently translated at 92.3% (217 of 235 strings) Co-authored-by: Anatoly Raev <cralixraev@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ru/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/ru/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-events Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
72068b6823 |
Translated using Weblate (Estonian)
Currently translated at 100.0% (236 of 236 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Estonian) Currently translated at 48.9% (24 of 49 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Estonian) Currently translated at 54.8% (275 of 501 strings) Translated using Weblate (Estonian) Currently translated at 32.7% (19 of 58 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Estonian) Currently translated at 1.7% (8 of 469 strings) Translated using Weblate (Estonian) Currently translated at 0.2% (2 of 790 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Estonian) Currently translated at 33.7% (49 of 145 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Estonian) Currently translated at 91.8% (68 of 74 strings) Translated using Weblate (Estonian) Currently translated at 77.0% (57 of 74 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (22 of 22 strings) Translated using Weblate (Estonian) Currently translated at 1.4% (7 of 469 strings) Translated using Weblate (Estonian) Currently translated at 0.1% (1 of 790 strings) Translated using Weblate (Estonian) Currently translated at 77.4% (48 of 62 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Priit Jõerüüt <jrthwlate@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/et/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/audio Translation: Frigate NVR/common Translation: Frigate NVR/components-filter Translation: Frigate NVR/components-player Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-search |
||
|
|
04233c0574 |
Translated using Weblate (Greek)
Currently translated at 0.5% (4 of 790 strings) Co-authored-by: D2m2TrYs Vlogs <minecrafymhtsarat@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/el/ Translation: Frigate NVR/Config - Global |
||
|
|
1584400916 |
Translated using Weblate (German)
Currently translated at 100.0% (95 of 95 strings) Translated using Weblate (German) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (German) Currently translated at 100.0% (790 of 790 strings) Translated using Weblate (German) Currently translated at 100.0% (1076 of 1076 strings) Translated using Weblate (German) Currently translated at 100.0% (145 of 145 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Sebastian Sie <sebastian.neuplanitz@googlemail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/de/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/de/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/de/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/de/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/de/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/components-dialog Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings |
||
|
|
0d1189f26a |
Translated using Weblate (Portuguese (Brazil))
Currently translated at 5.1% (41 of 790 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 44.9% (58 of 129 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 5.7% (27 of 469 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 29.6% (24 of 81 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 4.9% (39 of 790 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (229 of 235 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 5.5% (26 of 469 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (99 of 99 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 77.5% (135 of 174 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 43.7% (470 of 1074 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Nitokui <xaube@proton.me> Co-authored-by: Tiago Krüger <tiagokruger404@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/pt_BR/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
29eff13a4c |
Translated using Weblate (Turkish)
Currently translated at 59.9% (645 of 1076 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Turkish) Currently translated at 1.7% (8 of 469 strings) Translated using Weblate (Turkish) Currently translated at 87.1% (88 of 101 strings) Translated using Weblate (Turkish) Currently translated at 0.8% (7 of 790 strings) Translated using Weblate (Turkish) Currently translated at 17.4% (15 of 86 strings) Translated using Weblate (Turkish) Currently translated at 100.0% (235 of 235 strings) Translated using Weblate (Turkish) Currently translated at 92.0% (23 of 25 strings) Translated using Weblate (Turkish) Currently translated at 27.2% (6 of 22 strings) Translated using Weblate (Turkish) Currently translated at 0.3% (3 of 790 strings) Translated using Weblate (Turkish) Currently translated at 1.4% (7 of 469 strings) Co-authored-by: Emre Varcı <emrevarci@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: R&MC Team <mahmuttuma9@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/tr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/tr/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-settings |
||
|
|
1162c01b3e
|
Bump actions/upload-artifact from 4 to 7 (#22795)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
27b7ef0a7a
|
fix: mismatched time sources break birdseye idle heartbeat (#22466)
The idle heartbeat check in BirdsEyeOutputProcess.update() compares time.monotonic() (seconds since an arbitrary point, typically boot) against last_output_time which is set from datetime.datetime.now().timestamp() (Unix epoch seconds). These are completely different time bases. The subtraction produces a large negative number, so the idle heartbeat condition can never be satisfied. This means birdseye stops sending frames when all cameras go idle, instead of continuing at the configured idle_heartbeat_fps. Use datetime.datetime.now().timestamp() consistently for both the heartbeat check and the output time tracking. |
||
|
|
01a7ec1060
|
Miscellaneous fixes (#23044)
* Move openai specific workaround so it doesn't apply to other providers * Fix gemini tool calling * Improve efficiency of frame listing for previews * debug replay fixes - initial selection without changing the radio button in the dialog would select 1 hour (rather than 1 minute) - use CLIPS_DIR instead of CACHE_DIR so that longer replay clips don't cause tmpfs cache overflows * don't re-render the tracking details overlay on every video time tick * change pinned to planned --------- Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> |
||
|
|
95b5b89ed9
|
Miscellaneous fixes (#23032)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* ensure embeddings process restarts after maintainer thread crash * add docs link to media sync settings * fix color Co-authored-by: Copilot <copilot@github.com> * match link color with other sections * ensure recording staleness threshold scales with segment_time * docs tweak * Fix llama.cpp media marker * Fix gemini tools call --------- Co-authored-by: Copilot <copilot@github.com> Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> |
||
|
|
a182385618
|
Fix ROCm build (#23040)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
|
||
|
|
088e1ad7ef
|
Add ability to download case as zip (#23034)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
|
||
|
|
011ad8eda7
|
Miscellaneous fixes (#23017)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* add ui to camera config update topics enum * add mqtt to camera config update enum * ensure cleanup runs when an event end skips post-processing * end any in-progress audio events when audio detection is disabled we already end in-progress audio events when we disable a camera, but this mirrors that logic for specifically disabling audio detection * Improve GenAI metadata * fix invalid recording segment topic being misrouted to the valid handler * Add confidence default to avoid unnecessary field causing issues --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com> |
||
|
|
4171efcd79
|
Miscellaneous fixes (#23009)
Some checks failed
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* Reduce max frames per second to 1 * Use pydantic but don't fail if some constraints are not met. * Adjust limits * Adjust limits * Cleanup * add unsaved changes icon/popover to individual settings section * allow changing camera friendly_name from camera management pane --------- Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> |
||
|
|
0ea8924727
|
GenAI Optimizations (#23006)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* Test for image token usage in llama.cpp so we can more appropriately decide how many frames to include * Limit based on frames per second * handle zone case sensitivity * Improve formatting * Add observations field so model can build CoT before outputting used fields |