85 lines
3.0 KiB
Markdown
85 lines
3.0 KiB
Markdown
---
|
|
title: Frigate Notify
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, notifications, nvr, cameras, app-marathon-batch-rattrapage-3]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Notifications, https://github.com/0x2142/frigate-notify]
|
|
---
|
|
|
|
# 🔔 Frigate Notify
|
|
|
|
> **Notifications de Frigate NVR enrichies** : push avec miniatures vidéo, filtres par zone/objet, throttling. Le compagnon de Frigate pour des alertes Foscam/Hikvision-like.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/0x2142/frigate-notify](https://github.com/0x2142/frigate-notify) |
|
|
| **GitHub** | [0x2142/frigate-notify](https://github.com/0x2142/frigate-notify) |
|
|
| **License** | MIT |
|
|
| **Langage** | Python |
|
|
| **Étoiles GitHub** | ~500 ⭐ |
|
|
| **Catégorie** | [[cat-notifications|Notifications]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Frigate Notify** est un **petit service Python** qui s'abonne aux événements MQTT de **[Frigate](https://frigate.video)** (NVR AI open source) et envoie des **notifications enrichies** avec miniatures JPEG/clip vidéo, vers Discord, Telegram, Slack, Ntfy, Gotify, Pushover, Apprise (donc > 100 services), avec **anti-spam**, **quiet hours**, et **filtres par label/zone/caméra**.
|
|
|
|
**Différence avec Gotify/Ntfy** : ce sont des **serveurs de push génériques** ; Frigate Notify est un **middleware spécialisé** dans l'agrégation et l'enrichissement des alertes Frigate.
|
|
|
|
**Pour qui** : utilisateurs de Frigate NVR qui veulent des **alertes plus intelligentes** que le webhook MQTT brut.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
frigate-notify:
|
|
image: ghcr.io/0x2142/frigate-notify:latest
|
|
container_name: frigate-notify
|
|
restart: unless-stopped
|
|
environment:
|
|
- FRIGATE_MQTT_URL=mqtt://mosquitto:1883
|
|
- FRIGATE_MQTT_TOPIC=frigate/events
|
|
- NOTIFY_DISCORD=*** - NOTIFY_NTFY_URL=https://ntfy.example.com
|
|
volumes:
|
|
- frigate-notify-config:/app/config
|
|
labels:
|
|
- "traefik.enable=false" # Pas d'UI web
|
|
|
|
volumes:
|
|
frigate-notify-config:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-apprise]] — Pour l'envoi multi-services (Frigate Notify s'y appuie)
|
|
- [[app-ntfy]] — Serveur de push simple
|
|
- [[app-gotify]] — Serveur de push mobile
|
|
- **Frigate Notifications** (intégré) — UI native limitée
|
|
|
|
### Propriétaires
|
|
- **Blue Iris** (Windows) — NVR commercial
|
|
- **Ring/Arlo** — NVR cloud, fermés
|
|
|
|
## 🔐 Sécurité
|
|
- **Pas d'UI** : service headless, pas d'exposition web.
|
|
- **MQTT en clair** localement : OK, mais sur un réseau IoT isolé.
|
|
- **Tokens** des providers (Discord, Telegram) à garder secrets dans le fichier de config (chmod 600).
|
|
|
|
## 📚 Ressources
|
|
- [GitHub](https://github.com/0x2142/frigate-notify)
|
|
- [Frigate](https://frigate.video)
|
|
|
|
## Pages Liées
|
|
- [[cat-notifications]] — Catégorie Notifications
|
|
- [[app-apprise]] — Backend d'envoi
|
|
- [[app-ntfy]] — Push
|
|
- [[recettes-docker-compose]] — Templates Docker
|