mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-06-21 03:41:55 +03:00
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* start audio transcription post processor when enabled on any camera * Fetch embed key whenever an error occurs in case the llama server was restarted * mypy * add tooltips for colored dots in settings menu * add ability to reorder cameras from management pane * add ability to reorder birdseye * add reordering save text to camera management view * Include NPU in latency performance hint * Implement turbo for NPU on object detection * hide order fields * drop auto-derived field paths from camera value when unset globally * use correct field type for export hwaccel args * add debug replay to detail actions menu * clarify debug replay in docs * guard get_current_frame_time against missing camera state * Implement debug reply from export * Refactor debug replay to use sources for dynamic playback * Mypy * fix debug export replay source timestamp handling * skip replay cameras in stats immediately * broadcast debug replay state over ws and buffer pre-OPEN sends - push debug replay session state over the job_state ws topic so the status bar reacts instantly to start/stop without polling - fix child-effect-before-parent-effect race in WsProvider that silently dropped initial snapshot requests on cold load * fix debug replay test hang --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|
|
|
const birdseye: SectionConfigOverrides = {
|
|
base: {
|
|
sectionDocs: "/configuration/birdseye",
|
|
messages: [
|
|
{
|
|
key: "objects-mode-detect-disabled",
|
|
messageKey: "configMessages.birdseye.objectsModeDetectDisabled",
|
|
severity: "info",
|
|
condition: (ctx) => {
|
|
if (ctx.level !== "camera" || !ctx.fullCameraConfig) return false;
|
|
return (
|
|
ctx.formData?.mode === "objects" &&
|
|
ctx.fullCameraConfig.detect?.enabled === false
|
|
);
|
|
},
|
|
},
|
|
],
|
|
restartRequired: [],
|
|
fieldOrder: ["enabled", "mode", "order"],
|
|
hiddenFields: ["order"],
|
|
advancedFields: [],
|
|
overrideFields: ["enabled", "mode"],
|
|
uiSchema: {
|
|
mode: {
|
|
"ui:size": "xs",
|
|
"ui:options": {
|
|
enumI18nPrefix: "birdseye.trackingMode",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
global: {
|
|
fieldOrder: [
|
|
"enabled",
|
|
"restream",
|
|
"width",
|
|
"height",
|
|
"quality",
|
|
"mode",
|
|
"layout",
|
|
"inactivity_threshold",
|
|
"idle_heartbeat_fps",
|
|
],
|
|
advancedFields: ["width", "height", "quality", "inactivity_threshold"],
|
|
restartRequired: [
|
|
"enabled",
|
|
"restream",
|
|
"width",
|
|
"height",
|
|
"quality",
|
|
"layout.scaling_factor",
|
|
"idle_heartbeat_fps",
|
|
],
|
|
uiSchema: {
|
|
mode: {
|
|
"ui:size": "xs",
|
|
"ui:after": { render: "BirdseyeCameraReorder" },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default birdseye;
|