mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 21:44:13 +03:00
* Refactor activity api to send motion and audio data * Prepare for using motion data timeline * Get working * reduce to 0 * fix * Formatting * fix typing * add motion data to timelines and allow motion cameas to be selectable * Fix tests * cleanup * Fix not loading preview when changing hours
75 lines
1.8 KiB
TypeScript
75 lines
1.8 KiB
TypeScript
import { useCallback, useMemo } from "react";
|
|
import { MotionData } from "@/types/review";
|
|
|
|
export const useMotionSegmentUtils = (
|
|
segmentDuration: number,
|
|
motion_events: MotionData[],
|
|
) => {
|
|
const halfSegmentDuration = useMemo(
|
|
() => segmentDuration / 2,
|
|
[segmentDuration],
|
|
);
|
|
|
|
const getSegmentStart = useCallback(
|
|
(time: number): number => {
|
|
return Math.floor(time / halfSegmentDuration) * halfSegmentDuration;
|
|
},
|
|
[halfSegmentDuration],
|
|
);
|
|
|
|
const getSegmentEnd = useCallback(
|
|
(time: number | undefined): number => {
|
|
if (time) {
|
|
return (
|
|
Math.floor(time / halfSegmentDuration) * halfSegmentDuration +
|
|
halfSegmentDuration
|
|
);
|
|
} else {
|
|
return Date.now() / 1000 + halfSegmentDuration;
|
|
}
|
|
},
|
|
[halfSegmentDuration],
|
|
);
|
|
|
|
const interpolateMotionAudioData = useCallback(
|
|
(value: number, newMax: number): number => {
|
|
return Math.ceil((Math.abs(value) / 100.0) * newMax) || 1;
|
|
},
|
|
[],
|
|
);
|
|
|
|
const getMotionSegmentValue = useCallback(
|
|
(time: number): number => {
|
|
const matchingEvent = motion_events.find((event) => {
|
|
return (
|
|
time >= getSegmentStart(event.start_time) &&
|
|
time < getSegmentEnd(event.start_time)
|
|
);
|
|
});
|
|
|
|
return matchingEvent?.motion ?? 0;
|
|
},
|
|
[motion_events, getSegmentStart, getSegmentEnd],
|
|
);
|
|
|
|
const getAudioSegmentValue = useCallback(
|
|
(time: number): number => {
|
|
const matchingEvent = motion_events.find((event) => {
|
|
return (
|
|
time >= getSegmentStart(event.start_time) &&
|
|
time < getSegmentEnd(event.start_time)
|
|
);
|
|
});
|
|
|
|
return matchingEvent?.audio ?? 0;
|
|
},
|
|
[motion_events, getSegmentStart, getSegmentEnd],
|
|
);
|
|
|
|
return {
|
|
getMotionSegmentValue,
|
|
getAudioSegmentValue,
|
|
interpolateMotionAudioData,
|
|
};
|
|
};
|