mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
c3b313a70d
* Initial audio classification model implementation * fix mypy * Keep audio labelmap local * Cleanup * Start adding config for audio * Add the detector * Add audio detection process keypoints * Build out base config * Load labelmap correctly * Fix config bugs * Start audio process * Fix startup issues * Try to cleanup restarting * Add ffmpeg input args * Get audio detection working * Save event to db * End events if not heard for 30 seconds * Use not heard config * Stop ffmpeg when shutting down * Fixes * End events correctly * Use api instead of event queue to save audio events * Get events working * Close threads when stop event is sent * remove unused * Only start audio process if at least one camera is enabled * Add const for float * Cleanup labelmap * Add audio icon in frontend * Add ability to toggle audio with mqtt * Set initial audio value * Fix audio enabling * Close logpipe * Isort * Formatting * Fix web tests * Fix web tests * Handle cases where args are a string * Remove log * Cleanup process close * Use correct field * Simplify if statement * Use var for localhost * Add audio detectors docs * Add restream docs to mention audio detection * Add full config docs * Fix links to other docs --------- Co-authored-by: Jason Hunter <hunterjm@gmail.com>
112 lines
3.7 KiB
JavaScript
112 lines
3.7 KiB
JavaScript
import { h, Fragment } from 'preact';
|
|
import ActivityIndicator from '../components/ActivityIndicator';
|
|
import Card from '../components/Card';
|
|
import CameraImage from '../components/CameraImage';
|
|
import AudioIcon from '../icons/Audio';
|
|
import ClipIcon from '../icons/Clip';
|
|
import MotionIcon from '../icons/Motion';
|
|
import SnapshotIcon from '../icons/Snapshot';
|
|
import { useAudioState, useDetectState, useRecordingsState, useSnapshotsState } from '../api/ws';
|
|
import { useMemo } from 'preact/hooks';
|
|
import useSWR from 'swr';
|
|
|
|
export default function Cameras() {
|
|
const { data: config } = useSWR('config');
|
|
|
|
return !config ? (
|
|
<ActivityIndicator />
|
|
) : (
|
|
<div className="grid grid-cols-1 3xl:grid-cols-3 md:grid-cols-2 gap-4 p-2 px-4">
|
|
<SortedCameras config={config} unsortedCameras={config.cameras} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function SortedCameras({ config, unsortedCameras }) {
|
|
const sortedCameras = useMemo(
|
|
() =>
|
|
Object.entries(unsortedCameras)
|
|
.filter(([_, conf]) => conf.ui.dashboard)
|
|
.sort(([_, aConf], [__, bConf]) => aConf.ui.order - bConf.ui.order),
|
|
[unsortedCameras]
|
|
);
|
|
|
|
return (
|
|
<Fragment>
|
|
{sortedCameras.map(([camera, conf]) => (
|
|
<Camera key={camera} name={camera} config={config.cameras[camera]} conf={conf} />
|
|
))}
|
|
</Fragment>
|
|
);
|
|
}
|
|
|
|
function Camera({ name, config }) {
|
|
const { payload: detectValue, send: sendDetect } = useDetectState(name);
|
|
const { payload: recordValue, send: sendRecordings } = useRecordingsState(name);
|
|
const { payload: snapshotValue, send: sendSnapshots } = useSnapshotsState(name);
|
|
const { payload: audioValue, send: sendAudio } = useAudioState(name);
|
|
const href = `/cameras/${name}`;
|
|
const buttons = useMemo(() => {
|
|
return [
|
|
{ name: 'Events', href: `/events?cameras=${name}` },
|
|
{ name: 'Recordings', href: `/recording/${name}` },
|
|
];
|
|
}, [name]);
|
|
const cleanName = useMemo(() => {
|
|
return `${name.replaceAll('_', ' ')}`;
|
|
}, [name]);
|
|
const icons = useMemo(
|
|
() => [
|
|
{
|
|
name: `Toggle detect ${detectValue === 'ON' ? 'off' : 'on'}`,
|
|
icon: MotionIcon,
|
|
color: detectValue === 'ON' ? 'blue' : 'gray',
|
|
onClick: () => {
|
|
sendDetect(detectValue === 'ON' ? 'OFF' : 'ON', true);
|
|
},
|
|
},
|
|
{
|
|
name: config.record.enabled_in_config
|
|
? `Toggle recordings ${recordValue === 'ON' ? 'off' : 'on'}`
|
|
: 'Recordings must be enabled in the config to be turned on in the UI.',
|
|
icon: ClipIcon,
|
|
color: config.record.enabled_in_config ? (recordValue === 'ON' ? 'blue' : 'gray') : 'red',
|
|
onClick: () => {
|
|
if (config.record.enabled_in_config) {
|
|
sendRecordings(recordValue === 'ON' ? 'OFF' : 'ON', true);
|
|
}
|
|
},
|
|
},
|
|
{
|
|
name: `Toggle snapshots ${snapshotValue === 'ON' ? 'off' : 'on'}`,
|
|
icon: SnapshotIcon,
|
|
color: snapshotValue === 'ON' ? 'blue' : 'gray',
|
|
onClick: () => {
|
|
sendSnapshots(snapshotValue === 'ON' ? 'OFF' : 'ON', true);
|
|
},
|
|
},
|
|
config.audio.enabled_in_config
|
|
? {
|
|
name: `Toggle audio detection ${audioValue === 'ON' ? 'off' : 'on'}`,
|
|
icon: AudioIcon,
|
|
color: audioValue === 'ON' ? 'blue' : 'gray',
|
|
onClick: () => {
|
|
sendAudio(audioValue === 'ON' ? 'OFF' : 'ON', true);
|
|
},
|
|
}
|
|
: null,
|
|
].filter((button) => button != null),
|
|
[config, audioValue, sendAudio, detectValue, sendDetect, recordValue, sendRecordings, snapshotValue, sendSnapshots]
|
|
);
|
|
|
|
return (
|
|
<Card
|
|
buttons={buttons}
|
|
href={href}
|
|
header={cleanName}
|
|
icons={icons}
|
|
media={<CameraImage camera={name} stretch />}
|
|
/>
|
|
);
|
|
}
|