@apocaliss92/scrypted-advanced-notifier 4.8.26 → 4.8.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2010) hide show
  1. package/_refs/frigate/.cspell/frigate-dictionary.txt +320 -0
  2. package/_refs/frigate/.cursor/rules/frontend-always-use-translation-files.mdc +6 -0
  3. package/_refs/frigate/.devcontainer/devcontainer.json +125 -0
  4. package/_refs/frigate/.devcontainer/features/onnxruntime-gpu/devcontainer-feature.json +22 -0
  5. package/_refs/frigate/.devcontainer/features/onnxruntime-gpu/install.sh +15 -0
  6. package/_refs/frigate/.devcontainer/initialize.sh +13 -0
  7. package/_refs/frigate/.devcontainer/post_create.sh +30 -0
  8. package/_refs/frigate/.dockerignore +16 -0
  9. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/beta-support.yml +129 -0
  10. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/camera-support.yml +138 -0
  11. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/config-support.yml +113 -0
  12. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/detector-support.yml +87 -0
  13. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/general-support.yml +130 -0
  14. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/hardware-acceleration-support.yml +120 -0
  15. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/question.yml +21 -0
  16. package/_refs/frigate/.github/DISCUSSION_TEMPLATE/report-a-bug.yml +151 -0
  17. package/_refs/frigate/.github/FUNDING.yml +4 -0
  18. package/_refs/frigate/.github/ISSUE_TEMPLATE/config.yml +8 -0
  19. package/_refs/frigate/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  20. package/_refs/frigate/.github/actions/setup/action.yml +50 -0
  21. package/_refs/frigate/.github/copilot-instructions.md +3 -0
  22. package/_refs/frigate/.github/dependabot.yml +40 -0
  23. package/_refs/frigate/.github/pull_request_template.md +39 -0
  24. package/_refs/frigate/.github/workflows/ci.yml +226 -0
  25. package/_refs/frigate/.github/workflows/pull_request.yml +95 -0
  26. package/_refs/frigate/.github/workflows/release.yml +52 -0
  27. package/_refs/frigate/.github/workflows/stale.yml +42 -0
  28. package/_refs/frigate/.pylintrc +588 -0
  29. package/_refs/frigate/.vscode/launch.json +11 -0
  30. package/_refs/frigate/CODEOWNERS +7 -0
  31. package/_refs/frigate/LICENSE +21 -0
  32. package/_refs/frigate/Makefile +60 -0
  33. package/_refs/frigate/README.md +83 -0
  34. package/_refs/frigate/README_CN.md +90 -0
  35. package/_refs/frigate/TRADEMARK.md +58 -0
  36. package/_refs/frigate/audio-labelmap.txt +521 -0
  37. package/_refs/frigate/benchmark.py +109 -0
  38. package/_refs/frigate/benchmark_motion.py +118 -0
  39. package/_refs/frigate/config/config.yml.example +16 -0
  40. package/_refs/frigate/cspell.json +22 -0
  41. package/_refs/frigate/docker/hailo8l/user_installation.sh +49 -0
  42. package/_refs/frigate/docker/main/Dockerfile +350 -0
  43. package/_refs/frigate/docker/main/build_nginx.sh +86 -0
  44. package/_refs/frigate/docker/main/build_ov_model.py +11 -0
  45. package/_refs/frigate/docker/main/build_pysqlite3.sh +48 -0
  46. package/_refs/frigate/docker/main/build_sqlite_vec.sh +38 -0
  47. package/_refs/frigate/docker/main/fake_frigate_run +13 -0
  48. package/_refs/frigate/docker/main/install_deps.sh +150 -0
  49. package/_refs/frigate/docker/main/install_hailort.sh +14 -0
  50. package/_refs/frigate/docker/main/install_memryx.sh +31 -0
  51. package/_refs/frigate/docker/main/install_s6_overlay.sh +19 -0
  52. package/_refs/frigate/docker/main/install_tempio.sh +16 -0
  53. package/_refs/frigate/docker/main/requirements-dev.txt +4 -0
  54. package/_refs/frigate/docker/main/requirements-ov.txt +3 -0
  55. package/_refs/frigate/docker/main/requirements-wheels.txt +85 -0
  56. package/_refs/frigate/docker/main/requirements.txt +1 -0
  57. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync/dependencies.d/nginx +0 -0
  58. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync/finish +30 -0
  59. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync/producer-for +1 -0
  60. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync/run +58 -0
  61. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync/timeout-kill +1 -0
  62. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync/type +1 -0
  63. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync-log/consumer-for +1 -0
  64. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync-log/dependencies.d/log-prepare +0 -0
  65. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync-log/pipeline-name +1 -0
  66. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync-log/run +4 -0
  67. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/certsync-log/type +1 -0
  68. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate/dependencies.d/go2rtc +0 -0
  69. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate/finish +28 -0
  70. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate/producer-for +1 -0
  71. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate/run +33 -0
  72. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate/timeout-kill +1 -0
  73. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate/type +1 -0
  74. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate-log/consumer-for +1 -0
  75. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate-log/dependencies.d/log-prepare +0 -0
  76. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate-log/pipeline-name +1 -0
  77. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate-log/run +4 -0
  78. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/frigate-log/type +1 -0
  79. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/dependencies.d/prepare +0 -0
  80. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/finish +12 -0
  81. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/producer-for +1 -0
  82. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run +126 -0
  83. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/timeout-kill +1 -0
  84. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/type +1 -0
  85. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-healthcheck/dependencies.d/go2rtc +0 -0
  86. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-healthcheck/finish +12 -0
  87. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-healthcheck/producer-for +1 -0
  88. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-healthcheck/run +22 -0
  89. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-healthcheck/timeout-kill +1 -0
  90. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-healthcheck/type +1 -0
  91. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-log/consumer-for +2 -0
  92. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-log/dependencies.d/log-prepare +0 -0
  93. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-log/pipeline-name +1 -0
  94. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-log/run +4 -0
  95. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/go2rtc-log/type +1 -0
  96. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/log-prepare/dependencies.d/base +0 -0
  97. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/log-prepare/run +11 -0
  98. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/log-prepare/type +1 -0
  99. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/log-prepare/up +1 -0
  100. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/data/check +5 -0
  101. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/dependencies.d/frigate +0 -0
  102. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/finish +30 -0
  103. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/notification-fd +1 -0
  104. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/producer-for +1 -0
  105. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/run +96 -0
  106. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/timeout-kill +1 -0
  107. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx/type +1 -0
  108. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx-log/consumer-for +1 -0
  109. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx-log/dependencies.d/log-prepare +0 -0
  110. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx-log/pipeline-name +1 -0
  111. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx-log/run +4 -0
  112. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/nginx-log/type +1 -0
  113. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/prepare/dependencies.d/base +0 -0
  114. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/prepare/run +146 -0
  115. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/prepare/type +1 -0
  116. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/prepare/up +1 -0
  117. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/certsync-pipeline +0 -0
  118. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/frigate-pipeline +0 -0
  119. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/go2rtc-pipeline +0 -0
  120. package/_refs/frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/nginx-pipeline +0 -0
  121. package/_refs/frigate/docker/main/rootfs/labelmap/coco-80.txt +80 -0
  122. package/_refs/frigate/docker/main/rootfs/labelmap/coco.txt +91 -0
  123. package/_refs/frigate/docker/main/rootfs/usr/local/ffmpeg/get_ffmpeg_path.py +37 -0
  124. package/_refs/frigate/docker/main/rootfs/usr/local/go2rtc/create_config.py +205 -0
  125. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/conf/auth_location.conf +43 -0
  126. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/conf/auth_request.conf +24 -0
  127. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/conf/go2rtc_upstream.conf +4 -0
  128. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/conf/nginx.conf +362 -0
  129. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/conf/proxy.conf +26 -0
  130. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/conf/proxy_trusted_headers.conf +29 -0
  131. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/get_base_path.py +11 -0
  132. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/get_listen_settings.py +35 -0
  133. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/templates/base_path.gotmpl +19 -0
  134. package/_refs/frigate/docker/main/rootfs/usr/local/nginx/templates/listen.gotmpl +45 -0
  135. package/_refs/frigate/docker/memryx/user_installation.sh +44 -0
  136. package/_refs/frigate/docker/rockchip/COCO/coco_subset_20.txt +20 -0
  137. package/_refs/frigate/docker/rockchip/COCO/subset/000000005001.jpg +0 -0
  138. package/_refs/frigate/docker/rockchip/COCO/subset/000000038829.jpg +0 -0
  139. package/_refs/frigate/docker/rockchip/COCO/subset/000000052891.jpg +0 -0
  140. package/_refs/frigate/docker/rockchip/COCO/subset/000000075612.jpg +0 -0
  141. package/_refs/frigate/docker/rockchip/COCO/subset/000000098261.jpg +0 -0
  142. package/_refs/frigate/docker/rockchip/COCO/subset/000000181542.jpg +0 -0
  143. package/_refs/frigate/docker/rockchip/COCO/subset/000000215245.jpg +0 -0
  144. package/_refs/frigate/docker/rockchip/COCO/subset/000000277005.jpg +0 -0
  145. package/_refs/frigate/docker/rockchip/COCO/subset/000000288685.jpg +0 -0
  146. package/_refs/frigate/docker/rockchip/COCO/subset/000000301421.jpg +0 -0
  147. package/_refs/frigate/docker/rockchip/COCO/subset/000000334371.jpg +0 -0
  148. package/_refs/frigate/docker/rockchip/COCO/subset/000000348481.jpg +0 -0
  149. package/_refs/frigate/docker/rockchip/COCO/subset/000000373353.jpg +0 -0
  150. package/_refs/frigate/docker/rockchip/COCO/subset/000000397681.jpg +0 -0
  151. package/_refs/frigate/docker/rockchip/COCO/subset/000000414673.jpg +0 -0
  152. package/_refs/frigate/docker/rockchip/COCO/subset/000000419312.jpg +0 -0
  153. package/_refs/frigate/docker/rockchip/COCO/subset/000000465822.jpg +0 -0
  154. package/_refs/frigate/docker/rockchip/COCO/subset/000000475732.jpg +0 -0
  155. package/_refs/frigate/docker/rockchip/COCO/subset/000000559707.jpg +0 -0
  156. package/_refs/frigate/docker/rockchip/COCO/subset/000000574315.jpg +0 -0
  157. package/_refs/frigate/docker/rockchip/Dockerfile +38 -0
  158. package/_refs/frigate/docker/rockchip/conv2rknn.py +82 -0
  159. package/_refs/frigate/docker/rockchip/requirements-wheels-rk.txt +2 -0
  160. package/_refs/frigate/docker/rockchip/rk.hcl +27 -0
  161. package/_refs/frigate/docker/rockchip/rk.mk +15 -0
  162. package/_refs/frigate/docker/rocm/Dockerfile +87 -0
  163. package/_refs/frigate/docker/rocm/debian-backports.sources +6 -0
  164. package/_refs/frigate/docker/rocm/requirements-wheels-rocm.txt +1 -0
  165. package/_refs/frigate/docker/rocm/rocm.hcl +42 -0
  166. package/_refs/frigate/docker/rocm/rocm.mk +15 -0
  167. package/_refs/frigate/docker/rpi/Dockerfile +17 -0
  168. package/_refs/frigate/docker/rpi/install_deps.sh +34 -0
  169. package/_refs/frigate/docker/rpi/rpi.hcl +20 -0
  170. package/_refs/frigate/docker/rpi/rpi.mk +15 -0
  171. package/_refs/frigate/docker/synaptics/Dockerfile +28 -0
  172. package/_refs/frigate/docker/synaptics/synaptics.hcl +27 -0
  173. package/_refs/frigate/docker/synaptics/synaptics.mk +15 -0
  174. package/_refs/frigate/docker/tensorrt/Dockerfile.amd64 +37 -0
  175. package/_refs/frigate/docker/tensorrt/Dockerfile.arm64 +156 -0
  176. package/_refs/frigate/docker/tensorrt/build_jetson_ffmpeg.sh +72 -0
  177. package/_refs/frigate/docker/tensorrt/detector/build_python_tensorrt.sh +28 -0
  178. package/_refs/frigate/docker/tensorrt/detector/rootfs/etc/ld.so.conf.d/cuda_tensorrt.conf +6 -0
  179. package/_refs/frigate/docker/tensorrt/detector/rootfs/etc/s6-overlay/s6-rc.d/frigate/dependencies.d/trt-model-prepare +0 -0
  180. package/_refs/frigate/docker/tensorrt/detector/rootfs/etc/s6-overlay/s6-rc.d/trt-model-prepare/dependencies.d/base +0 -0
  181. package/_refs/frigate/docker/tensorrt/detector/rootfs/etc/s6-overlay/s6-rc.d/trt-model-prepare/run +115 -0
  182. package/_refs/frigate/docker/tensorrt/detector/rootfs/etc/s6-overlay/s6-rc.d/trt-model-prepare/type +1 -0
  183. package/_refs/frigate/docker/tensorrt/detector/rootfs/etc/s6-overlay/s6-rc.d/trt-model-prepare/up +1 -0
  184. package/_refs/frigate/docker/tensorrt/detector/tensorrt_libyolo.sh +21 -0
  185. package/_refs/frigate/docker/tensorrt/requirements-amd64.txt +18 -0
  186. package/_refs/frigate/docker/tensorrt/requirements-arm64.txt +2 -0
  187. package/_refs/frigate/docker/tensorrt/requirements-models-arm64.txt +2 -0
  188. package/_refs/frigate/docker/tensorrt/trt.hcl +105 -0
  189. package/_refs/frigate/docker/tensorrt/trt.mk +41 -0
  190. package/_refs/frigate/docker-compose.yml +42 -0
  191. package/_refs/frigate/docs/README.md +10 -0
  192. package/_refs/frigate/docs/babel.config.js +3 -0
  193. package/_refs/frigate/docs/docs/configuration/advanced.md +275 -0
  194. package/_refs/frigate/docs/docs/configuration/audio_detectors.md +177 -0
  195. package/_refs/frigate/docs/docs/configuration/authentication.md +311 -0
  196. package/_refs/frigate/docs/docs/configuration/autotracking.md +173 -0
  197. package/_refs/frigate/docs/docs/configuration/bird_classification.md +31 -0
  198. package/_refs/frigate/docs/docs/configuration/birdseye.md +111 -0
  199. package/_refs/frigate/docs/docs/configuration/camera_specific.md +297 -0
  200. package/_refs/frigate/docs/docs/configuration/cameras.md +151 -0
  201. package/_refs/frigate/docs/docs/configuration/custom_classification/object_classification.md +130 -0
  202. package/_refs/frigate/docs/docs/configuration/custom_classification/state_classification.md +107 -0
  203. package/_refs/frigate/docs/docs/configuration/face_recognition.md +213 -0
  204. package/_refs/frigate/docs/docs/configuration/ffmpeg_presets.md +80 -0
  205. package/_refs/frigate/docs/docs/configuration/genai/config.md +159 -0
  206. package/_refs/frigate/docs/docs/configuration/genai/objects.md +78 -0
  207. package/_refs/frigate/docs/docs/configuration/genai/review_summaries.md +134 -0
  208. package/_refs/frigate/docs/docs/configuration/genai.md +247 -0
  209. package/_refs/frigate/docs/docs/configuration/hardware_acceleration_enrichments.md +37 -0
  210. package/_refs/frigate/docs/docs/configuration/hardware_acceleration_video.md +495 -0
  211. package/_refs/frigate/docs/docs/configuration/index.md +263 -0
  212. package/_refs/frigate/docs/docs/configuration/license_plate_recognition.md +437 -0
  213. package/_refs/frigate/docs/docs/configuration/live.md +353 -0
  214. package/_refs/frigate/docs/docs/configuration/masks.md +84 -0
  215. package/_refs/frigate/docs/docs/configuration/metrics.md +99 -0
  216. package/_refs/frigate/docs/docs/configuration/motion_detection.md +107 -0
  217. package/_refs/frigate/docs/docs/configuration/notifications.md +66 -0
  218. package/_refs/frigate/docs/docs/configuration/object_detectors.md +1582 -0
  219. package/_refs/frigate/docs/docs/configuration/object_filters.md +57 -0
  220. package/_refs/frigate/docs/docs/configuration/objects.md +29 -0
  221. package/_refs/frigate/docs/docs/configuration/pwa.md +28 -0
  222. package/_refs/frigate/docs/docs/configuration/record.md +166 -0
  223. package/_refs/frigate/docs/docs/configuration/reference.md +1051 -0
  224. package/_refs/frigate/docs/docs/configuration/restream.md +223 -0
  225. package/_refs/frigate/docs/docs/configuration/review.md +90 -0
  226. package/_refs/frigate/docs/docs/configuration/semantic_search.md +166 -0
  227. package/_refs/frigate/docs/docs/configuration/snapshots.md +12 -0
  228. package/_refs/frigate/docs/docs/configuration/stationary_objects.md +52 -0
  229. package/_refs/frigate/docs/docs/configuration/tls.md +59 -0
  230. package/_refs/frigate/docs/docs/configuration/zones.md +196 -0
  231. package/_refs/frigate/docs/docs/development/contributing-boards.md +94 -0
  232. package/_refs/frigate/docs/docs/development/contributing.md +246 -0
  233. package/_refs/frigate/docs/docs/frigate/camera_setup.md +45 -0
  234. package/_refs/frigate/docs/docs/frigate/glossary.md +69 -0
  235. package/_refs/frigate/docs/docs/frigate/hardware.md +313 -0
  236. package/_refs/frigate/docs/docs/frigate/index.md +29 -0
  237. package/_refs/frigate/docs/docs/frigate/installation.md +636 -0
  238. package/_refs/frigate/docs/docs/frigate/planning_setup.md +74 -0
  239. package/_refs/frigate/docs/docs/frigate/updating.md +119 -0
  240. package/_refs/frigate/docs/docs/frigate/video_pipeline.md +67 -0
  241. package/_refs/frigate/docs/docs/guides/configuring_go2rtc.md +120 -0
  242. package/_refs/frigate/docs/docs/guides/getting_started.md +300 -0
  243. package/_refs/frigate/docs/docs/guides/ha_network_storage.md +40 -0
  244. package/_refs/frigate/docs/docs/guides/ha_notifications.md +50 -0
  245. package/_refs/frigate/docs/docs/guides/reverse_proxy.md +211 -0
  246. package/_refs/frigate/docs/docs/integrations/api.md +0 -0
  247. package/_refs/frigate/docs/docs/integrations/home-assistant.md +338 -0
  248. package/_refs/frigate/docs/docs/integrations/homekit.md +37 -0
  249. package/_refs/frigate/docs/docs/integrations/mqtt.md +527 -0
  250. package/_refs/frigate/docs/docs/integrations/plus.md +78 -0
  251. package/_refs/frigate/docs/docs/integrations/third_party_extensions.md +44 -0
  252. package/_refs/frigate/docs/docs/mdx.md +17 -0
  253. package/_refs/frigate/docs/docs/plus/annotating.md +53 -0
  254. package/_refs/frigate/docs/docs/plus/faq.md +34 -0
  255. package/_refs/frigate/docs/docs/plus/first_model.md +75 -0
  256. package/_refs/frigate/docs/docs/plus/index.md +115 -0
  257. package/_refs/frigate/docs/docs/troubleshooting/cpu.md +73 -0
  258. package/_refs/frigate/docs/docs/troubleshooting/dummy-camera.md +60 -0
  259. package/_refs/frigate/docs/docs/troubleshooting/edgetpu.md +94 -0
  260. package/_refs/frigate/docs/docs/troubleshooting/faqs.md +112 -0
  261. package/_refs/frigate/docs/docs/troubleshooting/gpu.md +13 -0
  262. package/_refs/frigate/docs/docs/troubleshooting/memory.md +134 -0
  263. package/_refs/frigate/docs/docs/troubleshooting/recordings.md +82 -0
  264. package/_refs/frigate/docs/docusaurus.config.ts +223 -0
  265. package/_refs/frigate/docs/package-lock.json +23362 -0
  266. package/_refs/frigate/docs/package.json +54 -0
  267. package/_refs/frigate/docs/plugins/raw-loader.js +12 -0
  268. package/_refs/frigate/docs/sidebars.ts +161 -0
  269. package/_refs/frigate/docs/static/.nojekyll +0 -0
  270. package/_refs/frigate/docs/static/_headers +8 -0
  271. package/_refs/frigate/docs/static/frigate-api.yaml +5423 -0
  272. package/_refs/frigate/docs/static/img/annotate.png +0 -0
  273. package/_refs/frigate/docs/static/img/autotracking-debug.gif +0 -0
  274. package/_refs/frigate/docs/static/img/bottom-center-mask.jpg +0 -0
  275. package/_refs/frigate/docs/static/img/bottom-center.jpg +0 -0
  276. package/_refs/frigate/docs/static/img/branding/LICENSE.md +30 -0
  277. package/_refs/frigate/docs/static/img/branding/favicon.ico +0 -0
  278. package/_refs/frigate/docs/static/img/branding/frigate.png +0 -0
  279. package/_refs/frigate/docs/static/img/branding/logo-dark.svg +3 -0
  280. package/_refs/frigate/docs/static/img/branding/logo.svg +3 -0
  281. package/_refs/frigate/docs/static/img/camera-ui.png +0 -0
  282. package/_refs/frigate/docs/static/img/diagram.png +0 -0
  283. package/_refs/frigate/docs/static/img/driveway_zones-min.png +0 -0
  284. package/_refs/frigate/docs/static/img/driveway_zones.png +0 -0
  285. package/_refs/frigate/docs/static/img/events-ui.png +0 -0
  286. package/_refs/frigate/docs/static/img/example-mask-poly-min.png +0 -0
  287. package/_refs/frigate/docs/static/img/example-mask-poly.png +0 -0
  288. package/_refs/frigate/docs/static/img/frigate-autotracking-example.gif +0 -0
  289. package/_refs/frigate/docs/static/img/ground-plane.jpg +0 -0
  290. package/_refs/frigate/docs/static/img/home-ui.png +0 -0
  291. package/_refs/frigate/docs/static/img/live-view.png +0 -0
  292. package/_refs/frigate/docs/static/img/media_browser-min.png +0 -0
  293. package/_refs/frigate/docs/static/img/media_browser.png +0 -0
  294. package/_refs/frigate/docs/static/img/mismatched-resolution-min.jpg +0 -0
  295. package/_refs/frigate/docs/static/img/mismatched-resolution.jpg +0 -0
  296. package/_refs/frigate/docs/static/img/notification-min.png +0 -0
  297. package/_refs/frigate/docs/static/img/notification.png +0 -0
  298. package/_refs/frigate/docs/static/img/plus/attribute-example-face.jpg +0 -0
  299. package/_refs/frigate/docs/static/img/plus/attribute-example-fedex.jpg +0 -0
  300. package/_refs/frigate/docs/static/img/plus/false-positive-overlap.jpg +0 -0
  301. package/_refs/frigate/docs/static/img/plus/false-positive.jpg +0 -0
  302. package/_refs/frigate/docs/static/img/plus/fedex-logo.jpg +0 -0
  303. package/_refs/frigate/docs/static/img/plus/model-ready-email.jpg +0 -0
  304. package/_refs/frigate/docs/static/img/plus/plus-models.jpg +0 -0
  305. package/_refs/frigate/docs/static/img/plus/send-to-plus.jpg +0 -0
  306. package/_refs/frigate/docs/static/img/plus/submit-to-plus.jpg +0 -0
  307. package/_refs/frigate/docs/static/img/plus/suggestions.webp +0 -0
  308. package/_refs/frigate/docs/static/img/plus-api-key-min.png +0 -0
  309. package/_refs/frigate/docs/static/img/resolutions-min.jpg +0 -0
  310. package/_refs/frigate/docs/static/img/resolutions.png +0 -0
  311. package/_refs/frigate/docs/static/img/review-items.png +0 -0
  312. package/_refs/frigate/frigate/__init__.py +0 -0
  313. package/_refs/frigate/frigate/__main__.py +136 -0
  314. package/_refs/frigate/frigate/api/__init__.py +0 -0
  315. package/_refs/frigate/frigate/api/app.py +852 -0
  316. package/_refs/frigate/frigate/api/auth.py +1006 -0
  317. package/_refs/frigate/frigate/api/camera.py +997 -0
  318. package/_refs/frigate/frigate/api/classification.py +1090 -0
  319. package/_refs/frigate/frigate/api/defs/__init__.py +0 -0
  320. package/_refs/frigate/frigate/api/defs/query/app_query_parameters.py +12 -0
  321. package/_refs/frigate/frigate/api/defs/query/events_query_parameters.py +83 -0
  322. package/_refs/frigate/frigate/api/defs/query/media_query_parameters.py +62 -0
  323. package/_refs/frigate/frigate/api/defs/query/regenerate_query_parameters.py +13 -0
  324. package/_refs/frigate/frigate/api/defs/query/review_query_parameters.py +31 -0
  325. package/_refs/frigate/frigate/api/defs/request/__init__.py +0 -0
  326. package/_refs/frigate/frigate/api/defs/request/app_body.py +29 -0
  327. package/_refs/frigate/frigate/api/defs/request/classification_body.py +31 -0
  328. package/_refs/frigate/frigate/api/defs/request/events_body.py +61 -0
  329. package/_refs/frigate/frigate/api/defs/request/export_recordings_body.py +20 -0
  330. package/_refs/frigate/frigate/api/defs/request/export_rename_body.py +5 -0
  331. package/_refs/frigate/frigate/api/defs/request/review_body.py +8 -0
  332. package/_refs/frigate/frigate/api/defs/response/classification_response.py +38 -0
  333. package/_refs/frigate/frigate/api/defs/response/event_response.py +42 -0
  334. package/_refs/frigate/frigate/api/defs/response/export_response.py +30 -0
  335. package/_refs/frigate/frigate/api/defs/response/generic_response.py +6 -0
  336. package/_refs/frigate/frigate/api/defs/response/preview_response.py +17 -0
  337. package/_refs/frigate/frigate/api/defs/response/review_response.py +43 -0
  338. package/_refs/frigate/frigate/api/defs/tags.py +15 -0
  339. package/_refs/frigate/frigate/api/event.py +2281 -0
  340. package/_refs/frigate/frigate/api/export.py +291 -0
  341. package/_refs/frigate/frigate/api/fastapi_app.py +163 -0
  342. package/_refs/frigate/frigate/api/media.py +1977 -0
  343. package/_refs/frigate/frigate/api/notification.py +86 -0
  344. package/_refs/frigate/frigate/api/preview.py +168 -0
  345. package/_refs/frigate/frigate/api/review.py +774 -0
  346. package/_refs/frigate/frigate/app.py +659 -0
  347. package/_refs/frigate/frigate/camera/__init__.py +68 -0
  348. package/_refs/frigate/frigate/camera/activity_manager.py +259 -0
  349. package/_refs/frigate/frigate/camera/maintainer.py +225 -0
  350. package/_refs/frigate/frigate/camera/state.py +584 -0
  351. package/_refs/frigate/frigate/comms/base_communicator.py +21 -0
  352. package/_refs/frigate/frigate/comms/config_updater.py +59 -0
  353. package/_refs/frigate/frigate/comms/detections_updater.py +42 -0
  354. package/_refs/frigate/frigate/comms/dispatcher.py +843 -0
  355. package/_refs/frigate/frigate/comms/embeddings_updater.py +91 -0
  356. package/_refs/frigate/frigate/comms/event_metadata_updater.py +49 -0
  357. package/_refs/frigate/frigate/comms/events_updater.py +61 -0
  358. package/_refs/frigate/frigate/comms/inter_process.py +86 -0
  359. package/_refs/frigate/frigate/comms/mqtt.py +284 -0
  360. package/_refs/frigate/frigate/comms/object_detector_signaler.py +92 -0
  361. package/_refs/frigate/frigate/comms/recordings_updater.py +46 -0
  362. package/_refs/frigate/frigate/comms/review_updater.py +30 -0
  363. package/_refs/frigate/frigate/comms/webpush.py +482 -0
  364. package/_refs/frigate/frigate/comms/ws.py +119 -0
  365. package/_refs/frigate/frigate/comms/zmq_proxy.py +103 -0
  366. package/_refs/frigate/frigate/config/__init__.py +14 -0
  367. package/_refs/frigate/frigate/config/auth.py +81 -0
  368. package/_refs/frigate/frigate/config/base.py +29 -0
  369. package/_refs/frigate/frigate/config/camera/__init__.py +17 -0
  370. package/_refs/frigate/frigate/config/camera/audio.py +41 -0
  371. package/_refs/frigate/frigate/config/camera/birdseye.py +73 -0
  372. package/_refs/frigate/frigate/config/camera/camera.py +273 -0
  373. package/_refs/frigate/frigate/config/camera/detect.py +63 -0
  374. package/_refs/frigate/frigate/config/camera/ffmpeg.py +125 -0
  375. package/_refs/frigate/frigate/config/camera/genai.py +31 -0
  376. package/_refs/frigate/frigate/config/camera/live.py +16 -0
  377. package/_refs/frigate/frigate/config/camera/motion.py +44 -0
  378. package/_refs/frigate/frigate/config/camera/mqtt.py +23 -0
  379. package/_refs/frigate/frigate/config/camera/notification.py +18 -0
  380. package/_refs/frigate/frigate/config/camera/objects.py +131 -0
  381. package/_refs/frigate/frigate/config/camera/onvif.py +87 -0
  382. package/_refs/frigate/frigate/config/camera/record.py +124 -0
  383. package/_refs/frigate/frigate/config/camera/review.py +156 -0
  384. package/_refs/frigate/frigate/config/camera/snapshots.py +44 -0
  385. package/_refs/frigate/frigate/config/camera/timestamp.py +49 -0
  386. package/_refs/frigate/frigate/config/camera/ui.py +12 -0
  387. package/_refs/frigate/frigate/config/camera/updater.py +147 -0
  388. package/_refs/frigate/frigate/config/camera/zone.py +171 -0
  389. package/_refs/frigate/frigate/config/camera_group.py +25 -0
  390. package/_refs/frigate/frigate/config/classification.py +325 -0
  391. package/_refs/frigate/frigate/config/config.py +822 -0
  392. package/_refs/frigate/frigate/config/database.py +11 -0
  393. package/_refs/frigate/frigate/config/env.py +33 -0
  394. package/_refs/frigate/frigate/config/logger.py +22 -0
  395. package/_refs/frigate/frigate/config/mqtt.py +39 -0
  396. package/_refs/frigate/frigate/config/network.py +13 -0
  397. package/_refs/frigate/frigate/config/proxy.py +50 -0
  398. package/_refs/frigate/frigate/config/telemetry.py +29 -0
  399. package/_refs/frigate/frigate/config/tls.py +9 -0
  400. package/_refs/frigate/frigate/config/ui.py +42 -0
  401. package/_refs/frigate/frigate/const.py +154 -0
  402. package/_refs/frigate/frigate/data_processing/common/audio_transcription/model.py +83 -0
  403. package/_refs/frigate/frigate/data_processing/common/face/model.py +373 -0
  404. package/_refs/frigate/frigate/data_processing/common/license_plate/mixin.py +1815 -0
  405. package/_refs/frigate/frigate/data_processing/common/license_plate/model.py +31 -0
  406. package/_refs/frigate/frigate/data_processing/post/api.py +52 -0
  407. package/_refs/frigate/frigate/data_processing/post/audio_transcription.py +218 -0
  408. package/_refs/frigate/frigate/data_processing/post/license_plate.py +234 -0
  409. package/_refs/frigate/frigate/data_processing/post/object_descriptions.py +365 -0
  410. package/_refs/frigate/frigate/data_processing/post/review_descriptions.py +561 -0
  411. package/_refs/frigate/frigate/data_processing/post/semantic_trigger.py +269 -0
  412. package/_refs/frigate/frigate/data_processing/post/types.py +26 -0
  413. package/_refs/frigate/frigate/data_processing/real_time/api.py +63 -0
  414. package/_refs/frigate/frigate/data_processing/real_time/audio_transcription.py +281 -0
  415. package/_refs/frigate/frigate/data_processing/real_time/bird.py +177 -0
  416. package/_refs/frigate/frigate/data_processing/real_time/custom_classification.py +673 -0
  417. package/_refs/frigate/frigate/data_processing/real_time/face.py +549 -0
  418. package/_refs/frigate/frigate/data_processing/real_time/license_plate.py +57 -0
  419. package/_refs/frigate/frigate/data_processing/real_time/whisper_online.py +1160 -0
  420. package/_refs/frigate/frigate/data_processing/types.py +67 -0
  421. package/_refs/frigate/frigate/db/sqlitevecq.py +69 -0
  422. package/_refs/frigate/frigate/detectors/__init__.py +18 -0
  423. package/_refs/frigate/frigate/detectors/detection_api.py +57 -0
  424. package/_refs/frigate/frigate/detectors/detection_runners.py +608 -0
  425. package/_refs/frigate/frigate/detectors/detector_config.py +222 -0
  426. package/_refs/frigate/frigate/detectors/detector_types.py +42 -0
  427. package/_refs/frigate/frigate/detectors/detector_utils.py +74 -0
  428. package/_refs/frigate/frigate/detectors/plugins/__init__.py +0 -0
  429. package/_refs/frigate/frigate/detectors/plugins/cpu_tfl.py +42 -0
  430. package/_refs/frigate/frigate/detectors/plugins/deepstack.py +89 -0
  431. package/_refs/frigate/frigate/detectors/plugins/degirum.py +139 -0
  432. package/_refs/frigate/frigate/detectors/plugins/edgetpu_tfl.py +361 -0
  433. package/_refs/frigate/frigate/detectors/plugins/hailo8l.py +414 -0
  434. package/_refs/frigate/frigate/detectors/plugins/memryx.py +868 -0
  435. package/_refs/frigate/frigate/detectors/plugins/onnx.py +105 -0
  436. package/_refs/frigate/frigate/detectors/plugins/openvino.py +224 -0
  437. package/_refs/frigate/frigate/detectors/plugins/rknn.py +314 -0
  438. package/_refs/frigate/frigate/detectors/plugins/synaptics.py +103 -0
  439. package/_refs/frigate/frigate/detectors/plugins/teflon_tfl.py +38 -0
  440. package/_refs/frigate/frigate/detectors/plugins/tensorrt.py +346 -0
  441. package/_refs/frigate/frigate/detectors/plugins/zmq_ipc.py +331 -0
  442. package/_refs/frigate/frigate/embeddings/__init__.py +321 -0
  443. package/_refs/frigate/frigate/embeddings/embeddings.py +643 -0
  444. package/_refs/frigate/frigate/embeddings/maintainer.py +680 -0
  445. package/_refs/frigate/frigate/embeddings/onnx/base_embedding.py +97 -0
  446. package/_refs/frigate/frigate/embeddings/onnx/face_embedding.py +194 -0
  447. package/_refs/frigate/frigate/embeddings/onnx/jina_v1_embedding.py +228 -0
  448. package/_refs/frigate/frigate/embeddings/onnx/jina_v2_embedding.py +245 -0
  449. package/_refs/frigate/frigate/embeddings/onnx/lpr_embedding.py +308 -0
  450. package/_refs/frigate/frigate/embeddings/types.py +15 -0
  451. package/_refs/frigate/frigate/embeddings/util.py +54 -0
  452. package/_refs/frigate/frigate/events/__init__.py +0 -0
  453. package/_refs/frigate/frigate/events/audio.py +427 -0
  454. package/_refs/frigate/frigate/events/cleanup.py +366 -0
  455. package/_refs/frigate/frigate/events/maintainer.py +298 -0
  456. package/_refs/frigate/frigate/events/types.py +19 -0
  457. package/_refs/frigate/frigate/ffmpeg_presets.py +556 -0
  458. package/_refs/frigate/frigate/genai/__init__.py +314 -0
  459. package/_refs/frigate/frigate/genai/azure-openai.py +78 -0
  460. package/_refs/frigate/frigate/genai/gemini.py +79 -0
  461. package/_refs/frigate/frigate/genai/ollama.py +88 -0
  462. package/_refs/frigate/frigate/genai/openai.py +118 -0
  463. package/_refs/frigate/frigate/images/birdseye.png +0 -0
  464. package/_refs/frigate/frigate/images/camera-error.jpg +0 -0
  465. package/_refs/frigate/frigate/log.py +354 -0
  466. package/_refs/frigate/frigate/models.py +164 -0
  467. package/_refs/frigate/frigate/motion/__init__.py +40 -0
  468. package/_refs/frigate/frigate/motion/frigate_motion.py +157 -0
  469. package/_refs/frigate/frigate/motion/improved_motion.py +250 -0
  470. package/_refs/frigate/frigate/mypy.ini +71 -0
  471. package/_refs/frigate/frigate/object_detection/base.py +437 -0
  472. package/_refs/frigate/frigate/object_detection/util.py +77 -0
  473. package/_refs/frigate/frigate/output/birdseye.py +868 -0
  474. package/_refs/frigate/frigate/output/camera.py +170 -0
  475. package/_refs/frigate/frigate/output/output.py +287 -0
  476. package/_refs/frigate/frigate/output/preview.py +411 -0
  477. package/_refs/frigate/frigate/plus.py +244 -0
  478. package/_refs/frigate/frigate/ptz/autotrack.py +1505 -0
  479. package/_refs/frigate/frigate/ptz/onvif.py +983 -0
  480. package/_refs/frigate/frigate/record/__init__.py +0 -0
  481. package/_refs/frigate/frigate/record/cleanup.py +378 -0
  482. package/_refs/frigate/frigate/record/export.py +451 -0
  483. package/_refs/frigate/frigate/record/maintainer.py +686 -0
  484. package/_refs/frigate/frigate/record/record.py +47 -0
  485. package/_refs/frigate/frigate/record/util.py +147 -0
  486. package/_refs/frigate/frigate/review/__init__.py +0 -0
  487. package/_refs/frigate/frigate/review/maintainer.py +863 -0
  488. package/_refs/frigate/frigate/review/review.py +30 -0
  489. package/_refs/frigate/frigate/review/types.py +6 -0
  490. package/_refs/frigate/frigate/service_manager/__init__.py +4 -0
  491. package/_refs/frigate/frigate/service_manager/multiprocessing.py +163 -0
  492. package/_refs/frigate/frigate/service_manager/multiprocessing_waiter.py +150 -0
  493. package/_refs/frigate/frigate/service_manager/service.py +446 -0
  494. package/_refs/frigate/frigate/stats/__init__.py +0 -0
  495. package/_refs/frigate/frigate/stats/emitter.py +101 -0
  496. package/_refs/frigate/frigate/stats/prometheus.py +492 -0
  497. package/_refs/frigate/frigate/stats/util.py +417 -0
  498. package/_refs/frigate/frigate/storage.py +289 -0
  499. package/_refs/frigate/frigate/test/__init__.py +0 -0
  500. package/_refs/frigate/frigate/test/const.py +4 -0
  501. package/_refs/frigate/frigate/test/http_api/__init__.py +0 -0
  502. package/_refs/frigate/frigate/test/http_api/base_http_test.py +255 -0
  503. package/_refs/frigate/frigate/test/http_api/test_http_app.py +24 -0
  504. package/_refs/frigate/frigate/test/http_api/test_http_camera_access.py +192 -0
  505. package/_refs/frigate/frigate/test/http_api/test_http_event.py +413 -0
  506. package/_refs/frigate/frigate/test/http_api/test_http_media.py +405 -0
  507. package/_refs/frigate/frigate/test/http_api/test_http_review.py +754 -0
  508. package/_refs/frigate/frigate/test/test_birdseye.py +47 -0
  509. package/_refs/frigate/frigate/test/test_camera_pw.py +49 -0
  510. package/_refs/frigate/frigate/test/test_config.py +1579 -0
  511. package/_refs/frigate/frigate/test/test_copy_yuv_to_position.py +68 -0
  512. package/_refs/frigate/frigate/test/test_ffmpeg_presets.py +147 -0
  513. package/_refs/frigate/frigate/test/test_gpu_stats.py +46 -0
  514. package/_refs/frigate/frigate/test/test_maintainer.py +66 -0
  515. package/_refs/frigate/frigate/test/test_obects.py +50 -0
  516. package/_refs/frigate/frigate/test/test_object_detector.py +138 -0
  517. package/_refs/frigate/frigate/test/test_proxy_auth.py +78 -0
  518. package/_refs/frigate/frigate/test/test_record_retention.py +33 -0
  519. package/_refs/frigate/frigate/test/test_reduce_boxes.py +26 -0
  520. package/_refs/frigate/frigate/test/test_storage.py +316 -0
  521. package/_refs/frigate/frigate/test/test_video.py +354 -0
  522. package/_refs/frigate/frigate/test/test_yuv_region_2_rgb.py +43 -0
  523. package/_refs/frigate/frigate/timeline.py +221 -0
  524. package/_refs/frigate/frigate/track/__init__.py +19 -0
  525. package/_refs/frigate/frigate/track/centroid_tracker.py +247 -0
  526. package/_refs/frigate/frigate/track/norfair_tracker.py +728 -0
  527. package/_refs/frigate/frigate/track/object_processing.py +802 -0
  528. package/_refs/frigate/frigate/track/stationary_classifier.py +254 -0
  529. package/_refs/frigate/frigate/track/tracked_object.py +699 -0
  530. package/_refs/frigate/frigate/types.py +33 -0
  531. package/_refs/frigate/frigate/util/__init__.py +0 -0
  532. package/_refs/frigate/frigate/util/audio.py +116 -0
  533. package/_refs/frigate/frigate/util/builtin.py +404 -0
  534. package/_refs/frigate/frigate/util/classification.py +895 -0
  535. package/_refs/frigate/frigate/util/config.py +528 -0
  536. package/_refs/frigate/frigate/util/downloader.py +120 -0
  537. package/_refs/frigate/frigate/util/file.py +276 -0
  538. package/_refs/frigate/frigate/util/image.py +1059 -0
  539. package/_refs/frigate/frigate/util/model.py +380 -0
  540. package/_refs/frigate/frigate/util/object.py +592 -0
  541. package/_refs/frigate/frigate/util/process.py +159 -0
  542. package/_refs/frigate/frigate/util/rknn_converter.py +413 -0
  543. package/_refs/frigate/frigate/util/services.py +890 -0
  544. package/_refs/frigate/frigate/util/time.py +100 -0
  545. package/_refs/frigate/frigate/util/velocity.py +132 -0
  546. package/_refs/frigate/frigate/video.py +1094 -0
  547. package/_refs/frigate/frigate/watchdog.py +41 -0
  548. package/_refs/frigate/generate_config_translations.py +163 -0
  549. package/_refs/frigate/labelmap.txt +91 -0
  550. package/_refs/frigate/migrations/001_create_events_table.py +38 -0
  551. package/_refs/frigate/migrations/002_add_clip_snapshot.py +40 -0
  552. package/_refs/frigate/migrations/003_create_recordings_table.py +45 -0
  553. package/_refs/frigate/migrations/004_add_bbox_region_area.py +42 -0
  554. package/_refs/frigate/migrations/005_make_end_time_nullable.py +36 -0
  555. package/_refs/frigate/migrations/006_add_motion_active_objects.py +43 -0
  556. package/_refs/frigate/migrations/007_add_retain_indefinitely.py +39 -0
  557. package/_refs/frigate/migrations/008_add_sub_label.py +39 -0
  558. package/_refs/frigate/migrations/009_add_object_filter_ratio.py +39 -0
  559. package/_refs/frigate/migrations/010_add_plus_image_id.py +39 -0
  560. package/_refs/frigate/migrations/011_update_indexes.py +40 -0
  561. package/_refs/frigate/migrations/012_add_segment_size.py +39 -0
  562. package/_refs/frigate/migrations/013_create_timeline_table.py +45 -0
  563. package/_refs/frigate/migrations/014_event_updates_for_fp.py +45 -0
  564. package/_refs/frigate/migrations/015_event_refactor.py +43 -0
  565. package/_refs/frigate/migrations/016_sublabel_increase.py +11 -0
  566. package/_refs/frigate/migrations/017_update_indexes.py +36 -0
  567. package/_refs/frigate/migrations/018_add_dbfs.py +39 -0
  568. package/_refs/frigate/migrations/019_create_regions_table.py +36 -0
  569. package/_refs/frigate/migrations/020_update_index_recordings.py +41 -0
  570. package/_refs/frigate/migrations/021_create_previews_table.py +36 -0
  571. package/_refs/frigate/migrations/022_create_review_segment_table.py +42 -0
  572. package/_refs/frigate/migrations/023_add_regions.py +39 -0
  573. package/_refs/frigate/migrations/024_create_export_table.py +37 -0
  574. package/_refs/frigate/migrations/025_create_user_table.py +36 -0
  575. package/_refs/frigate/migrations/026_add_notification_tokens.py +40 -0
  576. package/_refs/frigate/migrations/027_create_explore_index.py +36 -0
  577. package/_refs/frigate/migrations/028_optional_event_thumbnail.py +36 -0
  578. package/_refs/frigate/migrations/029_add_user_role.py +37 -0
  579. package/_refs/frigate/migrations/030_create_user_review_status.py +89 -0
  580. package/_refs/frigate/migrations/031_create_trigger_table.py +50 -0
  581. package/_refs/frigate/migrations/032_add_password_changed_at.py +42 -0
  582. package/_refs/frigate/netlify.toml +7 -0
  583. package/_refs/frigate/notebooks/README.md +10 -0
  584. package/_refs/frigate/notebooks/YOLO_NAS_Pretrained_Export.ipynb +88 -0
  585. package/_refs/frigate/package-lock.json +6 -0
  586. package/_refs/frigate/process_clip.py +321 -0
  587. package/_refs/frigate/pyproject.toml +3 -0
  588. package/_refs/frigate/web/.eslintrc.cjs +74 -0
  589. package/_refs/frigate/web/.prettierrc +3 -0
  590. package/_refs/frigate/web/.vscode/extensions.json +5 -0
  591. package/_refs/frigate/web/README.md +25 -0
  592. package/_refs/frigate/web/components.json +19 -0
  593. package/_refs/frigate/web/images/branding/LICENSE +33 -0
  594. package/_refs/frigate/web/images/branding/apple-touch-icon.png +0 -0
  595. package/_refs/frigate/web/images/branding/favicon-16x16.png +0 -0
  596. package/_refs/frigate/web/images/branding/favicon-32x32.png +0 -0
  597. package/_refs/frigate/web/images/branding/favicon.ico +0 -0
  598. package/_refs/frigate/web/images/branding/favicon.png +0 -0
  599. package/_refs/frigate/web/images/branding/favicon.svg +46 -0
  600. package/_refs/frigate/web/images/branding/mstile-150x150.png +0 -0
  601. package/_refs/frigate/web/images/marker.png +0 -0
  602. package/_refs/frigate/web/index.html +36 -0
  603. package/_refs/frigate/web/login.html +36 -0
  604. package/_refs/frigate/web/package-lock.json +10615 -0
  605. package/_refs/frigate/web/package.json +128 -0
  606. package/_refs/frigate/web/postcss.config.js +6 -0
  607. package/_refs/frigate/web/public/fonts/Inter-Black.woff2 +0 -0
  608. package/_refs/frigate/web/public/fonts/Inter-BlackItalic.woff2 +0 -0
  609. package/_refs/frigate/web/public/fonts/Inter-Bold.woff2 +0 -0
  610. package/_refs/frigate/web/public/fonts/Inter-BoldItalic.woff2 +0 -0
  611. package/_refs/frigate/web/public/fonts/Inter-ExtraBold.woff2 +0 -0
  612. package/_refs/frigate/web/public/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
  613. package/_refs/frigate/web/public/fonts/Inter-ExtraLight.woff2 +0 -0
  614. package/_refs/frigate/web/public/fonts/Inter-ExtraLightItalic.woff2 +0 -0
  615. package/_refs/frigate/web/public/fonts/Inter-Italic.woff2 +0 -0
  616. package/_refs/frigate/web/public/fonts/Inter-Light.woff2 +0 -0
  617. package/_refs/frigate/web/public/fonts/Inter-LightItalic.woff2 +0 -0
  618. package/_refs/frigate/web/public/fonts/Inter-Medium.woff2 +0 -0
  619. package/_refs/frigate/web/public/fonts/Inter-MediumItalic.woff2 +0 -0
  620. package/_refs/frigate/web/public/fonts/Inter-Regular.woff2 +0 -0
  621. package/_refs/frigate/web/public/fonts/Inter-SemiBold.woff2 +0 -0
  622. package/_refs/frigate/web/public/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  623. package/_refs/frigate/web/public/fonts/Inter-Thin.woff2 +0 -0
  624. package/_refs/frigate/web/public/fonts/Inter-ThinItalic.woff2 +0 -0
  625. package/_refs/frigate/web/public/images/android-chrome-192x192.png +0 -0
  626. package/_refs/frigate/web/public/images/android-chrome-512x512.png +0 -0
  627. package/_refs/frigate/web/public/images/apple-touch-icon.png +0 -0
  628. package/_refs/frigate/web/public/images/maskable-badge.png +0 -0
  629. package/_refs/frigate/web/public/images/maskable-icon.png +0 -0
  630. package/_refs/frigate/web/public/locales/ab/audio.json +1 -0
  631. package/_refs/frigate/web/public/locales/ab/common.json +1 -0
  632. package/_refs/frigate/web/public/locales/ab/components/auth.json +1 -0
  633. package/_refs/frigate/web/public/locales/ab/components/camera.json +1 -0
  634. package/_refs/frigate/web/public/locales/ab/components/dialog.json +1 -0
  635. package/_refs/frigate/web/public/locales/ab/components/filter.json +1 -0
  636. package/_refs/frigate/web/public/locales/ab/components/icons.json +1 -0
  637. package/_refs/frigate/web/public/locales/ab/components/input.json +1 -0
  638. package/_refs/frigate/web/public/locales/ab/components/player.json +1 -0
  639. package/_refs/frigate/web/public/locales/ab/objects.json +1 -0
  640. package/_refs/frigate/web/public/locales/ab/views/classificationModel.json +1 -0
  641. package/_refs/frigate/web/public/locales/ab/views/configEditor.json +1 -0
  642. package/_refs/frigate/web/public/locales/ab/views/events.json +1 -0
  643. package/_refs/frigate/web/public/locales/ab/views/explore.json +1 -0
  644. package/_refs/frigate/web/public/locales/ab/views/exports.json +1 -0
  645. package/_refs/frigate/web/public/locales/ab/views/faceLibrary.json +1 -0
  646. package/_refs/frigate/web/public/locales/ab/views/live.json +1 -0
  647. package/_refs/frigate/web/public/locales/ab/views/recording.json +1 -0
  648. package/_refs/frigate/web/public/locales/ab/views/search.json +1 -0
  649. package/_refs/frigate/web/public/locales/ab/views/settings.json +1 -0
  650. package/_refs/frigate/web/public/locales/ab/views/system.json +1 -0
  651. package/_refs/frigate/web/public/locales/ar/audio.json +78 -0
  652. package/_refs/frigate/web/public/locales/ar/common.json +20 -0
  653. package/_refs/frigate/web/public/locales/ar/components/auth.json +15 -0
  654. package/_refs/frigate/web/public/locales/ar/components/camera.json +51 -0
  655. package/_refs/frigate/web/public/locales/ar/components/dialog.json +38 -0
  656. package/_refs/frigate/web/public/locales/ar/components/filter.json +31 -0
  657. package/_refs/frigate/web/public/locales/ar/components/icons.json +8 -0
  658. package/_refs/frigate/web/public/locales/ar/components/input.json +10 -0
  659. package/_refs/frigate/web/public/locales/ar/components/player.json +29 -0
  660. package/_refs/frigate/web/public/locales/ar/objects.json +22 -0
  661. package/_refs/frigate/web/public/locales/ar/views/classificationModel.json +5 -0
  662. package/_refs/frigate/web/public/locales/ar/views/configEditor.json +18 -0
  663. package/_refs/frigate/web/public/locales/ar/views/events.json +25 -0
  664. package/_refs/frigate/web/public/locales/ar/views/explore.json +30 -0
  665. package/_refs/frigate/web/public/locales/ar/views/exports.json +17 -0
  666. package/_refs/frigate/web/public/locales/ar/views/faceLibrary.json +108 -0
  667. package/_refs/frigate/web/public/locales/ar/views/live.json +39 -0
  668. package/_refs/frigate/web/public/locales/ar/views/recording.json +12 -0
  669. package/_refs/frigate/web/public/locales/ar/views/search.json +23 -0
  670. package/_refs/frigate/web/public/locales/ar/views/settings.json +35 -0
  671. package/_refs/frigate/web/public/locales/ar/views/system.json +80 -0
  672. package/_refs/frigate/web/public/locales/bg/audio.json +269 -0
  673. package/_refs/frigate/web/public/locales/bg/common.json +119 -0
  674. package/_refs/frigate/web/public/locales/bg/components/auth.json +16 -0
  675. package/_refs/frigate/web/public/locales/bg/components/camera.json +45 -0
  676. package/_refs/frigate/web/public/locales/bg/components/dialog.json +19 -0
  677. package/_refs/frigate/web/public/locales/bg/components/filter.json +34 -0
  678. package/_refs/frigate/web/public/locales/bg/components/icons.json +8 -0
  679. package/_refs/frigate/web/public/locales/bg/components/input.json +10 -0
  680. package/_refs/frigate/web/public/locales/bg/components/player.json +51 -0
  681. package/_refs/frigate/web/public/locales/bg/objects.json +23 -0
  682. package/_refs/frigate/web/public/locales/bg/views/classificationModel.json +6 -0
  683. package/_refs/frigate/web/public/locales/bg/views/configEditor.json +18 -0
  684. package/_refs/frigate/web/public/locales/bg/views/events.json +18 -0
  685. package/_refs/frigate/web/public/locales/bg/views/explore.json +14 -0
  686. package/_refs/frigate/web/public/locales/bg/views/exports.json +23 -0
  687. package/_refs/frigate/web/public/locales/bg/views/faceLibrary.json +19 -0
  688. package/_refs/frigate/web/public/locales/bg/views/live.json +69 -0
  689. package/_refs/frigate/web/public/locales/bg/views/recording.json +12 -0
  690. package/_refs/frigate/web/public/locales/bg/views/search.json +8 -0
  691. package/_refs/frigate/web/public/locales/bg/views/settings.json +20 -0
  692. package/_refs/frigate/web/public/locales/bg/views/system.json +10 -0
  693. package/_refs/frigate/web/public/locales/ca/audio.json +503 -0
  694. package/_refs/frigate/web/public/locales/ca/common.json +305 -0
  695. package/_refs/frigate/web/public/locales/ca/components/auth.json +16 -0
  696. package/_refs/frigate/web/public/locales/ca/components/camera.json +87 -0
  697. package/_refs/frigate/web/public/locales/ca/components/dialog.json +124 -0
  698. package/_refs/frigate/web/public/locales/ca/components/filter.json +140 -0
  699. package/_refs/frigate/web/public/locales/ca/components/icons.json +8 -0
  700. package/_refs/frigate/web/public/locales/ca/components/input.json +10 -0
  701. package/_refs/frigate/web/public/locales/ca/components/player.json +51 -0
  702. package/_refs/frigate/web/public/locales/ca/objects.json +120 -0
  703. package/_refs/frigate/web/public/locales/ca/views/classificationModel.json +193 -0
  704. package/_refs/frigate/web/public/locales/ca/views/configEditor.json +18 -0
  705. package/_refs/frigate/web/public/locales/ca/views/events.json +67 -0
  706. package/_refs/frigate/web/public/locales/ca/views/explore.json +305 -0
  707. package/_refs/frigate/web/public/locales/ca/views/exports.json +23 -0
  708. package/_refs/frigate/web/public/locales/ca/views/faceLibrary.json +103 -0
  709. package/_refs/frigate/web/public/locales/ca/views/live.json +189 -0
  710. package/_refs/frigate/web/public/locales/ca/views/recording.json +12 -0
  711. package/_refs/frigate/web/public/locales/ca/views/search.json +73 -0
  712. package/_refs/frigate/web/public/locales/ca/views/settings.json +1248 -0
  713. package/_refs/frigate/web/public/locales/ca/views/system.json +208 -0
  714. package/_refs/frigate/web/public/locales/cs/audio.json +429 -0
  715. package/_refs/frigate/web/public/locales/cs/common.json +274 -0
  716. package/_refs/frigate/web/public/locales/cs/components/auth.json +16 -0
  717. package/_refs/frigate/web/public/locales/cs/components/camera.json +87 -0
  718. package/_refs/frigate/web/public/locales/cs/components/dialog.json +121 -0
  719. package/_refs/frigate/web/public/locales/cs/components/filter.json +136 -0
  720. package/_refs/frigate/web/public/locales/cs/components/icons.json +8 -0
  721. package/_refs/frigate/web/public/locales/cs/components/input.json +10 -0
  722. package/_refs/frigate/web/public/locales/cs/components/player.json +51 -0
  723. package/_refs/frigate/web/public/locales/cs/objects.json +120 -0
  724. package/_refs/frigate/web/public/locales/cs/views/classificationModel.json +47 -0
  725. package/_refs/frigate/web/public/locales/cs/views/configEditor.json +18 -0
  726. package/_refs/frigate/web/public/locales/cs/views/events.json +49 -0
  727. package/_refs/frigate/web/public/locales/cs/views/explore.json +228 -0
  728. package/_refs/frigate/web/public/locales/cs/views/exports.json +23 -0
  729. package/_refs/frigate/web/public/locales/cs/views/faceLibrary.json +103 -0
  730. package/_refs/frigate/web/public/locales/cs/views/live.json +171 -0
  731. package/_refs/frigate/web/public/locales/cs/views/recording.json +12 -0
  732. package/_refs/frigate/web/public/locales/cs/views/search.json +73 -0
  733. package/_refs/frigate/web/public/locales/cs/views/settings.json +900 -0
  734. package/_refs/frigate/web/public/locales/cs/views/system.json +186 -0
  735. package/_refs/frigate/web/public/locales/da/audio.json +88 -0
  736. package/_refs/frigate/web/public/locales/da/common.json +259 -0
  737. package/_refs/frigate/web/public/locales/da/components/auth.json +15 -0
  738. package/_refs/frigate/web/public/locales/da/components/camera.json +21 -0
  739. package/_refs/frigate/web/public/locales/da/components/dialog.json +25 -0
  740. package/_refs/frigate/web/public/locales/da/components/filter.json +50 -0
  741. package/_refs/frigate/web/public/locales/da/components/icons.json +8 -0
  742. package/_refs/frigate/web/public/locales/da/components/input.json +10 -0
  743. package/_refs/frigate/web/public/locales/da/components/player.json +15 -0
  744. package/_refs/frigate/web/public/locales/da/objects.json +18 -0
  745. package/_refs/frigate/web/public/locales/da/views/classificationModel.json +18 -0
  746. package/_refs/frigate/web/public/locales/da/views/configEditor.json +10 -0
  747. package/_refs/frigate/web/public/locales/da/views/events.json +16 -0
  748. package/_refs/frigate/web/public/locales/da/views/explore.json +29 -0
  749. package/_refs/frigate/web/public/locales/da/views/exports.json +12 -0
  750. package/_refs/frigate/web/public/locales/da/views/faceLibrary.json +19 -0
  751. package/_refs/frigate/web/public/locales/da/views/live.json +21 -0
  752. package/_refs/frigate/web/public/locales/da/views/recording.json +12 -0
  753. package/_refs/frigate/web/public/locales/da/views/search.json +12 -0
  754. package/_refs/frigate/web/public/locales/da/views/settings.json +14 -0
  755. package/_refs/frigate/web/public/locales/da/views/system.json +103 -0
  756. package/_refs/frigate/web/public/locales/de/audio.json +503 -0
  757. package/_refs/frigate/web/public/locales/de/common.json +308 -0
  758. package/_refs/frigate/web/public/locales/de/components/auth.json +16 -0
  759. package/_refs/frigate/web/public/locales/de/components/camera.json +87 -0
  760. package/_refs/frigate/web/public/locales/de/components/dialog.json +133 -0
  761. package/_refs/frigate/web/public/locales/de/components/filter.json +140 -0
  762. package/_refs/frigate/web/public/locales/de/components/icons.json +8 -0
  763. package/_refs/frigate/web/public/locales/de/components/input.json +10 -0
  764. package/_refs/frigate/web/public/locales/de/components/player.json +51 -0
  765. package/_refs/frigate/web/public/locales/de/objects.json +120 -0
  766. package/_refs/frigate/web/public/locales/de/views/classificationModel.json +188 -0
  767. package/_refs/frigate/web/public/locales/de/views/configEditor.json +18 -0
  768. package/_refs/frigate/web/public/locales/de/views/events.json +67 -0
  769. package/_refs/frigate/web/public/locales/de/views/explore.json +303 -0
  770. package/_refs/frigate/web/public/locales/de/views/exports.json +23 -0
  771. package/_refs/frigate/web/public/locales/de/views/faceLibrary.json +101 -0
  772. package/_refs/frigate/web/public/locales/de/views/live.json +189 -0
  773. package/_refs/frigate/web/public/locales/de/views/recording.json +12 -0
  774. package/_refs/frigate/web/public/locales/de/views/search.json +75 -0
  775. package/_refs/frigate/web/public/locales/de/views/settings.json +1301 -0
  776. package/_refs/frigate/web/public/locales/de/views/system.json +208 -0
  777. package/_refs/frigate/web/public/locales/el/audio.json +65 -0
  778. package/_refs/frigate/web/public/locales/el/common.json +181 -0
  779. package/_refs/frigate/web/public/locales/el/components/auth.json +16 -0
  780. package/_refs/frigate/web/public/locales/el/components/camera.json +42 -0
  781. package/_refs/frigate/web/public/locales/el/components/dialog.json +55 -0
  782. package/_refs/frigate/web/public/locales/el/components/filter.json +41 -0
  783. package/_refs/frigate/web/public/locales/el/components/icons.json +8 -0
  784. package/_refs/frigate/web/public/locales/el/components/input.json +10 -0
  785. package/_refs/frigate/web/public/locales/el/components/player.json +51 -0
  786. package/_refs/frigate/web/public/locales/el/objects.json +24 -0
  787. package/_refs/frigate/web/public/locales/el/views/classificationModel.json +7 -0
  788. package/_refs/frigate/web/public/locales/el/views/configEditor.json +18 -0
  789. package/_refs/frigate/web/public/locales/el/views/events.json +32 -0
  790. package/_refs/frigate/web/public/locales/el/views/explore.json +52 -0
  791. package/_refs/frigate/web/public/locales/el/views/exports.json +22 -0
  792. package/_refs/frigate/web/public/locales/el/views/faceLibrary.json +50 -0
  793. package/_refs/frigate/web/public/locales/el/views/live.json +69 -0
  794. package/_refs/frigate/web/public/locales/el/views/recording.json +12 -0
  795. package/_refs/frigate/web/public/locales/el/views/search.json +29 -0
  796. package/_refs/frigate/web/public/locales/el/views/settings.json +58 -0
  797. package/_refs/frigate/web/public/locales/el/views/system.json +39 -0
  798. package/_refs/frigate/web/public/locales/en/audio.json +503 -0
  799. package/_refs/frigate/web/public/locales/en/common.json +299 -0
  800. package/_refs/frigate/web/public/locales/en/components/auth.json +16 -0
  801. package/_refs/frigate/web/public/locales/en/components/camera.json +86 -0
  802. package/_refs/frigate/web/public/locales/en/components/dialog.json +122 -0
  803. package/_refs/frigate/web/public/locales/en/components/filter.json +138 -0
  804. package/_refs/frigate/web/public/locales/en/components/icons.json +8 -0
  805. package/_refs/frigate/web/public/locales/en/components/input.json +10 -0
  806. package/_refs/frigate/web/public/locales/en/components/player.json +51 -0
  807. package/_refs/frigate/web/public/locales/en/config/audio.json +26 -0
  808. package/_refs/frigate/web/public/locales/en/config/audio_transcription.json +23 -0
  809. package/_refs/frigate/web/public/locales/en/config/auth.json +35 -0
  810. package/_refs/frigate/web/public/locales/en/config/birdseye.json +37 -0
  811. package/_refs/frigate/web/public/locales/en/config/camera_groups.json +14 -0
  812. package/_refs/frigate/web/public/locales/en/config/cameras.json +761 -0
  813. package/_refs/frigate/web/public/locales/en/config/classification.json +58 -0
  814. package/_refs/frigate/web/public/locales/en/config/database.json +8 -0
  815. package/_refs/frigate/web/public/locales/en/config/detect.json +51 -0
  816. package/_refs/frigate/web/public/locales/en/config/detectors.json +14 -0
  817. package/_refs/frigate/web/public/locales/en/config/environment_vars.json +3 -0
  818. package/_refs/frigate/web/public/locales/en/config/face_recognition.json +36 -0
  819. package/_refs/frigate/web/public/locales/en/config/ffmpeg.json +34 -0
  820. package/_refs/frigate/web/public/locales/en/config/genai.json +23 -0
  821. package/_refs/frigate/web/public/locales/en/config/go2rtc.json +3 -0
  822. package/_refs/frigate/web/public/locales/en/config/live.json +14 -0
  823. package/_refs/frigate/web/public/locales/en/config/logger.json +11 -0
  824. package/_refs/frigate/web/public/locales/en/config/lpr.json +45 -0
  825. package/_refs/frigate/web/public/locales/en/config/model.json +35 -0
  826. package/_refs/frigate/web/public/locales/en/config/motion.json +3 -0
  827. package/_refs/frigate/web/public/locales/en/config/mqtt.json +44 -0
  828. package/_refs/frigate/web/public/locales/en/config/networking.json +13 -0
  829. package/_refs/frigate/web/public/locales/en/config/notifications.json +17 -0
  830. package/_refs/frigate/web/public/locales/en/config/objects.json +77 -0
  831. package/_refs/frigate/web/public/locales/en/config/proxy.json +31 -0
  832. package/_refs/frigate/web/public/locales/en/config/record.json +93 -0
  833. package/_refs/frigate/web/public/locales/en/config/review.json +74 -0
  834. package/_refs/frigate/web/public/locales/en/config/safe_mode.json +3 -0
  835. package/_refs/frigate/web/public/locales/en/config/semantic_search.json +21 -0
  836. package/_refs/frigate/web/public/locales/en/config/snapshots.json +43 -0
  837. package/_refs/frigate/web/public/locales/en/config/telemetry.json +28 -0
  838. package/_refs/frigate/web/public/locales/en/config/timestamp_style.json +31 -0
  839. package/_refs/frigate/web/public/locales/en/config/tls.json +8 -0
  840. package/_refs/frigate/web/public/locales/en/config/ui.json +20 -0
  841. package/_refs/frigate/web/public/locales/en/config/version.json +3 -0
  842. package/_refs/frigate/web/public/locales/en/objects.json +120 -0
  843. package/_refs/frigate/web/public/locales/en/views/classificationModel.json +187 -0
  844. package/_refs/frigate/web/public/locales/en/views/configEditor.json +18 -0
  845. package/_refs/frigate/web/public/locales/en/views/events.json +65 -0
  846. package/_refs/frigate/web/public/locales/en/views/explore.json +248 -0
  847. package/_refs/frigate/web/public/locales/en/views/exports.json +23 -0
  848. package/_refs/frigate/web/public/locales/en/views/faceLibrary.json +91 -0
  849. package/_refs/frigate/web/public/locales/en/views/live.json +196 -0
  850. package/_refs/frigate/web/public/locales/en/views/recording.json +12 -0
  851. package/_refs/frigate/web/public/locales/en/views/search.json +73 -0
  852. package/_refs/frigate/web/public/locales/en/views/settings.json +1069 -0
  853. package/_refs/frigate/web/public/locales/en/views/system.json +208 -0
  854. package/_refs/frigate/web/public/locales/es/audio.json +503 -0
  855. package/_refs/frigate/web/public/locales/es/common.json +314 -0
  856. package/_refs/frigate/web/public/locales/es/components/auth.json +16 -0
  857. package/_refs/frigate/web/public/locales/es/components/camera.json +87 -0
  858. package/_refs/frigate/web/public/locales/es/components/dialog.json +136 -0
  859. package/_refs/frigate/web/public/locales/es/components/filter.json +141 -0
  860. package/_refs/frigate/web/public/locales/es/components/icons.json +8 -0
  861. package/_refs/frigate/web/public/locales/es/components/input.json +10 -0
  862. package/_refs/frigate/web/public/locales/es/components/player.json +51 -0
  863. package/_refs/frigate/web/public/locales/es/objects.json +120 -0
  864. package/_refs/frigate/web/public/locales/es/views/classificationModel.json +192 -0
  865. package/_refs/frigate/web/public/locales/es/views/configEditor.json +18 -0
  866. package/_refs/frigate/web/public/locales/es/views/events.json +68 -0
  867. package/_refs/frigate/web/public/locales/es/views/explore.json +305 -0
  868. package/_refs/frigate/web/public/locales/es/views/exports.json +23 -0
  869. package/_refs/frigate/web/public/locales/es/views/faceLibrary.json +104 -0
  870. package/_refs/frigate/web/public/locales/es/views/live.json +189 -0
  871. package/_refs/frigate/web/public/locales/es/views/recording.json +12 -0
  872. package/_refs/frigate/web/public/locales/es/views/search.json +75 -0
  873. package/_refs/frigate/web/public/locales/es/views/settings.json +1227 -0
  874. package/_refs/frigate/web/public/locales/es/views/system.json +206 -0
  875. package/_refs/frigate/web/public/locales/et/audio.json +117 -0
  876. package/_refs/frigate/web/public/locales/et/common.json +298 -0
  877. package/_refs/frigate/web/public/locales/et/components/auth.json +16 -0
  878. package/_refs/frigate/web/public/locales/et/components/camera.json +86 -0
  879. package/_refs/frigate/web/public/locales/et/components/dialog.json +122 -0
  880. package/_refs/frigate/web/public/locales/et/components/filter.json +88 -0
  881. package/_refs/frigate/web/public/locales/et/components/icons.json +8 -0
  882. package/_refs/frigate/web/public/locales/et/components/input.json +10 -0
  883. package/_refs/frigate/web/public/locales/et/components/player.json +51 -0
  884. package/_refs/frigate/web/public/locales/et/objects.json +120 -0
  885. package/_refs/frigate/web/public/locales/et/views/classificationModel.json +47 -0
  886. package/_refs/frigate/web/public/locales/et/views/configEditor.json +18 -0
  887. package/_refs/frigate/web/public/locales/et/views/events.json +65 -0
  888. package/_refs/frigate/web/public/locales/et/views/explore.json +74 -0
  889. package/_refs/frigate/web/public/locales/et/views/exports.json +23 -0
  890. package/_refs/frigate/web/public/locales/et/views/faceLibrary.json +38 -0
  891. package/_refs/frigate/web/public/locales/et/views/live.json +134 -0
  892. package/_refs/frigate/web/public/locales/et/views/recording.json +12 -0
  893. package/_refs/frigate/web/public/locales/et/views/search.json +23 -0
  894. package/_refs/frigate/web/public/locales/et/views/settings.json +193 -0
  895. package/_refs/frigate/web/public/locales/et/views/system.json +17 -0
  896. package/_refs/frigate/web/public/locales/fa/audio.json +503 -0
  897. package/_refs/frigate/web/public/locales/fa/common.json +297 -0
  898. package/_refs/frigate/web/public/locales/fa/components/auth.json +16 -0
  899. package/_refs/frigate/web/public/locales/fa/components/camera.json +86 -0
  900. package/_refs/frigate/web/public/locales/fa/components/dialog.json +122 -0
  901. package/_refs/frigate/web/public/locales/fa/components/filter.json +140 -0
  902. package/_refs/frigate/web/public/locales/fa/components/icons.json +8 -0
  903. package/_refs/frigate/web/public/locales/fa/components/input.json +10 -0
  904. package/_refs/frigate/web/public/locales/fa/components/player.json +51 -0
  905. package/_refs/frigate/web/public/locales/fa/objects.json +120 -0
  906. package/_refs/frigate/web/public/locales/fa/views/classificationModel.json +187 -0
  907. package/_refs/frigate/web/public/locales/fa/views/configEditor.json +18 -0
  908. package/_refs/frigate/web/public/locales/fa/views/events.json +65 -0
  909. package/_refs/frigate/web/public/locales/fa/views/explore.json +248 -0
  910. package/_refs/frigate/web/public/locales/fa/views/exports.json +23 -0
  911. package/_refs/frigate/web/public/locales/fa/views/faceLibrary.json +90 -0
  912. package/_refs/frigate/web/public/locales/fa/views/live.json +186 -0
  913. package/_refs/frigate/web/public/locales/fa/views/recording.json +12 -0
  914. package/_refs/frigate/web/public/locales/fa/views/search.json +73 -0
  915. package/_refs/frigate/web/public/locales/fa/views/settings.json +1069 -0
  916. package/_refs/frigate/web/public/locales/fa/views/system.json +201 -0
  917. package/_refs/frigate/web/public/locales/fi/audio.json +165 -0
  918. package/_refs/frigate/web/public/locales/fi/common.json +176 -0
  919. package/_refs/frigate/web/public/locales/fi/components/auth.json +15 -0
  920. package/_refs/frigate/web/public/locales/fi/components/camera.json +87 -0
  921. package/_refs/frigate/web/public/locales/fi/components/dialog.json +87 -0
  922. package/_refs/frigate/web/public/locales/fi/components/filter.json +91 -0
  923. package/_refs/frigate/web/public/locales/fi/components/icons.json +8 -0
  924. package/_refs/frigate/web/public/locales/fi/components/input.json +10 -0
  925. package/_refs/frigate/web/public/locales/fi/components/player.json +51 -0
  926. package/_refs/frigate/web/public/locales/fi/objects.json +120 -0
  927. package/_refs/frigate/web/public/locales/fi/views/classificationModel.json +1 -0
  928. package/_refs/frigate/web/public/locales/fi/views/configEditor.json +18 -0
  929. package/_refs/frigate/web/public/locales/fi/views/events.json +40 -0
  930. package/_refs/frigate/web/public/locales/fi/views/explore.json +155 -0
  931. package/_refs/frigate/web/public/locales/fi/views/exports.json +17 -0
  932. package/_refs/frigate/web/public/locales/fi/views/faceLibrary.json +82 -0
  933. package/_refs/frigate/web/public/locales/fi/views/live.json +171 -0
  934. package/_refs/frigate/web/public/locales/fi/views/recording.json +12 -0
  935. package/_refs/frigate/web/public/locales/fi/views/search.json +72 -0
  936. package/_refs/frigate/web/public/locales/fi/views/settings.json +579 -0
  937. package/_refs/frigate/web/public/locales/fi/views/system.json +77 -0
  938. package/_refs/frigate/web/public/locales/fr/audio.json +503 -0
  939. package/_refs/frigate/web/public/locales/fr/common.json +314 -0
  940. package/_refs/frigate/web/public/locales/fr/components/auth.json +16 -0
  941. package/_refs/frigate/web/public/locales/fr/components/camera.json +87 -0
  942. package/_refs/frigate/web/public/locales/fr/components/dialog.json +136 -0
  943. package/_refs/frigate/web/public/locales/fr/components/filter.json +141 -0
  944. package/_refs/frigate/web/public/locales/fr/components/icons.json +8 -0
  945. package/_refs/frigate/web/public/locales/fr/components/input.json +10 -0
  946. package/_refs/frigate/web/public/locales/fr/components/player.json +51 -0
  947. package/_refs/frigate/web/public/locales/fr/objects.json +120 -0
  948. package/_refs/frigate/web/public/locales/fr/views/classificationModel.json +193 -0
  949. package/_refs/frigate/web/public/locales/fr/views/configEditor.json +18 -0
  950. package/_refs/frigate/web/public/locales/fr/views/events.json +68 -0
  951. package/_refs/frigate/web/public/locales/fr/views/explore.json +305 -0
  952. package/_refs/frigate/web/public/locales/fr/views/exports.json +23 -0
  953. package/_refs/frigate/web/public/locales/fr/views/faceLibrary.json +104 -0
  954. package/_refs/frigate/web/public/locales/fr/views/live.json +189 -0
  955. package/_refs/frigate/web/public/locales/fr/views/recording.json +12 -0
  956. package/_refs/frigate/web/public/locales/fr/views/search.json +75 -0
  957. package/_refs/frigate/web/public/locales/fr/views/settings.json +1314 -0
  958. package/_refs/frigate/web/public/locales/fr/views/system.json +205 -0
  959. package/_refs/frigate/web/public/locales/gl/audio.json +19 -0
  960. package/_refs/frigate/web/public/locales/gl/common.json +14 -0
  961. package/_refs/frigate/web/public/locales/gl/components/auth.json +13 -0
  962. package/_refs/frigate/web/public/locales/gl/components/camera.json +20 -0
  963. package/_refs/frigate/web/public/locales/gl/components/dialog.json +24 -0
  964. package/_refs/frigate/web/public/locales/gl/components/filter.json +17 -0
  965. package/_refs/frigate/web/public/locales/gl/components/icons.json +8 -0
  966. package/_refs/frigate/web/public/locales/gl/components/input.json +10 -0
  967. package/_refs/frigate/web/public/locales/gl/components/player.json +14 -0
  968. package/_refs/frigate/web/public/locales/gl/objects.json +18 -0
  969. package/_refs/frigate/web/public/locales/gl/views/classificationModel.json +1 -0
  970. package/_refs/frigate/web/public/locales/gl/views/configEditor.json +12 -0
  971. package/_refs/frigate/web/public/locales/gl/views/events.json +13 -0
  972. package/_refs/frigate/web/public/locales/gl/views/explore.json +12 -0
  973. package/_refs/frigate/web/public/locales/gl/views/exports.json +10 -0
  974. package/_refs/frigate/web/public/locales/gl/views/faceLibrary.json +11 -0
  975. package/_refs/frigate/web/public/locales/gl/views/live.json +19 -0
  976. package/_refs/frigate/web/public/locales/gl/views/recording.json +11 -0
  977. package/_refs/frigate/web/public/locales/gl/views/search.json +15 -0
  978. package/_refs/frigate/web/public/locales/gl/views/settings.json +11 -0
  979. package/_refs/frigate/web/public/locales/gl/views/system.json +17 -0
  980. package/_refs/frigate/web/public/locales/he/audio.json +503 -0
  981. package/_refs/frigate/web/public/locales/he/common.json +305 -0
  982. package/_refs/frigate/web/public/locales/he/components/auth.json +16 -0
  983. package/_refs/frigate/web/public/locales/he/components/camera.json +87 -0
  984. package/_refs/frigate/web/public/locales/he/components/dialog.json +124 -0
  985. package/_refs/frigate/web/public/locales/he/components/filter.json +140 -0
  986. package/_refs/frigate/web/public/locales/he/components/icons.json +8 -0
  987. package/_refs/frigate/web/public/locales/he/components/input.json +10 -0
  988. package/_refs/frigate/web/public/locales/he/components/player.json +51 -0
  989. package/_refs/frigate/web/public/locales/he/objects.json +120 -0
  990. package/_refs/frigate/web/public/locales/he/views/classificationModel.json +192 -0
  991. package/_refs/frigate/web/public/locales/he/views/configEditor.json +18 -0
  992. package/_refs/frigate/web/public/locales/he/views/events.json +65 -0
  993. package/_refs/frigate/web/public/locales/he/views/explore.json +305 -0
  994. package/_refs/frigate/web/public/locales/he/views/exports.json +23 -0
  995. package/_refs/frigate/web/public/locales/he/views/faceLibrary.json +103 -0
  996. package/_refs/frigate/web/public/locales/he/views/live.json +189 -0
  997. package/_refs/frigate/web/public/locales/he/views/recording.json +12 -0
  998. package/_refs/frigate/web/public/locales/he/views/search.json +73 -0
  999. package/_refs/frigate/web/public/locales/he/views/settings.json +1118 -0
  1000. package/_refs/frigate/web/public/locales/he/views/system.json +208 -0
  1001. package/_refs/frigate/web/public/locales/hi/audio.json +145 -0
  1002. package/_refs/frigate/web/public/locales/hi/common.json +8 -0
  1003. package/_refs/frigate/web/public/locales/hi/components/auth.json +15 -0
  1004. package/_refs/frigate/web/public/locales/hi/components/camera.json +10 -0
  1005. package/_refs/frigate/web/public/locales/hi/components/dialog.json +10 -0
  1006. package/_refs/frigate/web/public/locales/hi/components/filter.json +10 -0
  1007. package/_refs/frigate/web/public/locales/hi/components/icons.json +8 -0
  1008. package/_refs/frigate/web/public/locales/hi/components/input.json +10 -0
  1009. package/_refs/frigate/web/public/locales/hi/components/player.json +8 -0
  1010. package/_refs/frigate/web/public/locales/hi/objects.json +18 -0
  1011. package/_refs/frigate/web/public/locales/hi/views/classificationModel.json +1 -0
  1012. package/_refs/frigate/web/public/locales/hi/views/configEditor.json +15 -0
  1013. package/_refs/frigate/web/public/locales/hi/views/events.json +8 -0
  1014. package/_refs/frigate/web/public/locales/hi/views/explore.json +8 -0
  1015. package/_refs/frigate/web/public/locales/hi/views/exports.json +6 -0
  1016. package/_refs/frigate/web/public/locales/hi/views/faceLibrary.json +7 -0
  1017. package/_refs/frigate/web/public/locales/hi/views/live.json +5 -0
  1018. package/_refs/frigate/web/public/locales/hi/views/recording.json +11 -0
  1019. package/_refs/frigate/web/public/locales/hi/views/search.json +5 -0
  1020. package/_refs/frigate/web/public/locales/hi/views/settings.json +7 -0
  1021. package/_refs/frigate/web/public/locales/hi/views/system.json +7 -0
  1022. package/_refs/frigate/web/public/locales/hr/audio.json +503 -0
  1023. package/_refs/frigate/web/public/locales/hr/common.json +305 -0
  1024. package/_refs/frigate/web/public/locales/hr/components/auth.json +16 -0
  1025. package/_refs/frigate/web/public/locales/hr/components/camera.json +86 -0
  1026. package/_refs/frigate/web/public/locales/hr/components/dialog.json +123 -0
  1027. package/_refs/frigate/web/public/locales/hr/components/filter.json +140 -0
  1028. package/_refs/frigate/web/public/locales/hr/components/icons.json +8 -0
  1029. package/_refs/frigate/web/public/locales/hr/components/input.json +10 -0
  1030. package/_refs/frigate/web/public/locales/hr/components/player.json +51 -0
  1031. package/_refs/frigate/web/public/locales/hr/objects.json +120 -0
  1032. package/_refs/frigate/web/public/locales/hr/views/classificationModel.json +72 -0
  1033. package/_refs/frigate/web/public/locales/hr/views/configEditor.json +18 -0
  1034. package/_refs/frigate/web/public/locales/hr/views/events.json +65 -0
  1035. package/_refs/frigate/web/public/locales/hr/views/explore.json +59 -0
  1036. package/_refs/frigate/web/public/locales/hr/views/exports.json +23 -0
  1037. package/_refs/frigate/web/public/locales/hr/views/faceLibrary.json +93 -0
  1038. package/_refs/frigate/web/public/locales/hr/views/live.json +101 -0
  1039. package/_refs/frigate/web/public/locales/hr/views/recording.json +12 -0
  1040. package/_refs/frigate/web/public/locales/hr/views/search.json +73 -0
  1041. package/_refs/frigate/web/public/locales/hr/views/settings.json +71 -0
  1042. package/_refs/frigate/web/public/locales/hr/views/system.json +64 -0
  1043. package/_refs/frigate/web/public/locales/hu/audio.json +429 -0
  1044. package/_refs/frigate/web/public/locales/hu/common.json +278 -0
  1045. package/_refs/frigate/web/public/locales/hu/components/auth.json +16 -0
  1046. package/_refs/frigate/web/public/locales/hu/components/camera.json +87 -0
  1047. package/_refs/frigate/web/public/locales/hu/components/dialog.json +121 -0
  1048. package/_refs/frigate/web/public/locales/hu/components/filter.json +136 -0
  1049. package/_refs/frigate/web/public/locales/hu/components/icons.json +8 -0
  1050. package/_refs/frigate/web/public/locales/hu/components/input.json +10 -0
  1051. package/_refs/frigate/web/public/locales/hu/components/player.json +51 -0
  1052. package/_refs/frigate/web/public/locales/hu/objects.json +120 -0
  1053. package/_refs/frigate/web/public/locales/hu/views/classificationModel.json +47 -0
  1054. package/_refs/frigate/web/public/locales/hu/views/configEditor.json +18 -0
  1055. package/_refs/frigate/web/public/locales/hu/views/events.json +42 -0
  1056. package/_refs/frigate/web/public/locales/hu/views/explore.json +226 -0
  1057. package/_refs/frigate/web/public/locales/hu/views/exports.json +23 -0
  1058. package/_refs/frigate/web/public/locales/hu/views/faceLibrary.json +99 -0
  1059. package/_refs/frigate/web/public/locales/hu/views/live.json +185 -0
  1060. package/_refs/frigate/web/public/locales/hu/views/recording.json +12 -0
  1061. package/_refs/frigate/web/public/locales/hu/views/search.json +73 -0
  1062. package/_refs/frigate/web/public/locales/hu/views/settings.json +853 -0
  1063. package/_refs/frigate/web/public/locales/hu/views/system.json +186 -0
  1064. package/_refs/frigate/web/public/locales/id/audio.json +89 -0
  1065. package/_refs/frigate/web/public/locales/id/common.json +16 -0
  1066. package/_refs/frigate/web/public/locales/id/components/auth.json +16 -0
  1067. package/_refs/frigate/web/public/locales/id/components/camera.json +23 -0
  1068. package/_refs/frigate/web/public/locales/id/components/dialog.json +27 -0
  1069. package/_refs/frigate/web/public/locales/id/components/filter.json +27 -0
  1070. package/_refs/frigate/web/public/locales/id/components/icons.json +8 -0
  1071. package/_refs/frigate/web/public/locales/id/components/input.json +10 -0
  1072. package/_refs/frigate/web/public/locales/id/components/player.json +21 -0
  1073. package/_refs/frigate/web/public/locales/id/objects.json +21 -0
  1074. package/_refs/frigate/web/public/locales/id/views/classificationModel.json +16 -0
  1075. package/_refs/frigate/web/public/locales/id/views/configEditor.json +18 -0
  1076. package/_refs/frigate/web/public/locales/id/views/events.json +59 -0
  1077. package/_refs/frigate/web/public/locales/id/views/explore.json +21 -0
  1078. package/_refs/frigate/web/public/locales/id/views/exports.json +23 -0
  1079. package/_refs/frigate/web/public/locales/id/views/faceLibrary.json +92 -0
  1080. package/_refs/frigate/web/public/locales/id/views/live.json +22 -0
  1081. package/_refs/frigate/web/public/locales/id/views/recording.json +12 -0
  1082. package/_refs/frigate/web/public/locales/id/views/search.json +18 -0
  1083. package/_refs/frigate/web/public/locales/id/views/settings.json +48 -0
  1084. package/_refs/frigate/web/public/locales/id/views/system.json +20 -0
  1085. package/_refs/frigate/web/public/locales/it/audio.json +503 -0
  1086. package/_refs/frigate/web/public/locales/it/common.json +315 -0
  1087. package/_refs/frigate/web/public/locales/it/components/auth.json +16 -0
  1088. package/_refs/frigate/web/public/locales/it/components/camera.json +87 -0
  1089. package/_refs/frigate/web/public/locales/it/components/dialog.json +136 -0
  1090. package/_refs/frigate/web/public/locales/it/components/filter.json +140 -0
  1091. package/_refs/frigate/web/public/locales/it/components/icons.json +8 -0
  1092. package/_refs/frigate/web/public/locales/it/components/input.json +10 -0
  1093. package/_refs/frigate/web/public/locales/it/components/player.json +51 -0
  1094. package/_refs/frigate/web/public/locales/it/objects.json +120 -0
  1095. package/_refs/frigate/web/public/locales/it/views/classificationModel.json +193 -0
  1096. package/_refs/frigate/web/public/locales/it/views/configEditor.json +18 -0
  1097. package/_refs/frigate/web/public/locales/it/views/events.json +68 -0
  1098. package/_refs/frigate/web/public/locales/it/views/explore.json +305 -0
  1099. package/_refs/frigate/web/public/locales/it/views/exports.json +23 -0
  1100. package/_refs/frigate/web/public/locales/it/views/faceLibrary.json +104 -0
  1101. package/_refs/frigate/web/public/locales/it/views/live.json +189 -0
  1102. package/_refs/frigate/web/public/locales/it/views/recording.json +12 -0
  1103. package/_refs/frigate/web/public/locales/it/views/search.json +73 -0
  1104. package/_refs/frigate/web/public/locales/it/views/settings.json +1313 -0
  1105. package/_refs/frigate/web/public/locales/it/views/system.json +209 -0
  1106. package/_refs/frigate/web/public/locales/ja/audio.json +503 -0
  1107. package/_refs/frigate/web/public/locales/ja/common.json +290 -0
  1108. package/_refs/frigate/web/public/locales/ja/components/auth.json +16 -0
  1109. package/_refs/frigate/web/public/locales/ja/components/camera.json +86 -0
  1110. package/_refs/frigate/web/public/locales/ja/components/dialog.json +121 -0
  1111. package/_refs/frigate/web/public/locales/ja/components/filter.json +140 -0
  1112. package/_refs/frigate/web/public/locales/ja/components/icons.json +8 -0
  1113. package/_refs/frigate/web/public/locales/ja/components/input.json +10 -0
  1114. package/_refs/frigate/web/public/locales/ja/components/player.json +51 -0
  1115. package/_refs/frigate/web/public/locales/ja/objects.json +120 -0
  1116. package/_refs/frigate/web/public/locales/ja/views/classificationModel.json +182 -0
  1117. package/_refs/frigate/web/public/locales/ja/views/configEditor.json +18 -0
  1118. package/_refs/frigate/web/public/locales/ja/views/events.json +67 -0
  1119. package/_refs/frigate/web/public/locales/ja/views/explore.json +299 -0
  1120. package/_refs/frigate/web/public/locales/ja/views/exports.json +23 -0
  1121. package/_refs/frigate/web/public/locales/ja/views/faceLibrary.json +96 -0
  1122. package/_refs/frigate/web/public/locales/ja/views/live.json +187 -0
  1123. package/_refs/frigate/web/public/locales/ja/views/recording.json +12 -0
  1124. package/_refs/frigate/web/public/locales/ja/views/search.json +73 -0
  1125. package/_refs/frigate/web/public/locales/ja/views/settings.json +1221 -0
  1126. package/_refs/frigate/web/public/locales/ja/views/system.json +201 -0
  1127. package/_refs/frigate/web/public/locales/ko/audio.json +72 -0
  1128. package/_refs/frigate/web/public/locales/ko/common.json +271 -0
  1129. package/_refs/frigate/web/public/locales/ko/components/auth.json +15 -0
  1130. package/_refs/frigate/web/public/locales/ko/components/camera.json +86 -0
  1131. package/_refs/frigate/web/public/locales/ko/components/dialog.json +92 -0
  1132. package/_refs/frigate/web/public/locales/ko/components/filter.json +39 -0
  1133. package/_refs/frigate/web/public/locales/ko/components/icons.json +8 -0
  1134. package/_refs/frigate/web/public/locales/ko/components/input.json +10 -0
  1135. package/_refs/frigate/web/public/locales/ko/components/player.json +51 -0
  1136. package/_refs/frigate/web/public/locales/ko/objects.json +120 -0
  1137. package/_refs/frigate/web/public/locales/ko/views/classificationModel.json +1 -0
  1138. package/_refs/frigate/web/public/locales/ko/views/configEditor.json +18 -0
  1139. package/_refs/frigate/web/public/locales/ko/views/events.json +51 -0
  1140. package/_refs/frigate/web/public/locales/ko/views/explore.json +31 -0
  1141. package/_refs/frigate/web/public/locales/ko/views/exports.json +17 -0
  1142. package/_refs/frigate/web/public/locales/ko/views/faceLibrary.json +84 -0
  1143. package/_refs/frigate/web/public/locales/ko/views/live.json +183 -0
  1144. package/_refs/frigate/web/public/locales/ko/views/recording.json +12 -0
  1145. package/_refs/frigate/web/public/locales/ko/views/search.json +7 -0
  1146. package/_refs/frigate/web/public/locales/ko/views/settings.json +122 -0
  1147. package/_refs/frigate/web/public/locales/ko/views/system.json +186 -0
  1148. package/_refs/frigate/web/public/locales/lt/audio.json +429 -0
  1149. package/_refs/frigate/web/public/locales/lt/common.json +290 -0
  1150. package/_refs/frigate/web/public/locales/lt/components/auth.json +16 -0
  1151. package/_refs/frigate/web/public/locales/lt/components/camera.json +87 -0
  1152. package/_refs/frigate/web/public/locales/lt/components/dialog.json +123 -0
  1153. package/_refs/frigate/web/public/locales/lt/components/filter.json +140 -0
  1154. package/_refs/frigate/web/public/locales/lt/components/icons.json +8 -0
  1155. package/_refs/frigate/web/public/locales/lt/components/input.json +10 -0
  1156. package/_refs/frigate/web/public/locales/lt/components/player.json +51 -0
  1157. package/_refs/frigate/web/public/locales/lt/objects.json +120 -0
  1158. package/_refs/frigate/web/public/locales/lt/views/classificationModel.json +125 -0
  1159. package/_refs/frigate/web/public/locales/lt/views/configEditor.json +18 -0
  1160. package/_refs/frigate/web/public/locales/lt/views/events.json +67 -0
  1161. package/_refs/frigate/web/public/locales/lt/views/explore.json +278 -0
  1162. package/_refs/frigate/web/public/locales/lt/views/exports.json +23 -0
  1163. package/_refs/frigate/web/public/locales/lt/views/faceLibrary.json +102 -0
  1164. package/_refs/frigate/web/public/locales/lt/views/live.json +183 -0
  1165. package/_refs/frigate/web/public/locales/lt/views/recording.json +12 -0
  1166. package/_refs/frigate/web/public/locales/lt/views/search.json +73 -0
  1167. package/_refs/frigate/web/public/locales/lt/views/settings.json +885 -0
  1168. package/_refs/frigate/web/public/locales/lt/views/system.json +191 -0
  1169. package/_refs/frigate/web/public/locales/lv/audio.json +35 -0
  1170. package/_refs/frigate/web/public/locales/lv/common.json +304 -0
  1171. package/_refs/frigate/web/public/locales/lv/components/auth.json +16 -0
  1172. package/_refs/frigate/web/public/locales/lv/components/camera.json +86 -0
  1173. package/_refs/frigate/web/public/locales/lv/components/dialog.json +123 -0
  1174. package/_refs/frigate/web/public/locales/lv/components/filter.json +52 -0
  1175. package/_refs/frigate/web/public/locales/lv/components/icons.json +8 -0
  1176. package/_refs/frigate/web/public/locales/lv/components/input.json +10 -0
  1177. package/_refs/frigate/web/public/locales/lv/components/player.json +51 -0
  1178. package/_refs/frigate/web/public/locales/lv/objects.json +19 -0
  1179. package/_refs/frigate/web/public/locales/lv/views/classificationModel.json +36 -0
  1180. package/_refs/frigate/web/public/locales/lv/views/configEditor.json +18 -0
  1181. package/_refs/frigate/web/public/locales/lv/views/events.json +61 -0
  1182. package/_refs/frigate/web/public/locales/lv/views/explore.json +49 -0
  1183. package/_refs/frigate/web/public/locales/lv/views/exports.json +23 -0
  1184. package/_refs/frigate/web/public/locales/lv/views/faceLibrary.json +93 -0
  1185. package/_refs/frigate/web/public/locales/lv/views/live.json +13 -0
  1186. package/_refs/frigate/web/public/locales/lv/views/recording.json +12 -0
  1187. package/_refs/frigate/web/public/locales/lv/views/search.json +73 -0
  1188. package/_refs/frigate/web/public/locales/lv/views/settings.json +28 -0
  1189. package/_refs/frigate/web/public/locales/lv/views/system.json +29 -0
  1190. package/_refs/frigate/web/public/locales/ml/audio.json +1 -0
  1191. package/_refs/frigate/web/public/locales/ml/common.json +1 -0
  1192. package/_refs/frigate/web/public/locales/ml/components/auth.json +1 -0
  1193. package/_refs/frigate/web/public/locales/ml/components/camera.json +1 -0
  1194. package/_refs/frigate/web/public/locales/ml/components/dialog.json +1 -0
  1195. package/_refs/frigate/web/public/locales/ml/components/filter.json +1 -0
  1196. package/_refs/frigate/web/public/locales/ml/components/icons.json +1 -0
  1197. package/_refs/frigate/web/public/locales/ml/components/input.json +1 -0
  1198. package/_refs/frigate/web/public/locales/ml/components/player.json +1 -0
  1199. package/_refs/frigate/web/public/locales/ml/objects.json +1 -0
  1200. package/_refs/frigate/web/public/locales/ml/views/classificationModel.json +1 -0
  1201. package/_refs/frigate/web/public/locales/ml/views/configEditor.json +1 -0
  1202. package/_refs/frigate/web/public/locales/ml/views/events.json +1 -0
  1203. package/_refs/frigate/web/public/locales/ml/views/explore.json +1 -0
  1204. package/_refs/frigate/web/public/locales/ml/views/exports.json +1 -0
  1205. package/_refs/frigate/web/public/locales/ml/views/faceLibrary.json +1 -0
  1206. package/_refs/frigate/web/public/locales/ml/views/live.json +1 -0
  1207. package/_refs/frigate/web/public/locales/ml/views/recording.json +1 -0
  1208. package/_refs/frigate/web/public/locales/ml/views/search.json +1 -0
  1209. package/_refs/frigate/web/public/locales/ml/views/settings.json +1 -0
  1210. package/_refs/frigate/web/public/locales/ml/views/system.json +1 -0
  1211. package/_refs/frigate/web/public/locales/nb-NO/audio.json +503 -0
  1212. package/_refs/frigate/web/public/locales/nb-NO/common.json +308 -0
  1213. package/_refs/frigate/web/public/locales/nb-NO/components/auth.json +16 -0
  1214. package/_refs/frigate/web/public/locales/nb-NO/components/camera.json +87 -0
  1215. package/_refs/frigate/web/public/locales/nb-NO/components/dialog.json +133 -0
  1216. package/_refs/frigate/web/public/locales/nb-NO/components/filter.json +141 -0
  1217. package/_refs/frigate/web/public/locales/nb-NO/components/icons.json +8 -0
  1218. package/_refs/frigate/web/public/locales/nb-NO/components/input.json +10 -0
  1219. package/_refs/frigate/web/public/locales/nb-NO/components/player.json +51 -0
  1220. package/_refs/frigate/web/public/locales/nb-NO/objects.json +120 -0
  1221. package/_refs/frigate/web/public/locales/nb-NO/views/classificationModel.json +185 -0
  1222. package/_refs/frigate/web/public/locales/nb-NO/views/configEditor.json +18 -0
  1223. package/_refs/frigate/web/public/locales/nb-NO/views/events.json +67 -0
  1224. package/_refs/frigate/web/public/locales/nb-NO/views/explore.json +303 -0
  1225. package/_refs/frigate/web/public/locales/nb-NO/views/exports.json +23 -0
  1226. package/_refs/frigate/web/public/locales/nb-NO/views/faceLibrary.json +101 -0
  1227. package/_refs/frigate/web/public/locales/nb-NO/views/live.json +189 -0
  1228. package/_refs/frigate/web/public/locales/nb-NO/views/recording.json +12 -0
  1229. package/_refs/frigate/web/public/locales/nb-NO/views/search.json +75 -0
  1230. package/_refs/frigate/web/public/locales/nb-NO/views/settings.json +1310 -0
  1231. package/_refs/frigate/web/public/locales/nb-NO/views/system.json +208 -0
  1232. package/_refs/frigate/web/public/locales/nl/audio.json +503 -0
  1233. package/_refs/frigate/web/public/locales/nl/common.json +308 -0
  1234. package/_refs/frigate/web/public/locales/nl/components/auth.json +16 -0
  1235. package/_refs/frigate/web/public/locales/nl/components/camera.json +87 -0
  1236. package/_refs/frigate/web/public/locales/nl/components/dialog.json +133 -0
  1237. package/_refs/frigate/web/public/locales/nl/components/filter.json +141 -0
  1238. package/_refs/frigate/web/public/locales/nl/components/icons.json +8 -0
  1239. package/_refs/frigate/web/public/locales/nl/components/input.json +10 -0
  1240. package/_refs/frigate/web/public/locales/nl/components/player.json +51 -0
  1241. package/_refs/frigate/web/public/locales/nl/objects.json +120 -0
  1242. package/_refs/frigate/web/public/locales/nl/views/classificationModel.json +188 -0
  1243. package/_refs/frigate/web/public/locales/nl/views/configEditor.json +18 -0
  1244. package/_refs/frigate/web/public/locales/nl/views/events.json +67 -0
  1245. package/_refs/frigate/web/public/locales/nl/views/explore.json +303 -0
  1246. package/_refs/frigate/web/public/locales/nl/views/exports.json +23 -0
  1247. package/_refs/frigate/web/public/locales/nl/views/faceLibrary.json +101 -0
  1248. package/_refs/frigate/web/public/locales/nl/views/live.json +189 -0
  1249. package/_refs/frigate/web/public/locales/nl/views/recording.json +12 -0
  1250. package/_refs/frigate/web/public/locales/nl/views/search.json +75 -0
  1251. package/_refs/frigate/web/public/locales/nl/views/settings.json +1310 -0
  1252. package/_refs/frigate/web/public/locales/nl/views/system.json +209 -0
  1253. package/_refs/frigate/web/public/locales/peo/audio.json +1 -0
  1254. package/_refs/frigate/web/public/locales/peo/common.json +1 -0
  1255. package/_refs/frigate/web/public/locales/peo/components/auth.json +1 -0
  1256. package/_refs/frigate/web/public/locales/peo/components/camera.json +1 -0
  1257. package/_refs/frigate/web/public/locales/peo/components/dialog.json +1 -0
  1258. package/_refs/frigate/web/public/locales/peo/components/filter.json +1 -0
  1259. package/_refs/frigate/web/public/locales/peo/components/icons.json +1 -0
  1260. package/_refs/frigate/web/public/locales/peo/components/input.json +1 -0
  1261. package/_refs/frigate/web/public/locales/peo/components/player.json +1 -0
  1262. package/_refs/frigate/web/public/locales/peo/objects.json +1 -0
  1263. package/_refs/frigate/web/public/locales/peo/views/classificationModel.json +1 -0
  1264. package/_refs/frigate/web/public/locales/peo/views/configEditor.json +1 -0
  1265. package/_refs/frigate/web/public/locales/peo/views/events.json +1 -0
  1266. package/_refs/frigate/web/public/locales/peo/views/explore.json +1 -0
  1267. package/_refs/frigate/web/public/locales/peo/views/exports.json +1 -0
  1268. package/_refs/frigate/web/public/locales/peo/views/faceLibrary.json +1 -0
  1269. package/_refs/frigate/web/public/locales/peo/views/live.json +1 -0
  1270. package/_refs/frigate/web/public/locales/peo/views/recording.json +1 -0
  1271. package/_refs/frigate/web/public/locales/peo/views/search.json +1 -0
  1272. package/_refs/frigate/web/public/locales/peo/views/settings.json +1 -0
  1273. package/_refs/frigate/web/public/locales/peo/views/system.json +1 -0
  1274. package/_refs/frigate/web/public/locales/pl/audio.json +503 -0
  1275. package/_refs/frigate/web/public/locales/pl/common.json +314 -0
  1276. package/_refs/frigate/web/public/locales/pl/components/auth.json +16 -0
  1277. package/_refs/frigate/web/public/locales/pl/components/camera.json +87 -0
  1278. package/_refs/frigate/web/public/locales/pl/components/dialog.json +136 -0
  1279. package/_refs/frigate/web/public/locales/pl/components/filter.json +140 -0
  1280. package/_refs/frigate/web/public/locales/pl/components/icons.json +8 -0
  1281. package/_refs/frigate/web/public/locales/pl/components/input.json +10 -0
  1282. package/_refs/frigate/web/public/locales/pl/components/player.json +51 -0
  1283. package/_refs/frigate/web/public/locales/pl/objects.json +120 -0
  1284. package/_refs/frigate/web/public/locales/pl/views/classificationModel.json +193 -0
  1285. package/_refs/frigate/web/public/locales/pl/views/configEditor.json +18 -0
  1286. package/_refs/frigate/web/public/locales/pl/views/events.json +67 -0
  1287. package/_refs/frigate/web/public/locales/pl/views/explore.json +305 -0
  1288. package/_refs/frigate/web/public/locales/pl/views/exports.json +23 -0
  1289. package/_refs/frigate/web/public/locales/pl/views/faceLibrary.json +104 -0
  1290. package/_refs/frigate/web/public/locales/pl/views/live.json +189 -0
  1291. package/_refs/frigate/web/public/locales/pl/views/recording.json +12 -0
  1292. package/_refs/frigate/web/public/locales/pl/views/search.json +75 -0
  1293. package/_refs/frigate/web/public/locales/pl/views/settings.json +1226 -0
  1294. package/_refs/frigate/web/public/locales/pl/views/system.json +208 -0
  1295. package/_refs/frigate/web/public/locales/pt/audio.json +429 -0
  1296. package/_refs/frigate/web/public/locales/pt/common.json +314 -0
  1297. package/_refs/frigate/web/public/locales/pt/components/auth.json +16 -0
  1298. package/_refs/frigate/web/public/locales/pt/components/camera.json +87 -0
  1299. package/_refs/frigate/web/public/locales/pt/components/dialog.json +133 -0
  1300. package/_refs/frigate/web/public/locales/pt/components/filter.json +137 -0
  1301. package/_refs/frigate/web/public/locales/pt/components/icons.json +8 -0
  1302. package/_refs/frigate/web/public/locales/pt/components/input.json +10 -0
  1303. package/_refs/frigate/web/public/locales/pt/components/player.json +51 -0
  1304. package/_refs/frigate/web/public/locales/pt/objects.json +120 -0
  1305. package/_refs/frigate/web/public/locales/pt/views/classificationModel.json +50 -0
  1306. package/_refs/frigate/web/public/locales/pt/views/configEditor.json +18 -0
  1307. package/_refs/frigate/web/public/locales/pt/views/events.json +40 -0
  1308. package/_refs/frigate/web/public/locales/pt/views/explore.json +228 -0
  1309. package/_refs/frigate/web/public/locales/pt/views/exports.json +17 -0
  1310. package/_refs/frigate/web/public/locales/pt/views/faceLibrary.json +103 -0
  1311. package/_refs/frigate/web/public/locales/pt/views/live.json +171 -0
  1312. package/_refs/frigate/web/public/locales/pt/views/recording.json +12 -0
  1313. package/_refs/frigate/web/public/locales/pt/views/search.json +74 -0
  1314. package/_refs/frigate/web/public/locales/pt/views/settings.json +986 -0
  1315. package/_refs/frigate/web/public/locales/pt/views/system.json +186 -0
  1316. package/_refs/frigate/web/public/locales/pt-BR/audio.json +433 -0
  1317. package/_refs/frigate/web/public/locales/pt-BR/common.json +285 -0
  1318. package/_refs/frigate/web/public/locales/pt-BR/components/auth.json +16 -0
  1319. package/_refs/frigate/web/public/locales/pt-BR/components/camera.json +87 -0
  1320. package/_refs/frigate/web/public/locales/pt-BR/components/dialog.json +122 -0
  1321. package/_refs/frigate/web/public/locales/pt-BR/components/filter.json +136 -0
  1322. package/_refs/frigate/web/public/locales/pt-BR/components/icons.json +8 -0
  1323. package/_refs/frigate/web/public/locales/pt-BR/components/input.json +10 -0
  1324. package/_refs/frigate/web/public/locales/pt-BR/components/player.json +51 -0
  1325. package/_refs/frigate/web/public/locales/pt-BR/objects.json +120 -0
  1326. package/_refs/frigate/web/public/locales/pt-BR/views/classificationModel.json +55 -0
  1327. package/_refs/frigate/web/public/locales/pt-BR/views/configEditor.json +18 -0
  1328. package/_refs/frigate/web/public/locales/pt-BR/views/events.json +58 -0
  1329. package/_refs/frigate/web/public/locales/pt-BR/views/explore.json +229 -0
  1330. package/_refs/frigate/web/public/locales/pt-BR/views/exports.json +23 -0
  1331. package/_refs/frigate/web/public/locales/pt-BR/views/faceLibrary.json +102 -0
  1332. package/_refs/frigate/web/public/locales/pt-BR/views/live.json +185 -0
  1333. package/_refs/frigate/web/public/locales/pt-BR/views/recording.json +12 -0
  1334. package/_refs/frigate/web/public/locales/pt-BR/views/search.json +72 -0
  1335. package/_refs/frigate/web/public/locales/pt-BR/views/settings.json +906 -0
  1336. package/_refs/frigate/web/public/locales/pt-BR/views/system.json +186 -0
  1337. package/_refs/frigate/web/public/locales/ro/audio.json +503 -0
  1338. package/_refs/frigate/web/public/locales/ro/common.json +305 -0
  1339. package/_refs/frigate/web/public/locales/ro/components/auth.json +16 -0
  1340. package/_refs/frigate/web/public/locales/ro/components/camera.json +87 -0
  1341. package/_refs/frigate/web/public/locales/ro/components/dialog.json +136 -0
  1342. package/_refs/frigate/web/public/locales/ro/components/filter.json +140 -0
  1343. package/_refs/frigate/web/public/locales/ro/components/icons.json +8 -0
  1344. package/_refs/frigate/web/public/locales/ro/components/input.json +10 -0
  1345. package/_refs/frigate/web/public/locales/ro/components/player.json +51 -0
  1346. package/_refs/frigate/web/public/locales/ro/objects.json +120 -0
  1347. package/_refs/frigate/web/public/locales/ro/views/classificationModel.json +193 -0
  1348. package/_refs/frigate/web/public/locales/ro/views/configEditor.json +18 -0
  1349. package/_refs/frigate/web/public/locales/ro/views/events.json +67 -0
  1350. package/_refs/frigate/web/public/locales/ro/views/explore.json +305 -0
  1351. package/_refs/frigate/web/public/locales/ro/views/exports.json +23 -0
  1352. package/_refs/frigate/web/public/locales/ro/views/faceLibrary.json +103 -0
  1353. package/_refs/frigate/web/public/locales/ro/views/live.json +189 -0
  1354. package/_refs/frigate/web/public/locales/ro/views/recording.json +12 -0
  1355. package/_refs/frigate/web/public/locales/ro/views/search.json +73 -0
  1356. package/_refs/frigate/web/public/locales/ro/views/settings.json +1250 -0
  1357. package/_refs/frigate/web/public/locales/ro/views/system.json +209 -0
  1358. package/_refs/frigate/web/public/locales/ru/audio.json +503 -0
  1359. package/_refs/frigate/web/public/locales/ru/common.json +314 -0
  1360. package/_refs/frigate/web/public/locales/ru/components/auth.json +16 -0
  1361. package/_refs/frigate/web/public/locales/ru/components/camera.json +87 -0
  1362. package/_refs/frigate/web/public/locales/ru/components/dialog.json +136 -0
  1363. package/_refs/frigate/web/public/locales/ru/components/filter.json +141 -0
  1364. package/_refs/frigate/web/public/locales/ru/components/icons.json +8 -0
  1365. package/_refs/frigate/web/public/locales/ru/components/input.json +10 -0
  1366. package/_refs/frigate/web/public/locales/ru/components/player.json +51 -0
  1367. package/_refs/frigate/web/public/locales/ru/objects.json +120 -0
  1368. package/_refs/frigate/web/public/locales/ru/views/classificationModel.json +193 -0
  1369. package/_refs/frigate/web/public/locales/ru/views/configEditor.json +18 -0
  1370. package/_refs/frigate/web/public/locales/ru/views/events.json +64 -0
  1371. package/_refs/frigate/web/public/locales/ru/views/explore.json +302 -0
  1372. package/_refs/frigate/web/public/locales/ru/views/exports.json +23 -0
  1373. package/_refs/frigate/web/public/locales/ru/views/faceLibrary.json +104 -0
  1374. package/_refs/frigate/web/public/locales/ru/views/live.json +189 -0
  1375. package/_refs/frigate/web/public/locales/ru/views/recording.json +12 -0
  1376. package/_refs/frigate/web/public/locales/ru/views/search.json +75 -0
  1377. package/_refs/frigate/web/public/locales/ru/views/settings.json +1262 -0
  1378. package/_refs/frigate/web/public/locales/ru/views/system.json +201 -0
  1379. package/_refs/frigate/web/public/locales/sk/audio.json +503 -0
  1380. package/_refs/frigate/web/public/locales/sk/common.json +304 -0
  1381. package/_refs/frigate/web/public/locales/sk/components/auth.json +16 -0
  1382. package/_refs/frigate/web/public/locales/sk/components/camera.json +87 -0
  1383. package/_refs/frigate/web/public/locales/sk/components/dialog.json +124 -0
  1384. package/_refs/frigate/web/public/locales/sk/components/filter.json +136 -0
  1385. package/_refs/frigate/web/public/locales/sk/components/icons.json +8 -0
  1386. package/_refs/frigate/web/public/locales/sk/components/input.json +10 -0
  1387. package/_refs/frigate/web/public/locales/sk/components/player.json +51 -0
  1388. package/_refs/frigate/web/public/locales/sk/objects.json +120 -0
  1389. package/_refs/frigate/web/public/locales/sk/views/classificationModel.json +182 -0
  1390. package/_refs/frigate/web/public/locales/sk/views/configEditor.json +18 -0
  1391. package/_refs/frigate/web/public/locales/sk/views/events.json +62 -0
  1392. package/_refs/frigate/web/public/locales/sk/views/explore.json +295 -0
  1393. package/_refs/frigate/web/public/locales/sk/views/exports.json +23 -0
  1394. package/_refs/frigate/web/public/locales/sk/views/faceLibrary.json +102 -0
  1395. package/_refs/frigate/web/public/locales/sk/views/live.json +187 -0
  1396. package/_refs/frigate/web/public/locales/sk/views/recording.json +12 -0
  1397. package/_refs/frigate/web/public/locales/sk/views/search.json +72 -0
  1398. package/_refs/frigate/web/public/locales/sk/views/settings.json +1210 -0
  1399. package/_refs/frigate/web/public/locales/sk/views/system.json +198 -0
  1400. package/_refs/frigate/web/public/locales/sl/audio.json +144 -0
  1401. package/_refs/frigate/web/public/locales/sl/common.json +311 -0
  1402. package/_refs/frigate/web/public/locales/sl/components/auth.json +15 -0
  1403. package/_refs/frigate/web/public/locales/sl/components/camera.json +87 -0
  1404. package/_refs/frigate/web/public/locales/sl/components/dialog.json +123 -0
  1405. package/_refs/frigate/web/public/locales/sl/components/filter.json +136 -0
  1406. package/_refs/frigate/web/public/locales/sl/components/icons.json +8 -0
  1407. package/_refs/frigate/web/public/locales/sl/components/input.json +10 -0
  1408. package/_refs/frigate/web/public/locales/sl/components/player.json +51 -0
  1409. package/_refs/frigate/web/public/locales/sl/objects.json +120 -0
  1410. package/_refs/frigate/web/public/locales/sl/views/classificationModel.json +55 -0
  1411. package/_refs/frigate/web/public/locales/sl/views/configEditor.json +18 -0
  1412. package/_refs/frigate/web/public/locales/sl/views/events.json +38 -0
  1413. package/_refs/frigate/web/public/locales/sl/views/explore.json +209 -0
  1414. package/_refs/frigate/web/public/locales/sl/views/exports.json +17 -0
  1415. package/_refs/frigate/web/public/locales/sl/views/faceLibrary.json +105 -0
  1416. package/_refs/frigate/web/public/locales/sl/views/live.json +171 -0
  1417. package/_refs/frigate/web/public/locales/sl/views/recording.json +12 -0
  1418. package/_refs/frigate/web/public/locales/sl/views/search.json +72 -0
  1419. package/_refs/frigate/web/public/locales/sl/views/settings.json +337 -0
  1420. package/_refs/frigate/web/public/locales/sl/views/system.json +174 -0
  1421. package/_refs/frigate/web/public/locales/sr/audio.json +17 -0
  1422. package/_refs/frigate/web/public/locales/sr/common.json +32 -0
  1423. package/_refs/frigate/web/public/locales/sr/components/auth.json +15 -0
  1424. package/_refs/frigate/web/public/locales/sr/components/camera.json +21 -0
  1425. package/_refs/frigate/web/public/locales/sr/components/dialog.json +24 -0
  1426. package/_refs/frigate/web/public/locales/sr/components/filter.json +19 -0
  1427. package/_refs/frigate/web/public/locales/sr/components/icons.json +8 -0
  1428. package/_refs/frigate/web/public/locales/sr/components/input.json +10 -0
  1429. package/_refs/frigate/web/public/locales/sr/components/player.json +13 -0
  1430. package/_refs/frigate/web/public/locales/sr/objects.json +10 -0
  1431. package/_refs/frigate/web/public/locales/sr/views/classificationModel.json +1 -0
  1432. package/_refs/frigate/web/public/locales/sr/views/configEditor.json +13 -0
  1433. package/_refs/frigate/web/public/locales/sr/views/events.json +14 -0
  1434. package/_refs/frigate/web/public/locales/sr/views/explore.json +13 -0
  1435. package/_refs/frigate/web/public/locales/sr/views/exports.json +12 -0
  1436. package/_refs/frigate/web/public/locales/sr/views/faceLibrary.json +14 -0
  1437. package/_refs/frigate/web/public/locales/sr/views/live.json +20 -0
  1438. package/_refs/frigate/web/public/locales/sr/views/recording.json +12 -0
  1439. package/_refs/frigate/web/public/locales/sr/views/search.json +12 -0
  1440. package/_refs/frigate/web/public/locales/sr/views/settings.json +11 -0
  1441. package/_refs/frigate/web/public/locales/sr/views/system.json +14 -0
  1442. package/_refs/frigate/web/public/locales/sv/audio.json +503 -0
  1443. package/_refs/frigate/web/public/locales/sv/common.json +298 -0
  1444. package/_refs/frigate/web/public/locales/sv/components/auth.json +16 -0
  1445. package/_refs/frigate/web/public/locales/sv/components/camera.json +87 -0
  1446. package/_refs/frigate/web/public/locales/sv/components/dialog.json +123 -0
  1447. package/_refs/frigate/web/public/locales/sv/components/filter.json +141 -0
  1448. package/_refs/frigate/web/public/locales/sv/components/icons.json +8 -0
  1449. package/_refs/frigate/web/public/locales/sv/components/input.json +10 -0
  1450. package/_refs/frigate/web/public/locales/sv/components/player.json +51 -0
  1451. package/_refs/frigate/web/public/locales/sv/objects.json +120 -0
  1452. package/_refs/frigate/web/public/locales/sv/views/classificationModel.json +188 -0
  1453. package/_refs/frigate/web/public/locales/sv/views/configEditor.json +18 -0
  1454. package/_refs/frigate/web/public/locales/sv/views/events.json +67 -0
  1455. package/_refs/frigate/web/public/locales/sv/views/explore.json +303 -0
  1456. package/_refs/frigate/web/public/locales/sv/views/exports.json +23 -0
  1457. package/_refs/frigate/web/public/locales/sv/views/faceLibrary.json +101 -0
  1458. package/_refs/frigate/web/public/locales/sv/views/live.json +189 -0
  1459. package/_refs/frigate/web/public/locales/sv/views/recording.json +12 -0
  1460. package/_refs/frigate/web/public/locales/sv/views/search.json +73 -0
  1461. package/_refs/frigate/web/public/locales/sv/views/settings.json +1238 -0
  1462. package/_refs/frigate/web/public/locales/sv/views/system.json +208 -0
  1463. package/_refs/frigate/web/public/locales/ta/audio.json +1 -0
  1464. package/_refs/frigate/web/public/locales/ta/common.json +1 -0
  1465. package/_refs/frigate/web/public/locales/ta/components/auth.json +1 -0
  1466. package/_refs/frigate/web/public/locales/ta/components/camera.json +1 -0
  1467. package/_refs/frigate/web/public/locales/ta/components/dialog.json +1 -0
  1468. package/_refs/frigate/web/public/locales/ta/components/filter.json +1 -0
  1469. package/_refs/frigate/web/public/locales/ta/components/icons.json +1 -0
  1470. package/_refs/frigate/web/public/locales/ta/components/input.json +1 -0
  1471. package/_refs/frigate/web/public/locales/ta/components/player.json +1 -0
  1472. package/_refs/frigate/web/public/locales/ta/objects.json +1 -0
  1473. package/_refs/frigate/web/public/locales/ta/views/classificationModel.json +1 -0
  1474. package/_refs/frigate/web/public/locales/ta/views/configEditor.json +1 -0
  1475. package/_refs/frigate/web/public/locales/ta/views/events.json +1 -0
  1476. package/_refs/frigate/web/public/locales/ta/views/explore.json +1 -0
  1477. package/_refs/frigate/web/public/locales/ta/views/exports.json +1 -0
  1478. package/_refs/frigate/web/public/locales/ta/views/faceLibrary.json +1 -0
  1479. package/_refs/frigate/web/public/locales/ta/views/live.json +1 -0
  1480. package/_refs/frigate/web/public/locales/ta/views/recording.json +1 -0
  1481. package/_refs/frigate/web/public/locales/ta/views/search.json +1 -0
  1482. package/_refs/frigate/web/public/locales/ta/views/settings.json +1 -0
  1483. package/_refs/frigate/web/public/locales/ta/views/system.json +1 -0
  1484. package/_refs/frigate/web/public/locales/th/audio.json +429 -0
  1485. package/_refs/frigate/web/public/locales/th/common.json +251 -0
  1486. package/_refs/frigate/web/public/locales/th/components/auth.json +15 -0
  1487. package/_refs/frigate/web/public/locales/th/components/camera.json +86 -0
  1488. package/_refs/frigate/web/public/locales/th/components/dialog.json +105 -0
  1489. package/_refs/frigate/web/public/locales/th/components/filter.json +89 -0
  1490. package/_refs/frigate/web/public/locales/th/components/icons.json +8 -0
  1491. package/_refs/frigate/web/public/locales/th/components/input.json +10 -0
  1492. package/_refs/frigate/web/public/locales/th/components/player.json +51 -0
  1493. package/_refs/frigate/web/public/locales/th/objects.json +118 -0
  1494. package/_refs/frigate/web/public/locales/th/views/classificationModel.json +9 -0
  1495. package/_refs/frigate/web/public/locales/th/views/configEditor.json +16 -0
  1496. package/_refs/frigate/web/public/locales/th/views/events.json +38 -0
  1497. package/_refs/frigate/web/public/locales/th/views/explore.json +32 -0
  1498. package/_refs/frigate/web/public/locales/th/views/exports.json +17 -0
  1499. package/_refs/frigate/web/public/locales/th/views/faceLibrary.json +57 -0
  1500. package/_refs/frigate/web/public/locales/th/views/live.json +49 -0
  1501. package/_refs/frigate/web/public/locales/th/views/recording.json +12 -0
  1502. package/_refs/frigate/web/public/locales/th/views/search.json +62 -0
  1503. package/_refs/frigate/web/public/locales/th/views/settings.json +248 -0
  1504. package/_refs/frigate/web/public/locales/th/views/system.json +64 -0
  1505. package/_refs/frigate/web/public/locales/tr/audio.json +503 -0
  1506. package/_refs/frigate/web/public/locales/tr/common.json +308 -0
  1507. package/_refs/frigate/web/public/locales/tr/components/auth.json +16 -0
  1508. package/_refs/frigate/web/public/locales/tr/components/camera.json +87 -0
  1509. package/_refs/frigate/web/public/locales/tr/components/dialog.json +133 -0
  1510. package/_refs/frigate/web/public/locales/tr/components/filter.json +141 -0
  1511. package/_refs/frigate/web/public/locales/tr/components/icons.json +8 -0
  1512. package/_refs/frigate/web/public/locales/tr/components/input.json +10 -0
  1513. package/_refs/frigate/web/public/locales/tr/components/player.json +51 -0
  1514. package/_refs/frigate/web/public/locales/tr/objects.json +120 -0
  1515. package/_refs/frigate/web/public/locales/tr/views/classificationModel.json +188 -0
  1516. package/_refs/frigate/web/public/locales/tr/views/configEditor.json +18 -0
  1517. package/_refs/frigate/web/public/locales/tr/views/events.json +67 -0
  1518. package/_refs/frigate/web/public/locales/tr/views/explore.json +303 -0
  1519. package/_refs/frigate/web/public/locales/tr/views/exports.json +23 -0
  1520. package/_refs/frigate/web/public/locales/tr/views/faceLibrary.json +101 -0
  1521. package/_refs/frigate/web/public/locales/tr/views/live.json +189 -0
  1522. package/_refs/frigate/web/public/locales/tr/views/recording.json +12 -0
  1523. package/_refs/frigate/web/public/locales/tr/views/search.json +75 -0
  1524. package/_refs/frigate/web/public/locales/tr/views/settings.json +1217 -0
  1525. package/_refs/frigate/web/public/locales/tr/views/system.json +208 -0
  1526. package/_refs/frigate/web/public/locales/uk/audio.json +503 -0
  1527. package/_refs/frigate/web/public/locales/uk/common.json +306 -0
  1528. package/_refs/frigate/web/public/locales/uk/components/auth.json +16 -0
  1529. package/_refs/frigate/web/public/locales/uk/components/camera.json +87 -0
  1530. package/_refs/frigate/web/public/locales/uk/components/dialog.json +124 -0
  1531. package/_refs/frigate/web/public/locales/uk/components/filter.json +140 -0
  1532. package/_refs/frigate/web/public/locales/uk/components/icons.json +8 -0
  1533. package/_refs/frigate/web/public/locales/uk/components/input.json +10 -0
  1534. package/_refs/frigate/web/public/locales/uk/components/player.json +51 -0
  1535. package/_refs/frigate/web/public/locales/uk/objects.json +120 -0
  1536. package/_refs/frigate/web/public/locales/uk/views/classificationModel.json +193 -0
  1537. package/_refs/frigate/web/public/locales/uk/views/configEditor.json +18 -0
  1538. package/_refs/frigate/web/public/locales/uk/views/events.json +67 -0
  1539. package/_refs/frigate/web/public/locales/uk/views/explore.json +305 -0
  1540. package/_refs/frigate/web/public/locales/uk/views/exports.json +23 -0
  1541. package/_refs/frigate/web/public/locales/uk/views/faceLibrary.json +103 -0
  1542. package/_refs/frigate/web/public/locales/uk/views/live.json +189 -0
  1543. package/_refs/frigate/web/public/locales/uk/views/recording.json +12 -0
  1544. package/_refs/frigate/web/public/locales/uk/views/search.json +73 -0
  1545. package/_refs/frigate/web/public/locales/uk/views/settings.json +1313 -0
  1546. package/_refs/frigate/web/public/locales/uk/views/system.json +209 -0
  1547. package/_refs/frigate/web/public/locales/ur/audio.json +38 -0
  1548. package/_refs/frigate/web/public/locales/ur/common.json +39 -0
  1549. package/_refs/frigate/web/public/locales/ur/components/auth.json +14 -0
  1550. package/_refs/frigate/web/public/locales/ur/components/camera.json +17 -0
  1551. package/_refs/frigate/web/public/locales/ur/components/dialog.json +24 -0
  1552. package/_refs/frigate/web/public/locales/ur/components/filter.json +18 -0
  1553. package/_refs/frigate/web/public/locales/ur/components/icons.json +8 -0
  1554. package/_refs/frigate/web/public/locales/ur/components/input.json +10 -0
  1555. package/_refs/frigate/web/public/locales/ur/components/player.json +13 -0
  1556. package/_refs/frigate/web/public/locales/ur/objects.json +9 -0
  1557. package/_refs/frigate/web/public/locales/ur/views/classificationModel.json +1 -0
  1558. package/_refs/frigate/web/public/locales/ur/views/configEditor.json +16 -0
  1559. package/_refs/frigate/web/public/locales/ur/views/events.json +14 -0
  1560. package/_refs/frigate/web/public/locales/ur/views/explore.json +13 -0
  1561. package/_refs/frigate/web/public/locales/ur/views/exports.json +11 -0
  1562. package/_refs/frigate/web/public/locales/ur/views/faceLibrary.json +13 -0
  1563. package/_refs/frigate/web/public/locales/ur/views/live.json +13 -0
  1564. package/_refs/frigate/web/public/locales/ur/views/recording.json +12 -0
  1565. package/_refs/frigate/web/public/locales/ur/views/search.json +11 -0
  1566. package/_refs/frigate/web/public/locales/ur/views/settings.json +11 -0
  1567. package/_refs/frigate/web/public/locales/ur/views/system.json +13 -0
  1568. package/_refs/frigate/web/public/locales/vi/audio.json +429 -0
  1569. package/_refs/frigate/web/public/locales/vi/common.json +300 -0
  1570. package/_refs/frigate/web/public/locales/vi/components/auth.json +16 -0
  1571. package/_refs/frigate/web/public/locales/vi/components/camera.json +87 -0
  1572. package/_refs/frigate/web/public/locales/vi/components/dialog.json +122 -0
  1573. package/_refs/frigate/web/public/locales/vi/components/filter.json +136 -0
  1574. package/_refs/frigate/web/public/locales/vi/components/icons.json +8 -0
  1575. package/_refs/frigate/web/public/locales/vi/components/input.json +10 -0
  1576. package/_refs/frigate/web/public/locales/vi/components/player.json +51 -0
  1577. package/_refs/frigate/web/public/locales/vi/objects.json +120 -0
  1578. package/_refs/frigate/web/public/locales/vi/views/classificationModel.json +59 -0
  1579. package/_refs/frigate/web/public/locales/vi/views/configEditor.json +18 -0
  1580. package/_refs/frigate/web/public/locales/vi/views/events.json +62 -0
  1581. package/_refs/frigate/web/public/locales/vi/views/explore.json +291 -0
  1582. package/_refs/frigate/web/public/locales/vi/views/exports.json +23 -0
  1583. package/_refs/frigate/web/public/locales/vi/views/faceLibrary.json +96 -0
  1584. package/_refs/frigate/web/public/locales/vi/views/live.json +189 -0
  1585. package/_refs/frigate/web/public/locales/vi/views/recording.json +12 -0
  1586. package/_refs/frigate/web/public/locales/vi/views/search.json +72 -0
  1587. package/_refs/frigate/web/public/locales/vi/views/settings.json +776 -0
  1588. package/_refs/frigate/web/public/locales/vi/views/system.json +198 -0
  1589. package/_refs/frigate/web/public/locales/yue-Hant/audio.json +429 -0
  1590. package/_refs/frigate/web/public/locales/yue-Hant/common.json +272 -0
  1591. package/_refs/frigate/web/public/locales/yue-Hant/components/auth.json +15 -0
  1592. package/_refs/frigate/web/public/locales/yue-Hant/components/camera.json +87 -0
  1593. package/_refs/frigate/web/public/locales/yue-Hant/components/dialog.json +120 -0
  1594. package/_refs/frigate/web/public/locales/yue-Hant/components/filter.json +136 -0
  1595. package/_refs/frigate/web/public/locales/yue-Hant/components/icons.json +8 -0
  1596. package/_refs/frigate/web/public/locales/yue-Hant/components/input.json +10 -0
  1597. package/_refs/frigate/web/public/locales/yue-Hant/components/player.json +51 -0
  1598. package/_refs/frigate/web/public/locales/yue-Hant/objects.json +120 -0
  1599. package/_refs/frigate/web/public/locales/yue-Hant/views/classificationModel.json +1 -0
  1600. package/_refs/frigate/web/public/locales/yue-Hant/views/configEditor.json +18 -0
  1601. package/_refs/frigate/web/public/locales/yue-Hant/views/events.json +40 -0
  1602. package/_refs/frigate/web/public/locales/yue-Hant/views/explore.json +224 -0
  1603. package/_refs/frigate/web/public/locales/yue-Hant/views/exports.json +17 -0
  1604. package/_refs/frigate/web/public/locales/yue-Hant/views/faceLibrary.json +97 -0
  1605. package/_refs/frigate/web/public/locales/yue-Hant/views/live.json +185 -0
  1606. package/_refs/frigate/web/public/locales/yue-Hant/views/recording.json +12 -0
  1607. package/_refs/frigate/web/public/locales/yue-Hant/views/search.json +72 -0
  1608. package/_refs/frigate/web/public/locales/yue-Hant/views/settings.json +1118 -0
  1609. package/_refs/frigate/web/public/locales/yue-Hant/views/system.json +186 -0
  1610. package/_refs/frigate/web/public/locales/zh-CN/audio.json +503 -0
  1611. package/_refs/frigate/web/public/locales/zh-CN/common.json +301 -0
  1612. package/_refs/frigate/web/public/locales/zh-CN/components/auth.json +16 -0
  1613. package/_refs/frigate/web/public/locales/zh-CN/components/camera.json +87 -0
  1614. package/_refs/frigate/web/public/locales/zh-CN/components/dialog.json +130 -0
  1615. package/_refs/frigate/web/public/locales/zh-CN/components/filter.json +141 -0
  1616. package/_refs/frigate/web/public/locales/zh-CN/components/icons.json +8 -0
  1617. package/_refs/frigate/web/public/locales/zh-CN/components/input.json +10 -0
  1618. package/_refs/frigate/web/public/locales/zh-CN/components/player.json +51 -0
  1619. package/_refs/frigate/web/public/locales/zh-CN/objects.json +120 -0
  1620. package/_refs/frigate/web/public/locales/zh-CN/views/classificationModel.json +183 -0
  1621. package/_refs/frigate/web/public/locales/zh-CN/views/configEditor.json +18 -0
  1622. package/_refs/frigate/web/public/locales/zh-CN/views/events.json +68 -0
  1623. package/_refs/frigate/web/public/locales/zh-CN/views/explore.json +301 -0
  1624. package/_refs/frigate/web/public/locales/zh-CN/views/exports.json +23 -0
  1625. package/_refs/frigate/web/public/locales/zh-CN/views/faceLibrary.json +98 -0
  1626. package/_refs/frigate/web/public/locales/zh-CN/views/live.json +189 -0
  1627. package/_refs/frigate/web/public/locales/zh-CN/views/recording.json +12 -0
  1628. package/_refs/frigate/web/public/locales/zh-CN/views/search.json +75 -0
  1629. package/_refs/frigate/web/public/locales/zh-CN/views/settings.json +1306 -0
  1630. package/_refs/frigate/web/public/locales/zh-CN/views/system.json +208 -0
  1631. package/_refs/frigate/web/public/locales/zh-Hant/audio.json +81 -0
  1632. package/_refs/frigate/web/public/locales/zh-Hant/common.json +290 -0
  1633. package/_refs/frigate/web/public/locales/zh-Hant/components/auth.json +16 -0
  1634. package/_refs/frigate/web/public/locales/zh-Hant/components/camera.json +87 -0
  1635. package/_refs/frigate/web/public/locales/zh-Hant/components/dialog.json +122 -0
  1636. package/_refs/frigate/web/public/locales/zh-Hant/components/filter.json +140 -0
  1637. package/_refs/frigate/web/public/locales/zh-Hant/components/icons.json +8 -0
  1638. package/_refs/frigate/web/public/locales/zh-Hant/components/input.json +10 -0
  1639. package/_refs/frigate/web/public/locales/zh-Hant/components/player.json +51 -0
  1640. package/_refs/frigate/web/public/locales/zh-Hant/objects.json +120 -0
  1641. package/_refs/frigate/web/public/locales/zh-Hant/views/classificationModel.json +104 -0
  1642. package/_refs/frigate/web/public/locales/zh-Hant/views/configEditor.json +18 -0
  1643. package/_refs/frigate/web/public/locales/zh-Hant/views/events.json +66 -0
  1644. package/_refs/frigate/web/public/locales/zh-Hant/views/explore.json +298 -0
  1645. package/_refs/frigate/web/public/locales/zh-Hant/views/exports.json +23 -0
  1646. package/_refs/frigate/web/public/locales/zh-Hant/views/faceLibrary.json +97 -0
  1647. package/_refs/frigate/web/public/locales/zh-Hant/views/live.json +176 -0
  1648. package/_refs/frigate/web/public/locales/zh-Hant/views/recording.json +12 -0
  1649. package/_refs/frigate/web/public/locales/zh-Hant/views/search.json +73 -0
  1650. package/_refs/frigate/web/public/locales/zh-Hant/views/settings.json +146 -0
  1651. package/_refs/frigate/web/public/locales/zh-Hant/views/system.json +208 -0
  1652. package/_refs/frigate/web/public/notifications-worker.js +71 -0
  1653. package/_refs/frigate/web/public/robots.txt +2 -0
  1654. package/_refs/frigate/web/site.webmanifest +34 -0
  1655. package/_refs/frigate/web/src/App.tsx +135 -0
  1656. package/_refs/frigate/web/src/api/auth-redirect.ts +12 -0
  1657. package/_refs/frigate/web/src/api/baseUrl.ts +7 -0
  1658. package/_refs/frigate/web/src/api/index.tsx +60 -0
  1659. package/_refs/frigate/web/src/api/ws.tsx +653 -0
  1660. package/_refs/frigate/web/src/components/Logo.tsx +12 -0
  1661. package/_refs/frigate/web/src/components/Statusbar.tsx +178 -0
  1662. package/_refs/frigate/web/src/components/Wrapper.tsx +11 -0
  1663. package/_refs/frigate/web/src/components/audio/AudioLevelGraph.tsx +165 -0
  1664. package/_refs/frigate/web/src/components/auth/AuthForm.tsx +170 -0
  1665. package/_refs/frigate/web/src/components/auth/ProtectedRoute.tsx +68 -0
  1666. package/_refs/frigate/web/src/components/button/BlurredIconButton.tsx +28 -0
  1667. package/_refs/frigate/web/src/components/button/DownloadVideoButton.tsx +62 -0
  1668. package/_refs/frigate/web/src/components/camera/AutoUpdatingCameraImage.tsx +103 -0
  1669. package/_refs/frigate/web/src/components/camera/CameraImage.tsx +110 -0
  1670. package/_refs/frigate/web/src/components/camera/DebugCameraImage.tsx +173 -0
  1671. package/_refs/frigate/web/src/components/camera/FriendlyNameLabel.tsx +44 -0
  1672. package/_refs/frigate/web/src/components/camera/ResizingCameraImage.tsx +123 -0
  1673. package/_refs/frigate/web/src/components/card/AnimatedEventCard.tsx +247 -0
  1674. package/_refs/frigate/web/src/components/card/ClassificationCard.tsx +438 -0
  1675. package/_refs/frigate/web/src/components/card/EmptyCard.tsx +49 -0
  1676. package/_refs/frigate/web/src/components/card/ExportCard.tsx +261 -0
  1677. package/_refs/frigate/web/src/components/card/ReviewCard.tsx +382 -0
  1678. package/_refs/frigate/web/src/components/card/SearchThumbnail.tsx +172 -0
  1679. package/_refs/frigate/web/src/components/card/SearchThumbnailFooter.tsx +68 -0
  1680. package/_refs/frigate/web/src/components/classification/ClassificationModelEditDialog.tsx +529 -0
  1681. package/_refs/frigate/web/src/components/classification/ClassificationModelWizardDialog.tsx +223 -0
  1682. package/_refs/frigate/web/src/components/classification/wizard/Step1NameAndDefine.tsx +508 -0
  1683. package/_refs/frigate/web/src/components/classification/wizard/Step2StateArea.tsx +479 -0
  1684. package/_refs/frigate/web/src/components/classification/wizard/Step3ChooseExamples.tsx +628 -0
  1685. package/_refs/frigate/web/src/components/dynamic/CameraFeatureToggle.tsx +88 -0
  1686. package/_refs/frigate/web/src/components/dynamic/EnhancedScrollFollow.tsx +91 -0
  1687. package/_refs/frigate/web/src/components/dynamic/NewReviewData.tsx +58 -0
  1688. package/_refs/frigate/web/src/components/dynamic/TimeAgo.tsx +124 -0
  1689. package/_refs/frigate/web/src/components/filter/CalendarFilterButton.tsx +168 -0
  1690. package/_refs/frigate/web/src/components/filter/CameraGroupSelector.tsx +1004 -0
  1691. package/_refs/frigate/web/src/components/filter/CamerasFilterButton.tsx +283 -0
  1692. package/_refs/frigate/web/src/components/filter/FilterSwitch.tsx +53 -0
  1693. package/_refs/frigate/web/src/components/filter/LogSettingsButton.tsx +169 -0
  1694. package/_refs/frigate/web/src/components/filter/ReviewActionGroup.tsx +211 -0
  1695. package/_refs/frigate/web/src/components/filter/ReviewFilterGroup.tsx +672 -0
  1696. package/_refs/frigate/web/src/components/filter/SearchActionGroup.tsx +165 -0
  1697. package/_refs/frigate/web/src/components/filter/SearchFilterGroup.tsx +644 -0
  1698. package/_refs/frigate/web/src/components/filter/ZoneMaskFilter.tsx +148 -0
  1699. package/_refs/frigate/web/src/components/graph/CombinedStorageGraph.tsx +265 -0
  1700. package/_refs/frigate/web/src/components/graph/LineGraph.tsx +292 -0
  1701. package/_refs/frigate/web/src/components/graph/StorageGraph.tsx +113 -0
  1702. package/_refs/frigate/web/src/components/graph/SystemGraph.tsx +198 -0
  1703. package/_refs/frigate/web/src/components/icons/AddFaceIcon.tsx +25 -0
  1704. package/_refs/frigate/web/src/components/icons/FrigatePlusIcon.tsx +26 -0
  1705. package/_refs/frigate/web/src/components/icons/IconPicker.tsx +163 -0
  1706. package/_refs/frigate/web/src/components/icons/LiveIcons.tsx +42 -0
  1707. package/_refs/frigate/web/src/components/icons/SearchSourceIcon.tsx +26 -0
  1708. package/_refs/frigate/web/src/components/icons/SubFilterIcon.tsx +26 -0
  1709. package/_refs/frigate/web/src/components/indicators/CameraActivityIndicator.tsx +33 -0
  1710. package/_refs/frigate/web/src/components/indicators/Chip.tsx +88 -0
  1711. package/_refs/frigate/web/src/components/indicators/ImageLoadingIndicator.tsx +21 -0
  1712. package/_refs/frigate/web/src/components/indicators/StepIndicator.tsx +59 -0
  1713. package/_refs/frigate/web/src/components/indicators/activity-indicator.tsx +13 -0
  1714. package/_refs/frigate/web/src/components/input/DeleteSearchDialog.tsx +47 -0
  1715. package/_refs/frigate/web/src/components/input/ImageEntry.tsx +189 -0
  1716. package/_refs/frigate/web/src/components/input/InputWithTags.tsx +1020 -0
  1717. package/_refs/frigate/web/src/components/input/NameAndIdFields.tsx +139 -0
  1718. package/_refs/frigate/web/src/components/input/SaveSearchDialog.tsx +100 -0
  1719. package/_refs/frigate/web/src/components/input/TextEntry.tsx +86 -0
  1720. package/_refs/frigate/web/src/components/menu/AccountSettings.tsx +171 -0
  1721. package/_refs/frigate/web/src/components/menu/GeneralSettings.tsx +571 -0
  1722. package/_refs/frigate/web/src/components/menu/LiveContextMenu.tsx +569 -0
  1723. package/_refs/frigate/web/src/components/menu/SearchResultActions.tsx +210 -0
  1724. package/_refs/frigate/web/src/components/mobile/MobilePage.tsx +233 -0
  1725. package/_refs/frigate/web/src/components/navigation/Bottombar.tsx +149 -0
  1726. package/_refs/frigate/web/src/components/navigation/NavItem.tsx +73 -0
  1727. package/_refs/frigate/web/src/components/navigation/Redirect.tsx +14 -0
  1728. package/_refs/frigate/web/src/components/navigation/Sidebar.tsx +50 -0
  1729. package/_refs/frigate/web/src/components/overlay/CameraInfoDialog.tsx +207 -0
  1730. package/_refs/frigate/web/src/components/overlay/ClassificationSelectionDialog.tsx +153 -0
  1731. package/_refs/frigate/web/src/components/overlay/CreateRoleDialog.tsx +249 -0
  1732. package/_refs/frigate/web/src/components/overlay/CreateTriggerDialog.tsx +472 -0
  1733. package/_refs/frigate/web/src/components/overlay/CreateUserDialog.tsx +319 -0
  1734. package/_refs/frigate/web/src/components/overlay/DebugDrawingLayer.tsx +177 -0
  1735. package/_refs/frigate/web/src/components/overlay/DeleteRoleDialog.tsx +109 -0
  1736. package/_refs/frigate/web/src/components/overlay/DeleteTriggerDialog.tsx +80 -0
  1737. package/_refs/frigate/web/src/components/overlay/DeleteUserDialog.tsx +74 -0
  1738. package/_refs/frigate/web/src/components/overlay/EditRoleCamerasDialog.tsx +195 -0
  1739. package/_refs/frigate/web/src/components/overlay/ExportDialog.tsx +626 -0
  1740. package/_refs/frigate/web/src/components/overlay/FaceSelectionDialog.tsx +119 -0
  1741. package/_refs/frigate/web/src/components/overlay/GPUInfoDialog.tsx +152 -0
  1742. package/_refs/frigate/web/src/components/overlay/ImagePicker.tsx +241 -0
  1743. package/_refs/frigate/web/src/components/overlay/ImageShadowOverlay.tsx +27 -0
  1744. package/_refs/frigate/web/src/components/overlay/LogInfoDialog.tsx +168 -0
  1745. package/_refs/frigate/web/src/components/overlay/MobileCameraDrawer.tsx +55 -0
  1746. package/_refs/frigate/web/src/components/overlay/MobileReviewSettingsDrawer.tsx +355 -0
  1747. package/_refs/frigate/web/src/components/overlay/MobileTimelineDrawer.tsx +66 -0
  1748. package/_refs/frigate/web/src/components/overlay/ObjectTrackOverlay.tsx +529 -0
  1749. package/_refs/frigate/web/src/components/overlay/PtzControlPanel.tsx +326 -0
  1750. package/_refs/frigate/web/src/components/overlay/ReviewActivityCalendar.tsx +237 -0
  1751. package/_refs/frigate/web/src/components/overlay/RoleChangeDialog.tsx +148 -0
  1752. package/_refs/frigate/web/src/components/overlay/SaveExportOverlay.tsx +62 -0
  1753. package/_refs/frigate/web/src/components/overlay/SetPasswordDialog.tsx +572 -0
  1754. package/_refs/frigate/web/src/components/overlay/chip/GenAISummaryChip.tsx +139 -0
  1755. package/_refs/frigate/web/src/components/overlay/detail/AnnotationOffsetSlider.tsx +140 -0
  1756. package/_refs/frigate/web/src/components/overlay/detail/AnnotationSettingsPane.tsx +230 -0
  1757. package/_refs/frigate/web/src/components/overlay/detail/DetailActionsMenu.tsx +180 -0
  1758. package/_refs/frigate/web/src/components/overlay/detail/FaceCreateWizardDialog.tsx +190 -0
  1759. package/_refs/frigate/web/src/components/overlay/detail/ObjectPath.tsx +133 -0
  1760. package/_refs/frigate/web/src/components/overlay/detail/ObjectPathPlotter.tsx +283 -0
  1761. package/_refs/frigate/web/src/components/overlay/detail/SearchDetailDialog.tsx +1868 -0
  1762. package/_refs/frigate/web/src/components/overlay/detail/TrackingDetails.tsx +1078 -0
  1763. package/_refs/frigate/web/src/components/overlay/dialog/AttributeSelectDialog.tsx +123 -0
  1764. package/_refs/frigate/web/src/components/overlay/dialog/FrigatePlusDialog.tsx +207 -0
  1765. package/_refs/frigate/web/src/components/overlay/dialog/MultiSelectDialog.tsx +96 -0
  1766. package/_refs/frigate/web/src/components/overlay/dialog/PlatformAwareDialog.tsx +136 -0
  1767. package/_refs/frigate/web/src/components/overlay/dialog/RestartDialog.tsx +133 -0
  1768. package/_refs/frigate/web/src/components/overlay/dialog/SearchFilterDialog.tsx +1177 -0
  1769. package/_refs/frigate/web/src/components/overlay/dialog/TextEntryDialog.tsx +66 -0
  1770. package/_refs/frigate/web/src/components/overlay/dialog/TrainFilterDialog.tsx +255 -0
  1771. package/_refs/frigate/web/src/components/overlay/dialog/UploadImageDialog.tsx +49 -0
  1772. package/_refs/frigate/web/src/components/player/BirdseyeLivePlayer.tsx +89 -0
  1773. package/_refs/frigate/web/src/components/player/GenericVideoPlayer.tsx +143 -0
  1774. package/_refs/frigate/web/src/components/player/HlsVideoPlayer.tsx +507 -0
  1775. package/_refs/frigate/web/src/components/player/JSMpegPlayer.tsx +245 -0
  1776. package/_refs/frigate/web/src/components/player/LivePlayer.tsx +470 -0
  1777. package/_refs/frigate/web/src/components/player/MsePlayer.tsx +852 -0
  1778. package/_refs/frigate/web/src/components/player/PlayerStats.tsx +114 -0
  1779. package/_refs/frigate/web/src/components/player/PreviewPlayer.tsx +648 -0
  1780. package/_refs/frigate/web/src/components/player/PreviewThumbnailPlayer.tsx +427 -0
  1781. package/_refs/frigate/web/src/components/player/VideoControls.tsx +377 -0
  1782. package/_refs/frigate/web/src/components/player/WebRTCPlayer.tsx +367 -0
  1783. package/_refs/frigate/web/src/components/player/dynamic/DynamicVideoController.ts +170 -0
  1784. package/_refs/frigate/web/src/components/player/dynamic/DynamicVideoPlayer.tsx +341 -0
  1785. package/_refs/frigate/web/src/components/preview/ScrubbablePreview.tsx +485 -0
  1786. package/_refs/frigate/web/src/components/settings/CameraEditForm.tsx +755 -0
  1787. package/_refs/frigate/web/src/components/settings/CameraStreamingDialog.tsx +405 -0
  1788. package/_refs/frigate/web/src/components/settings/CameraWizardDialog.tsx +431 -0
  1789. package/_refs/frigate/web/src/components/settings/MotionMaskEditPane.tsx +367 -0
  1790. package/_refs/frigate/web/src/components/settings/ObjectMaskEditPane.tsx +462 -0
  1791. package/_refs/frigate/web/src/components/settings/PolygonCanvas.tsx +374 -0
  1792. package/_refs/frigate/web/src/components/settings/PolygonDrawer.tsx +297 -0
  1793. package/_refs/frigate/web/src/components/settings/PolygonEditControls.tsx +133 -0
  1794. package/_refs/frigate/web/src/components/settings/PolygonItem.tsx +393 -0
  1795. package/_refs/frigate/web/src/components/settings/SearchSettings.tsx +213 -0
  1796. package/_refs/frigate/web/src/components/settings/ZoneEditPane.tsx +1037 -0
  1797. package/_refs/frigate/web/src/components/settings/wizard/OnvifProbeResults.tsx +363 -0
  1798. package/_refs/frigate/web/src/components/settings/wizard/Step1NameCamera.tsx +474 -0
  1799. package/_refs/frigate/web/src/components/settings/wizard/Step2ProbeOrSnapshot.tsx +725 -0
  1800. package/_refs/frigate/web/src/components/settings/wizard/Step3StreamConfig.tsx +757 -0
  1801. package/_refs/frigate/web/src/components/settings/wizard/Step4Validation.tsx +860 -0
  1802. package/_refs/frigate/web/src/components/timeline/DetailStream.tsx +1061 -0
  1803. package/_refs/frigate/web/src/components/timeline/EventMenu.tsx +125 -0
  1804. package/_refs/frigate/web/src/components/timeline/EventReviewTimeline.tsx +191 -0
  1805. package/_refs/frigate/web/src/components/timeline/EventSegment.tsx +264 -0
  1806. package/_refs/frigate/web/src/components/timeline/MotionReviewTimeline.tsx +243 -0
  1807. package/_refs/frigate/web/src/components/timeline/MotionSegment.tsx +288 -0
  1808. package/_refs/frigate/web/src/components/timeline/ReviewTimeline.tsx +571 -0
  1809. package/_refs/frigate/web/src/components/timeline/SummarySegment.tsx +41 -0
  1810. package/_refs/frigate/web/src/components/timeline/SummaryTimeline.tsx +380 -0
  1811. package/_refs/frigate/web/src/components/timeline/VirtualizedEventSegments.tsx +213 -0
  1812. package/_refs/frigate/web/src/components/timeline/VirtualizedMotionSegments.tsx +277 -0
  1813. package/_refs/frigate/web/src/components/timeline/segment-metadata.tsx +135 -0
  1814. package/_refs/frigate/web/src/components/trigger/TriggerWizardDialog.tsx +256 -0
  1815. package/_refs/frigate/web/src/components/trigger/wizard/Step1NameAndType.tsx +200 -0
  1816. package/_refs/frigate/web/src/components/trigger/wizard/Step2ConfigureData.tsx +133 -0
  1817. package/_refs/frigate/web/src/components/trigger/wizard/Step3ThresholdAndActions.tsx +209 -0
  1818. package/_refs/frigate/web/src/components/ui/alert-dialog.tsx +141 -0
  1819. package/_refs/frigate/web/src/components/ui/alert.tsx +59 -0
  1820. package/_refs/frigate/web/src/components/ui/aspect-ratio.tsx +5 -0
  1821. package/_refs/frigate/web/src/components/ui/badge.tsx +36 -0
  1822. package/_refs/frigate/web/src/components/ui/button.tsx +58 -0
  1823. package/_refs/frigate/web/src/components/ui/calendar-range.tsx +483 -0
  1824. package/_refs/frigate/web/src/components/ui/calendar.tsx +80 -0
  1825. package/_refs/frigate/web/src/components/ui/card.tsx +83 -0
  1826. package/_refs/frigate/web/src/components/ui/carousel.tsx +265 -0
  1827. package/_refs/frigate/web/src/components/ui/checkbox.tsx +28 -0
  1828. package/_refs/frigate/web/src/components/ui/circular-progress-bar.tsx +108 -0
  1829. package/_refs/frigate/web/src/components/ui/collapsible.tsx +9 -0
  1830. package/_refs/frigate/web/src/components/ui/command.tsx +153 -0
  1831. package/_refs/frigate/web/src/components/ui/context-menu.tsx +198 -0
  1832. package/_refs/frigate/web/src/components/ui/dialog.tsx +159 -0
  1833. package/_refs/frigate/web/src/components/ui/drawer.tsx +117 -0
  1834. package/_refs/frigate/web/src/components/ui/dropdown-menu.tsx +200 -0
  1835. package/_refs/frigate/web/src/components/ui/form.tsx +177 -0
  1836. package/_refs/frigate/web/src/components/ui/heading.tsx +53 -0
  1837. package/_refs/frigate/web/src/components/ui/hover-card.tsx +27 -0
  1838. package/_refs/frigate/web/src/components/ui/icon-wrapper.tsx +21 -0
  1839. package/_refs/frigate/web/src/components/ui/input.tsx +25 -0
  1840. package/_refs/frigate/web/src/components/ui/label.tsx +24 -0
  1841. package/_refs/frigate/web/src/components/ui/pagination.tsx +118 -0
  1842. package/_refs/frigate/web/src/components/ui/popover.tsx +54 -0
  1843. package/_refs/frigate/web/src/components/ui/radio-group.tsx +42 -0
  1844. package/_refs/frigate/web/src/components/ui/scroll-area.tsx +46 -0
  1845. package/_refs/frigate/web/src/components/ui/select.tsx +158 -0
  1846. package/_refs/frigate/web/src/components/ui/separator.tsx +29 -0
  1847. package/_refs/frigate/web/src/components/ui/sheet.tsx +183 -0
  1848. package/_refs/frigate/web/src/components/ui/sidebar.tsx +778 -0
  1849. package/_refs/frigate/web/src/components/ui/skeleton.tsx +15 -0
  1850. package/_refs/frigate/web/src/components/ui/slider.tsx +87 -0
  1851. package/_refs/frigate/web/src/components/ui/sonner.tsx +34 -0
  1852. package/_refs/frigate/web/src/components/ui/switch.tsx +28 -0
  1853. package/_refs/frigate/web/src/components/ui/table.tsx +117 -0
  1854. package/_refs/frigate/web/src/components/ui/tabs.tsx +53 -0
  1855. package/_refs/frigate/web/src/components/ui/text.tsx +76 -0
  1856. package/_refs/frigate/web/src/components/ui/textarea.tsx +24 -0
  1857. package/_refs/frigate/web/src/components/ui/toggle-group.tsx +59 -0
  1858. package/_refs/frigate/web/src/components/ui/toggle.tsx +43 -0
  1859. package/_refs/frigate/web/src/components/ui/tooltip.tsx +28 -0
  1860. package/_refs/frigate/web/src/context/auth-context.tsx +110 -0
  1861. package/_refs/frigate/web/src/context/detail-stream-context.tsx +144 -0
  1862. package/_refs/frigate/web/src/context/language-provider.tsx +94 -0
  1863. package/_refs/frigate/web/src/context/providers.tsx +40 -0
  1864. package/_refs/frigate/web/src/context/statusbar-provider.tsx +116 -0
  1865. package/_refs/frigate/web/src/context/streaming-settings-provider.tsx +68 -0
  1866. package/_refs/frigate/web/src/context/theme-provider.tsx +141 -0
  1867. package/_refs/frigate/web/src/env.ts +1 -0
  1868. package/_refs/frigate/web/src/hooks/resize-observer.ts +69 -0
  1869. package/_refs/frigate/web/src/hooks/use-allowed-cameras.ts +22 -0
  1870. package/_refs/frigate/web/src/hooks/use-api-filter.ts +108 -0
  1871. package/_refs/frigate/web/src/hooks/use-camera-activity.ts +302 -0
  1872. package/_refs/frigate/web/src/hooks/use-camera-friendly-name.ts +29 -0
  1873. package/_refs/frigate/web/src/hooks/use-camera-live-mode.ts +136 -0
  1874. package/_refs/frigate/web/src/hooks/use-camera-previews.ts +63 -0
  1875. package/_refs/frigate/web/src/hooks/use-contextmenu.ts +47 -0
  1876. package/_refs/frigate/web/src/hooks/use-date-locale.ts +70 -0
  1877. package/_refs/frigate/web/src/hooks/use-date-utils.ts +106 -0
  1878. package/_refs/frigate/web/src/hooks/use-deep-memo.ts +12 -0
  1879. package/_refs/frigate/web/src/hooks/use-deferred-stream-metadata.ts +90 -0
  1880. package/_refs/frigate/web/src/hooks/use-doc-domain.ts +37 -0
  1881. package/_refs/frigate/web/src/hooks/use-draggable-element.ts +514 -0
  1882. package/_refs/frigate/web/src/hooks/use-event-segment-utils.ts +219 -0
  1883. package/_refs/frigate/web/src/hooks/use-fullscreen.ts +177 -0
  1884. package/_refs/frigate/web/src/hooks/use-global-mutate.ts +16 -0
  1885. package/_refs/frigate/web/src/hooks/use-history-back.ts +74 -0
  1886. package/_refs/frigate/web/src/hooks/use-image-loaded.ts +24 -0
  1887. package/_refs/frigate/web/src/hooks/use-is-admin.ts +10 -0
  1888. package/_refs/frigate/web/src/hooks/use-is-custom-role.ts +11 -0
  1889. package/_refs/frigate/web/src/hooks/use-keyboard-listener.tsx +111 -0
  1890. package/_refs/frigate/web/src/hooks/use-motion-segment-utils.ts +101 -0
  1891. package/_refs/frigate/web/src/hooks/use-mouse-listener.ts +38 -0
  1892. package/_refs/frigate/web/src/hooks/use-navigation.ts +88 -0
  1893. package/_refs/frigate/web/src/hooks/use-optimistic-state.ts +53 -0
  1894. package/_refs/frigate/web/src/hooks/use-overlay-state.tsx +205 -0
  1895. package/_refs/frigate/web/src/hooks/use-persistence.ts +50 -0
  1896. package/_refs/frigate/web/src/hooks/use-press.ts +54 -0
  1897. package/_refs/frigate/web/src/hooks/use-session-persistence.ts +39 -0
  1898. package/_refs/frigate/web/src/hooks/use-stats.ts +143 -0
  1899. package/_refs/frigate/web/src/hooks/use-suggestions.ts +61 -0
  1900. package/_refs/frigate/web/src/hooks/use-tap-utils.ts +36 -0
  1901. package/_refs/frigate/web/src/hooks/use-timeline-utils.ts +61 -0
  1902. package/_refs/frigate/web/src/hooks/use-timeline-zoom.ts +188 -0
  1903. package/_refs/frigate/web/src/hooks/use-user-interaction.ts +57 -0
  1904. package/_refs/frigate/web/src/hooks/use-user-persistence.ts +199 -0
  1905. package/_refs/frigate/web/src/hooks/use-video-dimensions.ts +45 -0
  1906. package/_refs/frigate/web/src/hooks/use-zone-friendly-name.ts +41 -0
  1907. package/_refs/frigate/web/src/index.css +191 -0
  1908. package/_refs/frigate/web/src/lib/const.ts +28 -0
  1909. package/_refs/frigate/web/src/lib/formatTimeAgo.ts +25 -0
  1910. package/_refs/frigate/web/src/lib/utils.ts +6 -0
  1911. package/_refs/frigate/web/src/login.tsx +11 -0
  1912. package/_refs/frigate/web/src/main.tsx +12 -0
  1913. package/_refs/frigate/web/src/pages/AccessDenied.tsx +21 -0
  1914. package/_refs/frigate/web/src/pages/ClassificationModel.tsx +18 -0
  1915. package/_refs/frigate/web/src/pages/ConfigEditor.tsx +331 -0
  1916. package/_refs/frigate/web/src/pages/Events.tsx +535 -0
  1917. package/_refs/frigate/web/src/pages/Explore.tsx +528 -0
  1918. package/_refs/frigate/web/src/pages/Exports.tsx +233 -0
  1919. package/_refs/frigate/web/src/pages/FaceLibrary.tsx +1050 -0
  1920. package/_refs/frigate/web/src/pages/Live.tsx +184 -0
  1921. package/_refs/frigate/web/src/pages/LoginPage.tsx +26 -0
  1922. package/_refs/frigate/web/src/pages/Logs.tsx +675 -0
  1923. package/_refs/frigate/web/src/pages/NoMatch.tsx +19 -0
  1924. package/_refs/frigate/web/src/pages/Settings.tsx +705 -0
  1925. package/_refs/frigate/web/src/pages/System.tsx +142 -0
  1926. package/_refs/frigate/web/src/pages/UIPlayground.tsx +480 -0
  1927. package/_refs/frigate/web/src/types/cameraWizard.ts +204 -0
  1928. package/_refs/frigate/web/src/types/canvas.ts +38 -0
  1929. package/_refs/frigate/web/src/types/card.ts +4 -0
  1930. package/_refs/frigate/web/src/types/classification.ts +42 -0
  1931. package/_refs/frigate/web/src/types/draggable-element.ts +1 -0
  1932. package/_refs/frigate/web/src/types/event.ts +35 -0
  1933. package/_refs/frigate/web/src/types/export.ts +14 -0
  1934. package/_refs/frigate/web/src/types/face.ts +3 -0
  1935. package/_refs/frigate/web/src/types/filter.ts +18 -0
  1936. package/_refs/frigate/web/src/types/frigateConfig.ts +598 -0
  1937. package/_refs/frigate/web/src/types/graph.ts +64 -0
  1938. package/_refs/frigate/web/src/types/live.ts +48 -0
  1939. package/_refs/frigate/web/src/types/log.ts +20 -0
  1940. package/_refs/frigate/web/src/types/navigation.ts +10 -0
  1941. package/_refs/frigate/web/src/types/playback.ts +13 -0
  1942. package/_refs/frigate/web/src/types/preview.ts +12 -0
  1943. package/_refs/frigate/web/src/types/ptz.ts +14 -0
  1944. package/_refs/frigate/web/src/types/record.ts +48 -0
  1945. package/_refs/frigate/web/src/types/review.ts +99 -0
  1946. package/_refs/frigate/web/src/types/search.ts +127 -0
  1947. package/_refs/frigate/web/src/types/stats.ts +118 -0
  1948. package/_refs/frigate/web/src/types/timeline.ts +44 -0
  1949. package/_refs/frigate/web/src/types/trigger.ts +12 -0
  1950. package/_refs/frigate/web/src/types/user.ts +4 -0
  1951. package/_refs/frigate/web/src/types/ws.ts +128 -0
  1952. package/_refs/frigate/web/src/utils/browserUtil.ts +17 -0
  1953. package/_refs/frigate/web/src/utils/cameraUtil.ts +150 -0
  1954. package/_refs/frigate/web/src/utils/canvasUtil.ts +172 -0
  1955. package/_refs/frigate/web/src/utils/colorUtil.ts +36 -0
  1956. package/_refs/frigate/web/src/utils/dateUtil.ts +535 -0
  1957. package/_refs/frigate/web/src/utils/i18n.ts +132 -0
  1958. package/_refs/frigate/web/src/utils/iconUtil.tsx +196 -0
  1959. package/_refs/frigate/web/src/utils/isIFrame.ts +8 -0
  1960. package/_refs/frigate/web/src/utils/isPWA.ts +3 -0
  1961. package/_refs/frigate/web/src/utils/lifecycleUtil.ts +87 -0
  1962. package/_refs/frigate/web/src/utils/logUtil.ts +213 -0
  1963. package/_refs/frigate/web/src/utils/snapshotUtil.ts +163 -0
  1964. package/_refs/frigate/web/src/utils/storageUtil.ts +7 -0
  1965. package/_refs/frigate/web/src/utils/stringUtil.ts +85 -0
  1966. package/_refs/frigate/web/src/utils/timelineUtil.tsx +69 -0
  1967. package/_refs/frigate/web/src/utils/videoUtil.ts +80 -0
  1968. package/_refs/frigate/web/src/utils/zoneEdutUtil.ts +50 -0
  1969. package/_refs/frigate/web/src/views/button/TooltipButton.tsx +52 -0
  1970. package/_refs/frigate/web/src/views/classification/ModelSelectionView.tsx +367 -0
  1971. package/_refs/frigate/web/src/views/classification/ModelTrainingView.tsx +1170 -0
  1972. package/_refs/frigate/web/src/views/events/EventView.tsx +1255 -0
  1973. package/_refs/frigate/web/src/views/explore/ExploreView.tsx +287 -0
  1974. package/_refs/frigate/web/src/views/live/DraggableGridLayout.tsx +927 -0
  1975. package/_refs/frigate/web/src/views/live/LiveBirdseyeView.tsx +311 -0
  1976. package/_refs/frigate/web/src/views/live/LiveCameraView.tsx +1709 -0
  1977. package/_refs/frigate/web/src/views/live/LiveDashboardView.tsx +705 -0
  1978. package/_refs/frigate/web/src/views/recording/RecordingView.tsx +1093 -0
  1979. package/_refs/frigate/web/src/views/search/SearchView.tsx +742 -0
  1980. package/_refs/frigate/web/src/views/settings/AuthenticationView.tsx +807 -0
  1981. package/_refs/frigate/web/src/views/settings/CameraManagementView.tsx +171 -0
  1982. package/_refs/frigate/web/src/views/settings/CameraReviewSettingsView.tsx +751 -0
  1983. package/_refs/frigate/web/src/views/settings/EnrichmentsSettingsView.tsx +618 -0
  1984. package/_refs/frigate/web/src/views/settings/FrigatePlusSettingsView.tsx +563 -0
  1985. package/_refs/frigate/web/src/views/settings/MasksAndZonesView.tsx +733 -0
  1986. package/_refs/frigate/web/src/views/settings/MotionTunerView.tsx +335 -0
  1987. package/_refs/frigate/web/src/views/settings/NotificationsSettingsView.tsx +785 -0
  1988. package/_refs/frigate/web/src/views/settings/ObjectSettingsView.tsx +529 -0
  1989. package/_refs/frigate/web/src/views/settings/RolesView.tsx +5 -0
  1990. package/_refs/frigate/web/src/views/settings/TriggerView.tsx +887 -0
  1991. package/_refs/frigate/web/src/views/settings/UiSettingsView.tsx +338 -0
  1992. package/_refs/frigate/web/src/views/settings/UsersView.tsx +5 -0
  1993. package/_refs/frigate/web/src/views/system/CameraMetrics.tsx +352 -0
  1994. package/_refs/frigate/web/src/views/system/EnrichmentMetrics.tsx +226 -0
  1995. package/_refs/frigate/web/src/views/system/GeneralMetrics.tsx +893 -0
  1996. package/_refs/frigate/web/src/views/system/StorageMetrics.tsx +208 -0
  1997. package/_refs/frigate/web/src/vite-env.d.ts +1 -0
  1998. package/_refs/frigate/web/tailwind.config.cjs +198 -0
  1999. package/_refs/frigate/web/themes/tailwind-base.css +287 -0
  2000. package/_refs/frigate/web/themes/theme-blue.css +63 -0
  2001. package/_refs/frigate/web/themes/theme-default.css +185 -0
  2002. package/_refs/frigate/web/themes/theme-green.css +63 -0
  2003. package/_refs/frigate/web/themes/theme-high-contrast.css +185 -0
  2004. package/_refs/frigate/web/themes/theme-nord.css +63 -0
  2005. package/_refs/frigate/web/themes/theme-red.css +63 -0
  2006. package/_refs/frigate/web/tsconfig.json +29 -0
  2007. package/_refs/frigate/web/tsconfig.node.json +10 -0
  2008. package/_refs/frigate/web/vite.config.ts +77 -0
  2009. package/dist/plugin.zip +0 -0
  2010. package/package.json +1 -1
@@ -0,0 +1,320 @@
1
+ aarch
2
+ absdiff
3
+ airockchip
4
+ Alloc
5
+ alpr
6
+ Amcrest
7
+ amdgpu
8
+ analyzeduration
9
+ Annke
10
+ apexcharts
11
+ arange
12
+ argmax
13
+ argmin
14
+ argpartition
15
+ ascontiguousarray
16
+ astype
17
+ authelia
18
+ authentik
19
+ autodetected
20
+ automations
21
+ autotrack
22
+ autotracked
23
+ autotracker
24
+ autotracking
25
+ backchannel
26
+ balena
27
+ Beelink
28
+ BGRA
29
+ BHWC
30
+ blackshear
31
+ blakeblackshear
32
+ bottombar
33
+ buildx
34
+ castable
35
+ cdist
36
+ Celeron
37
+ cgroups
38
+ chipset
39
+ chromadb
40
+ Chromecast
41
+ cmdline
42
+ codeowner
43
+ CODEOWNERS
44
+ codeproject
45
+ colormap
46
+ colorspace
47
+ comms
48
+ cooldown
49
+ coro
50
+ ctypeslib
51
+ CUDA
52
+ Cuvid
53
+ Dahua
54
+ datasheet
55
+ debconf
56
+ deci
57
+ deepstack
58
+ defragment
59
+ devcontainer
60
+ DEVICEMAP
61
+ discardcorrupt
62
+ dpkg
63
+ dsize
64
+ dtype
65
+ ECONNRESET
66
+ edgetpu
67
+ facenet
68
+ fastapi
69
+ faststart
70
+ fflags
71
+ ffprobe
72
+ fillna
73
+ flac
74
+ foscam
75
+ fourcc
76
+ framebuffer
77
+ fregate
78
+ frégate
79
+ fromarray
80
+ frombuffer
81
+ frontdoor
82
+ fstype
83
+ fullchain
84
+ fullscreen
85
+ genai
86
+ generativeai
87
+ genpts
88
+ getpid
89
+ gpuload
90
+ HACS
91
+ Hailo
92
+ hass
93
+ hconcat
94
+ healthcheck
95
+ hideable
96
+ Hikvision
97
+ homeassistant
98
+ homekit
99
+ homography
100
+ hsize
101
+ hstack
102
+ httpx
103
+ hwaccel
104
+ hwdownload
105
+ hwmap
106
+ hwupload
107
+ iloc
108
+ imagestream
109
+ imdecode
110
+ imencode
111
+ imread
112
+ imwrite
113
+ inpoint
114
+ interp
115
+ iostat
116
+ iotop
117
+ itemsize
118
+ Jellyfin
119
+ jetson
120
+ jetsons
121
+ jina
122
+ jinaai
123
+ joserfc
124
+ jsmpeg
125
+ jsonify
126
+ Kalman
127
+ keepalive
128
+ keepdims
129
+ labelmap
130
+ letsencrypt
131
+ levelname
132
+ LIBAVFORMAT
133
+ libedgetpu
134
+ libnvinfer
135
+ libva
136
+ libwebp
137
+ libx
138
+ libyolo
139
+ linalg
140
+ localzone
141
+ logpipe
142
+ Loryta
143
+ lstsq
144
+ lsusb
145
+ markupsafe
146
+ maxsplit
147
+ MEMHOSTALLOC
148
+ memlimit
149
+ meshgrid
150
+ metadatas
151
+ migraphx
152
+ minilm
153
+ mjpeg
154
+ mkfifo
155
+ mobiledet
156
+ mobilenet
157
+ modelpath
158
+ mosquitto
159
+ mountpoint
160
+ movflags
161
+ mpegts
162
+ mqtt
163
+ mse
164
+ msenc
165
+ namedtuples
166
+ nbytes
167
+ nchw
168
+ ndarray
169
+ ndimage
170
+ nethogs
171
+ newaxis
172
+ nhwc
173
+ NOBLOCK
174
+ nobuffer
175
+ nokey
176
+ NONBLOCK
177
+ noninteractive
178
+ noprint
179
+ Norfair
180
+ nptype
181
+ NTSC
182
+ numpy
183
+ nvenc
184
+ nvhost
185
+ nvml
186
+ nvmpi
187
+ ollama
188
+ onnx
189
+ onnxruntime
190
+ onvif
191
+ ONVIF
192
+ openai
193
+ opencv
194
+ openvino
195
+ overfitting
196
+ OWASP
197
+ paddleocr
198
+ paho
199
+ passwordless
200
+ popleft
201
+ posthog
202
+ postprocess
203
+ poweroff
204
+ preexec
205
+ probesize
206
+ protobuf
207
+ pstate
208
+ psutil
209
+ pubkey
210
+ putenv
211
+ pycache
212
+ pydantic
213
+ pyobj
214
+ pysqlite
215
+ pytz
216
+ pywebpush
217
+ qnap
218
+ quantisation
219
+ Radeon
220
+ radeonsi
221
+ radeontop
222
+ rawvideo
223
+ rcond
224
+ RDONLY
225
+ rebranded
226
+ referer
227
+ reindex
228
+ Reolink
229
+ restream
230
+ restreamed
231
+ restreaming
232
+ rkmpp
233
+ rknn
234
+ rkrga
235
+ rockchip
236
+ rocm
237
+ rocminfo
238
+ rootfs
239
+ rtmp
240
+ RTSP
241
+ ruamel
242
+ scroller
243
+ setproctitle
244
+ setpts
245
+ shms
246
+ SIGUSR
247
+ skylake
248
+ sleeptime
249
+ SNDMORE
250
+ socs
251
+ sqliteq
252
+ sqlitevecq
253
+ ssdlite
254
+ statm
255
+ stimeout
256
+ stylelint
257
+ subclassing
258
+ substream
259
+ superfast
260
+ surveillance
261
+ svscan
262
+ Swipeable
263
+ sysconf
264
+ tailscale
265
+ Tapo
266
+ tensorrt
267
+ tflite
268
+ thresholded
269
+ timelapse
270
+ titlecase
271
+ tmpfs
272
+ tobytes
273
+ toggleable
274
+ traefik
275
+ tzlocal
276
+ Ubiquiti
277
+ udev
278
+ udevadm
279
+ ultrafast
280
+ unichip
281
+ unidecode
282
+ Unifi
283
+ unixepoch
284
+ unraid
285
+ unreviewed
286
+ userdata
287
+ usermod
288
+ uvicorn
289
+ vaapi
290
+ vainfo
291
+ variations
292
+ vbios
293
+ vconcat
294
+ vitb
295
+ vstream
296
+ vsync
297
+ wallclock
298
+ webp
299
+ webpush
300
+ webrtc
301
+ websockets
302
+ webui
303
+ werkzeug
304
+ workdir
305
+ WRONLY
306
+ wsgirefserver
307
+ wsgiutils
308
+ wsize
309
+ xaddr
310
+ xmaxs
311
+ xmins
312
+ XPUB
313
+ XSUB
314
+ ymaxs
315
+ ymins
316
+ yolo
317
+ yolonas
318
+ yolox
319
+ zeep
320
+ zerolatency
@@ -0,0 +1,6 @@
1
+ ---
2
+ globs: ["**/*.ts", "**/*.tsx"]
3
+ alwaysApply: false
4
+ ---
5
+
6
+ Never write strings in the frontend directly, always write to and reference the relevant translations file.
@@ -0,0 +1,125 @@
1
+ {
2
+ "name": "Frigate Devcontainer",
3
+ "dockerComposeFile": "../docker-compose.yml",
4
+ "service": "devcontainer",
5
+ "workspaceFolder": "/workspace/frigate",
6
+ "initializeCommand": ".devcontainer/initialize.sh",
7
+ "postCreateCommand": ".devcontainer/post_create.sh",
8
+ "overrideCommand": false,
9
+ "remoteUser": "vscode",
10
+ "features": {
11
+ "ghcr.io/devcontainers/features/common-utils:2": {}
12
+ // Uncomment the following lines to use ONNX Runtime with CUDA support
13
+ // "ghcr.io/devcontainers/features/nvidia-cuda:1": {
14
+ // "installCudnn": true,
15
+ // "installNvtx": true,
16
+ // "installToolkit": true,
17
+ // "cudaVersion": "12.5",
18
+ // "cudnnVersion": "9.4.0.58"
19
+ // },
20
+ // "./features/onnxruntime-gpu": {}
21
+ },
22
+ "forwardPorts": [
23
+ 8971,
24
+ 5000,
25
+ 5001,
26
+ 5173,
27
+ 8554,
28
+ 8555
29
+ ],
30
+ "portsAttributes": {
31
+ "8971": {
32
+ "label": "External NGINX",
33
+ "onAutoForward": "silent"
34
+ },
35
+ "5000": {
36
+ "label": "Internal NGINX",
37
+ "onAutoForward": "silent"
38
+ },
39
+ "5001": {
40
+ "label": "Frigate API",
41
+ "onAutoForward": "silent"
42
+ },
43
+ "5173": {
44
+ "label": "Vite Server",
45
+ "onAutoForward": "silent"
46
+ },
47
+ "8554": {
48
+ "label": "gortc RTSP",
49
+ "onAutoForward": "silent"
50
+ },
51
+ "8555": {
52
+ "label": "go2rtc WebRTC",
53
+ "onAutoForward": "silent"
54
+ }
55
+ },
56
+ "customizations": {
57
+ "vscode": {
58
+ "extensions": [
59
+ "ms-python.python",
60
+ "ms-python.vscode-pylance",
61
+ "visualstudioexptteam.vscodeintellicode",
62
+ "mhutchie.git-graph",
63
+ "ms-azuretools.vscode-docker",
64
+ "streetsidesoftware.code-spell-checker",
65
+ "esbenp.prettier-vscode",
66
+ "dbaeumer.vscode-eslint",
67
+ "mikestead.dotenv",
68
+ "csstools.postcss",
69
+ "blanu.vscode-styled-jsx",
70
+ "bradlc.vscode-tailwindcss",
71
+ "charliermarsh.ruff",
72
+ "eamodio.gitlens"
73
+ ],
74
+ "settings": {
75
+ "remote.autoForwardPorts": false,
76
+ "python.formatting.provider": "none",
77
+ "python.languageServer": "Pylance",
78
+ "editor.formatOnPaste": false,
79
+ "editor.formatOnSave": true,
80
+ "editor.formatOnType": true,
81
+ "python.testing.pytestEnabled": false,
82
+ "python.testing.unittestEnabled": true,
83
+ "python.testing.unittestArgs": [
84
+ "-v",
85
+ "-s",
86
+ "./frigate/test"
87
+ ],
88
+ "files.trimTrailingWhitespace": true,
89
+ "eslint.workingDirectories": [
90
+ "./web"
91
+ ],
92
+ "isort.args": [
93
+ "--settings-path=./pyproject.toml"
94
+ ],
95
+ "[python]": {
96
+ "editor.defaultFormatter": "charliermarsh.ruff",
97
+ "editor.formatOnSave": true,
98
+ "editor.codeActionsOnSave": {
99
+ "source.fixAll": true,
100
+ "source.organizeImports": true
101
+ }
102
+ },
103
+ "[json][jsonc]": {
104
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
105
+ },
106
+ "[jsx][js][tsx][ts]": {
107
+ "editor.codeActionsOnSave": [
108
+ "source.addMissingImports",
109
+ "source.fixAll"
110
+ ],
111
+ "editor.tabSize": 2
112
+ },
113
+ "cSpell.ignoreWords": [
114
+ "rtmp"
115
+ ],
116
+ "cSpell.words": [
117
+ "preact",
118
+ "astype",
119
+ "hwaccel",
120
+ "mqtt"
121
+ ]
122
+ }
123
+ }
124
+ }
125
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "id": "onnxruntime-gpu",
3
+ "version": "0.0.1",
4
+ "name": "ONNX Runtime GPU (Nvidia)",
5
+ "description": "Installs ONNX Runtime for Nvidia GPUs.",
6
+ "documentationURL": "",
7
+ "options": {
8
+ "version": {
9
+ "type": "string",
10
+ "proposals": [
11
+ "latest",
12
+ "1.20.1",
13
+ "1.20.0"
14
+ ],
15
+ "default": "latest",
16
+ "description": "Version of ONNX Runtime to install"
17
+ }
18
+ },
19
+ "installsAfter": [
20
+ "ghcr.io/devcontainers/features/nvidia-cuda"
21
+ ]
22
+ }
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ VERSION=${VERSION}
6
+
7
+ python3 -m pip config set global.break-system-packages true
8
+ # if VERSION == "latest" or VERSION is empty, install the latest version
9
+ if [ "$VERSION" == "latest" ] || [ -z "$VERSION" ]; then
10
+ python3 -m pip install onnxruntime-gpu
11
+ else
12
+ python3 -m pip install onnxruntime-gpu==$VERSION
13
+ fi
14
+
15
+ echo "Done!"
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+
3
+ set -euo pipefail
4
+
5
+ # These folders needs to be created and owned by the host user
6
+ mkdir -p debug web/dist
7
+
8
+ if [[ -f "config/config.yml" ]]; then
9
+ echo "config/config.yml already exists, skipping initialization" >&2
10
+ else
11
+ echo "initializing config/config.yml" >&2
12
+ cp -fv config/config.yml.example config/config.yml
13
+ fi
@@ -0,0 +1,30 @@
1
+ #!/bin/bash
2
+
3
+ set -euxo pipefail
4
+
5
+ # Cleanup the old github host key
6
+ if [[ -f ~/.ssh/known_hosts ]]; then
7
+ # Add new github host key
8
+ sed -i -e '/AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31\/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi\/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==/d' ~/.ssh/known_hosts
9
+ curl -L https://api.github.com/meta | jq -r '.ssh_keys | .[]' | \
10
+ sed -e 's/^/github.com /' >> ~/.ssh/known_hosts
11
+ fi
12
+
13
+ # Frigate normal container runs as root, so it have permission to create
14
+ # the folders. But the devcontainer runs as the host user, so we need to
15
+ # create the folders and give the host user permission to write to them.
16
+ sudo mkdir -p /media/frigate
17
+ sudo chown -R "$(id -u):$(id -g)" /media/frigate
18
+
19
+ # When started as a service, LIBAVFORMAT_VERSION_MAJOR is defined in the
20
+ # s6 service file. For dev, where frigate is started from an interactive
21
+ # shell, we define it in .bashrc instead.
22
+ echo 'export LIBAVFORMAT_VERSION_MAJOR=$("$(python3 /usr/local/ffmpeg/get_ffmpeg_path.py)" -version | grep -Po "libavformat\W+\K\d+")' >> "$HOME/.bashrc"
23
+
24
+ make version
25
+
26
+ cd web
27
+
28
+ npm install
29
+
30
+ npm run build
@@ -0,0 +1,16 @@
1
+ README.md
2
+ docs/
3
+ .gitignore
4
+ debug
5
+ config/
6
+ *.pyc
7
+ .git
8
+ core
9
+ *.mp4
10
+ *.jpg
11
+ *.db
12
+ *.ts
13
+
14
+ web/dist/
15
+ web/node_modules/
16
+ web/.npm
@@ -0,0 +1,129 @@
1
+ title: "[Beta Support]: "
2
+ labels: ["support", "triage", "beta"]
3
+ body:
4
+ - type: markdown
5
+ attributes:
6
+ value: |
7
+ Thank you for testing Frigate beta versions! Use this form for support with beta releases.
8
+
9
+ **Note:** Beta versions may have incomplete features, known issues, or unexpected behavior. Please check the [release notes](https://github.com/blakeblackshear/frigate/releases) and [recent discussions][discussions] for known beta issues before submitting.
10
+
11
+ Before submitting, read the [beta documentation][docs].
12
+
13
+ [docs]: https://deploy-preview-19787--frigate-docs.netlify.app/
14
+ - type: textarea
15
+ id: description
16
+ attributes:
17
+ label: Describe the problem you are having
18
+ description: Please be as detailed as possible. Include what you expected to happen vs what actually happened.
19
+ validations:
20
+ required: true
21
+ - type: input
22
+ id: version
23
+ attributes:
24
+ label: Beta Version
25
+ description: Visible on the System page in the Web UI. Please include the full version including the build identifier (eg. 0.17.0-beta1)
26
+ placeholder: "0.17.0-beta1"
27
+ validations:
28
+ required: true
29
+ - type: dropdown
30
+ id: issue-category
31
+ attributes:
32
+ label: Issue Category
33
+ description: What area is your issue related to? This helps us understand the context.
34
+ options:
35
+ - Object Detection / Detectors
36
+ - Hardware Acceleration
37
+ - Configuration / Setup
38
+ - WebUI / Frontend
39
+ - Recordings / Storage
40
+ - Notifications / Events
41
+ - Integration (Home Assistant, etc)
42
+ - Performance / Stability
43
+ - Installation / Updates
44
+ - Other
45
+ validations:
46
+ required: true
47
+ - type: textarea
48
+ id: config
49
+ attributes:
50
+ label: Frigate config file
51
+ description: This will be automatically formatted into code, so no need for backticks. Remove any sensitive information like passwords or URLs.
52
+ render: yaml
53
+ validations:
54
+ required: true
55
+ - type: textarea
56
+ id: frigatelogs
57
+ attributes:
58
+ label: Relevant Frigate log output
59
+ description: Please copy and paste any relevant Frigate log output. Include logs before and after your exact error when possible. This will be automatically formatted into code, so no need for backticks.
60
+ render: shell
61
+ validations:
62
+ required: true
63
+ - type: textarea
64
+ id: go2rtclogs
65
+ attributes:
66
+ label: Relevant go2rtc log output (if applicable)
67
+ description: If your issue involves cameras, streams, or playback, please include go2rtc logs. Logs can be viewed via the Frigate UI, Docker, or the go2rtc dashboard. This will be automatically formatted into code, so no need for backticks.
68
+ render: shell
69
+ - type: dropdown
70
+ id: install-method
71
+ attributes:
72
+ label: Install method
73
+ options:
74
+ - Home Assistant Add-on
75
+ - Docker Compose
76
+ - Docker CLI
77
+ - Proxmox via Docker
78
+ - Proxmox via TTeck Script
79
+ - Windows WSL2
80
+ validations:
81
+ required: true
82
+ - type: textarea
83
+ id: docker
84
+ attributes:
85
+ label: docker-compose file or Docker CLI command
86
+ description: This will be automatically formatted into code, so no need for backticks. Include relevant environment variables and device mappings.
87
+ render: yaml
88
+ validations:
89
+ required: true
90
+ - type: dropdown
91
+ id: os
92
+ attributes:
93
+ label: Operating system
94
+ options:
95
+ - Home Assistant OS
96
+ - Debian
97
+ - Ubuntu
98
+ - Other Linux
99
+ - Proxmox
100
+ - UNRAID
101
+ - Windows
102
+ - Other
103
+ validations:
104
+ required: true
105
+ - type: input
106
+ id: hardware
107
+ attributes:
108
+ label: CPU / GPU / Hardware
109
+ description: Provide details about your hardware (e.g., Intel i5-9400, NVIDIA RTX 3060, Raspberry Pi 4, etc)
110
+ placeholder: "Intel i7-10700, NVIDIA GTX 1660"
111
+ - type: textarea
112
+ id: screenshots
113
+ attributes:
114
+ label: Screenshots
115
+ description: Screenshots of the issue, System metrics pages, or any relevant UI. Drag and drop or paste images directly.
116
+ - type: textarea
117
+ id: steps-to-reproduce
118
+ attributes:
119
+ label: Steps to reproduce
120
+ description: If applicable, provide detailed steps to reproduce the issue
121
+ placeholder: |
122
+ 1. Go to '...'
123
+ 2. Click on '...'
124
+ 3. See error
125
+ - type: textarea
126
+ id: other
127
+ attributes:
128
+ label: Any other information that may be helpful
129
+ description: Additional context, related issues, when the problem started appearing, etc.