Files
wiki/Catalogue-Self-Hosted/apps/app-frigate-notify.md
T
2026-06-09 18:40:21 +02:00

3.0 KiB


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
GitHub 0x2142/frigate-notify
License MIT
Langage Python
Étoiles GitHub ~500
Catégorie [[cat-notifications

📝 Description

Frigate Notify est un petit service Python qui s'abonne aux événements MQTT de Frigate (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é)

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

Pages Liées