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>
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
module.exports = {
|
|
docs: {
|
|
Frigate: [
|
|
"frigate/index",
|
|
"frigate/hardware",
|
|
"frigate/installation",
|
|
"frigate/camera_setup",
|
|
],
|
|
Guides: [
|
|
"guides/getting_started",
|
|
"guides/configuring_go2rtc",
|
|
"guides/false_positives",
|
|
"guides/ha_notifications",
|
|
"guides/stationary_objects",
|
|
"guides/reverse_proxy",
|
|
],
|
|
Configuration: [
|
|
"configuration/index",
|
|
"configuration/object_detectors",
|
|
"configuration/audio_detectors",
|
|
"configuration/cameras",
|
|
"configuration/masks",
|
|
"configuration/record",
|
|
"configuration/snapshots",
|
|
"configuration/objects",
|
|
"configuration/restream",
|
|
"configuration/live",
|
|
"configuration/zones",
|
|
"configuration/birdseye",
|
|
"configuration/stationary_objects",
|
|
"configuration/advanced",
|
|
"configuration/hardware_acceleration",
|
|
"configuration/camera_specific",
|
|
"configuration/ffmpeg_presets",
|
|
],
|
|
Integrations: [
|
|
"integrations/plus",
|
|
"integrations/home-assistant",
|
|
"integrations/api",
|
|
"integrations/mqtt",
|
|
"integrations/third_party_extensions",
|
|
],
|
|
Troubleshooting: [
|
|
"troubleshooting/faqs",
|
|
],
|
|
Development: [
|
|
"development/contributing",
|
|
],
|
|
},
|
|
};
|