mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-06-29 16:41:16 +03:00
22 lines
527 B
TypeScript
22 lines
527 B
TypeScript
|
|
import type { SectionConfigOverrides } from "./types";
|
||
|
|
|
||
|
|
const live: SectionConfigOverrides = {
|
||
|
|
base: {
|
||
|
|
sectionDocs: "/configuration/live",
|
||
|
|
restartRequired: [],
|
||
|
|
fieldOrder: ["stream_name", "height", "quality"],
|
||
|
|
fieldGroups: {},
|
||
|
|
hiddenFields: ["enabled_in_config"],
|
||
|
|
advancedFields: ["height", "quality"],
|
||
|
|
},
|
||
|
|
global: {
|
||
|
|
restartRequired: ["stream_name", "height", "quality"],
|
||
|
|
hiddenFields: ["streams"],
|
||
|
|
},
|
||
|
|
camera: {
|
||
|
|
restartRequired: ["height", "quality"],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default live;
|