112 lines
4.1 KiB
Markdown
112 lines
4.1 KiB
Markdown
---
|
|
title: Blue Iris
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, nvr, app-marathon-batch-c, closed-source]
|
|
confidence: medium
|
|
contested: true
|
|
sources: [https://selfh.st/apps/?tag=NVR&app=blue-iris, https://blueirissoftware.com/]
|
|
---
|
|
|
|
# 📹 Blue Iris
|
|
|
|
> ⚠️ **PROPRIÉTAIRE** (~$70 licence unique) — **NVR de référence sur Windows** : support massif de caméras, UI riche, AI detection via DeepStack/CodeProject.AI.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [blueirissoftware.com](https://blueirissoftware.com/) |
|
|
| **GitHub** | N/A (closed source) |
|
|
| **License** | **Propriétaire** (~70$ licence) |
|
|
| **Langage** | C++ (Windows) |
|
|
| **Étoiles GitHub** | N/A |
|
|
| **Catégorie** | [[cat-nvr\|NVR]] |
|
|
|
|
## 📝 Description
|
|
|
|
> ⚠️ **Blue Iris n'est PAS open source** — c'est un logiciel **propriétaire Windows** payant (licence ~70$ pour usage personnel, ~250$ commercial). Il figure ici comme **référence du marché** pour information, mais ne respecte pas les critères open source.
|
|
|
|
**Blue Iris** est le **NVR de facto sur Windows** :
|
|
|
|
- ✅ **Support caméras** : RTSP, ONVIF, MJPEG, jusqu'à 64 caméras
|
|
- ✅ **Détection mouvement** : par zones, sensibilité fine
|
|
- ✅ **AI Detection** : via DeepStack/CodeProject.AI (tierce)
|
|
- ✅ **Enregistrement** : continu, sur mouvement, programmé
|
|
- ✅ **Web server intégré** : interface web pour remote access
|
|
- ✅ **Alertes** : email, son, push mobile
|
|
- ✅ **UI Windows** : la plus complète et stable
|
|
- ✅ **Apps mobiles** : BI Tool, tinyCAM, etc.
|
|
- ⚠️ **Windows only** : ne tourne pas sur Linux
|
|
- ⚠️ **Pas d'API ouverte** : intégrations tierces par reverse-engineering
|
|
|
|
**Différence vs Frigate** : Blue Iris = mature, Windows, AI optionnelle. Frigate = moderne Linux, AI native, GPU. Pour qui: utilisateurs Windows qui veulent la **référence propriétaire** sans prise de tête.
|
|
|
|
## 🚀 Installation
|
|
|
|
> ⚠️ **Installation manuelle sur Windows** : pas de Docker, pas de Linux.
|
|
|
|
1. **Télécharger** depuis [blueirissoftware.com](https://blueirissoftware.com/)
|
|
2. **Installer** sur Windows 10/11 ou Windows Server
|
|
3. **Acheter la licence** : ~70$ personnel
|
|
4. **Ajouter caméras** : menu Cameras → Add
|
|
5. **Configurer web server** : menu Web Server → Enable
|
|
6. **Exposer via VPN** : Blue Iris UI = Windows only, à reverse-proxy ou VPN
|
|
|
|
### Recommandé : reverse-proxy Nginx (Linux)
|
|
|
|
```nginx
|
|
# /etc/nginx/sites-enabled/blueiris.conf
|
|
server {
|
|
listen 443 ssl;
|
|
server_name cameras.example.com;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/cameras.example.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/cameras.example.com/privkey.pem;
|
|
|
|
location / {
|
|
proxy_pass http://192.168.1.10:81; # IP Windows + port BI
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
}
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source (recommandé)
|
|
- [[app-frigate]] — NVR Linux moderne avec AI native
|
|
- [[app-zoneminder]] — Vétéran stable Linux
|
|
- [[app-shinobi]] — NVR Node.js multi-tenant
|
|
- [[app-viseron]] — NVR Python simple
|
|
- [[app-scrypted]] — Hub unifié moderne
|
|
- [[app-unblink]] — NVR simple
|
|
|
|
### Propriétaires
|
|
- **Synology Surveillance Station** — Inclus NAS
|
|
- **Hikvision iVMS** — Cloud/propriétaire
|
|
- **Milestone XProtect** — Enterprise
|
|
- **Nest Cam / Ring** — Cloud, perte vie privée
|
|
|
|
## 🔐 Sécurité
|
|
- **Windows only** : surface d'attaque OS importante
|
|
- **Auth** : utilisateur/mot de passe intégré, **2FA non natif**
|
|
- **HTTPS** : à configurer via reverse-proxy (Nginx/Traefik)
|
|
- **UPnP** : désactiver sur le routeur
|
|
- **Updates** : fréquentes, suivre les bulletins
|
|
- **Pas de sandbox** : à isoler en VM/hyperviseur
|
|
- **Backup** : exporter la config régulièrement
|
|
|
|
## 📚 Ressources
|
|
- [Site officiel](https://blueirissoftware.com/)
|
|
- [Forum IP Cam Talk](https://ipcamtalk.com/forums/forum/blue-iris/)
|
|
- [Wiki BI](https://github.com/bp2008/blueiris/wiki) — non-officiel
|
|
|
|
## Pages Liées
|
|
- [[cat-nvr]] — Catégorie NVR
|
|
- [[app-frigate]] — Alternative open source
|
|
- [[comparatif-nvr]] — Comparaison NVR
|
|
- [[nvr-windows-vs-linux]] — Contraintes OS
|