diff --git a/.github/PULL_REQUEST_TEMPLATE/release.md b/.github/PULL_REQUEST_TEMPLATE/release.md new file mode 100644 index 00000000..62cec090 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/release.md @@ -0,0 +1,30 @@ +## Summary + + + +### Added + + + +- + +### Fixed + + + +- + +### Changed + + + +- Database: **X,XXX cameras across XX brands** + +## Checklist + +- [ ] `npm run build` passes — all cameras validate +- [ ] `package.json` version bumped (release auto-creates tag + GitHub Release on merge) +- [ ] CHANGELOG.md has a section for this version (used as release notes) +- [ ] README.md stats synced (camera/brand counts, badges, brand table) +- [ ] No fabricated specs — every new camera has a verifiable source URL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8451b4b7..0e7e9a39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,6 +2,7 @@ name: release on: push: + branches: [main] tags: - "v*" @@ -18,25 +19,48 @@ jobs: with: node-version: "20" + - name: Determine version + id: version + run: | + if [[ "${GITHUB_REF}" == refs/tags/v* ]]; then + echo "version=${GITHUB_REF#refs/tags/v}" >> "$GITHUB_OUTPUT" + else + echo "version=$(node -p "require('./package.json').version")" >> "$GITHUB_OUTPUT" + fi + + - name: Skip if release already exists + id: check + env: + GH_TOKEN: ${{ github.token }} + run: | + if gh release view "v${{ steps.version.outputs.version }}" --repo "$GITHUB_REPOSITORY" >/dev/null 2>&1; then + echo "exists=true" >> "$GITHUB_OUTPUT" + echo "Release v${{ steps.version.outputs.version }} already exists — skipping." + else + echo "exists=false" >> "$GITHUB_OUTPUT" + fi + - name: Build dataset + if: steps.check.outputs.exists == 'false' run: node scripts/build.js - - name: Extract version from tag - id: version - run: echo "version=${GITHUB_REF#refs/tags/v}" >> "$GITHUB_OUTPUT" - - name: Extract changelog for this version + if: steps.check.outputs.exists == 'false' id: changelog run: | - # Extract the section for this version from CHANGELOG.md - awk '/^## \['"${{ steps.version.outputs.version }}"'\]/{found=1; next} /^## /{if(found) exit} found' CHANGELOG.md > /tmp/release-notes.md - echo "body<> "$GITHUB_OUTPUT" - cat /tmp/release-notes.md >> "$GITHUB_OUTPUT" - echo "RELEASE_EOF" >> "$GITHUB_OUTPUT" + # Extract the section for this version from CHANGELOG.md (header may be "## [X.Y.Z]" or "## X.Y.Z") + awk '/^## \[?'"${{ steps.version.outputs.version }}"'\]?/{found=1; next} /^## /{if(found) exit} found' CHANGELOG.md > /tmp/release-notes.md + { + echo "body<> "$GITHUB_OUTPUT" - - name: Create GitHub Release + - name: Create GitHub Release (creates tag if missing) + if: steps.check.outputs.exists == 'false' uses: softprops/action-gh-release@v2 with: + tag_name: v${{ steps.version.outputs.version }} name: v${{ steps.version.outputs.version }} body: ${{ steps.changelog.outputs.body }} files: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c862a6a..d40b8b60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,37 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) --- +## [1.5.0] — 2026-06-12 + +### Added + +- **SV3C brand** (13 cameras incl. C25 & C12 verified via Amazon): PoE bullets/domes, WiFi/PoE PTZs, solar dual-lens kit — all specs from official product pages; honest ONVIF notes (C25 and the original B05W have ONVIF, the rest are RTSP-only) +- **Dahua DH-SDT7425-4P-AD3E-PV-i** (issue #11) — CN-market dual-channel panoramic+PTZ with full datasheet specs: 180° stitched 3840x1080 panoramic + 4MP 25x PTZ, starlight 0.001 lux, DC 36V/35W, Smart H.265, 150m IR + white light deterrence. ONVIF autotracking behavior verified via frigate#22135 (Channel 2 has unified VideoEncoder+PTZ profile, unlike SDT4E series) +- **Real video/power specs** for 4 Reolink doorbells and 12 Reolink cameras from official datasheets + +### Fixed + +- **Full Dahua config audit** (109 cameras): 8 panoramic/multi-sensor cameras got stitched-stream aspect-ratio and channel-layout notes, 8 PTZs got ONVIF autotracking instructions, 4 HDCVI analog cameras corrected (were listed as ethernet with invalid protocol — now coax), 2 duplicates removed, 1 misnamed ZAS varifocal variant renamed +- **Full Hikvision config audit** (150 cameras): PanoVu 4-sensor channel layout (101/201/301/401), TandemVu PTZ+bullet dual-camera setup, fisheye dewarp channel notes, 12 PTZs got ONVIF autotracking setup (incl. the enable-Integration-Protocol gotcha), 5 analog cameras corrected from "hdcvi" (Dahua's tech) to Turbo HD (HD-TVI) over coax, 2 miscategorized types fixed (DS-2CD2385G1-I → turret, DS-2CD2443G2-I(W) → box), solar camera got battery-drain warning + +- **Fabricated RTSP/configs removed** from 13 more cameras: Aqara G3/G5 Pro (HomeKit/Matter only), Zebronics, Wyze battery & floodlight cameras (docker-wyze-bridge notes), Yale (cloud-only), ABUS battery model +- **22 duplicate camera files removed**: Axis, Arlo, Dahua, Google Nest, Hikvision, Reolink, Uniview, Tapo, ADT, CP Plus, Somfy duplicates consolidated with markets merged +- **Night vision corrections**: Axis P5655-E (has OptimizedIR), Hikvision DS-2CD2025FWD-I ("-I" suffix = EXIR 30m) +- **9 cameras** missing `power_source` field populated (Arlo, Eufy, Ring) +- **IK vandal ratings** moved out of `ip_rating` field into features (9 cameras) +- **12 cameras** with empty connectivity fixed (4G/WiFi derived from model specs) +- **22 enterprise cameras** had redundant `http` protocol removed +- **15 cameras** with megapixel/resolution mismatches corrected +- **Doorbell detect configs** flipped to portrait for UniFi G4 Doorbell/Pro +- **Cathexis cameras**: RTSP added (ONVIF implies RTSP) +- Thermal Axis cameras: corrected megapixels (0.3MP/0.08MP LWIR sensors) + +### Changed + +- Database now covers **1,314 cameras** across **67 brands** + +--- + ## [1.4.0] — 2026-06-11 ### Added diff --git a/README.md b/README.md index 1218171b..ae101f12 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # CCTV Camera Database -An open, structured database of 1,324 CCTV / IP camera models and their technical specifications, covering 66 brands across every market segment — from budget consumer WiFi cameras to enterprise PTZ domes and thermal imaging systems. Each camera is a validated JSON file, aggregated into a single queryable dataset (JSON + CSV). +An open, structured database of 1,314 CCTV / IP camera models and their technical specifications, covering 67 brands across every market segment — from budget consumer WiFi cameras to enterprise PTZ domes and thermal imaging systems. Each camera is a validated JSON file, aggregated into a single queryable dataset (JSON + CSV). -[![cameras](https://img.shields.io/badge/cameras-1%2C324-blue)](data/cameras.json) -[![brands](https://img.shields.io/badge/brands-66-green)](cameras/) +[![cameras](https://img.shields.io/badge/cameras-1%2C314-blue)](data/cameras.json) +[![brands](https://img.shields.io/badge/brands-67-green)](cameras/) [![license](https://img.shields.io/badge/license-CC0-lightgrey)](LICENSE) --- @@ -27,7 +27,7 @@ Camera spec sheets are scattered across vendor PDFs, retailer pages, and paywall - **Filter** — narrow by brand, camera type, night vision, resolution, or market - **Sort** — click any column header to sort ascending/descending - **Detail drawer** — click a row to slide open the full spec sheet (resolution, connectivity, protocols, storage, audio, pricing, source links) -- **Pagination** — page through all 1,324 cameras, 25 per page +- **Pagination** — page through all 1,314 cameras, 25 per page - **Stats bar** — live counts for total cameras, brands, 4K+, WiFi, and no-subscription models --- @@ -51,15 +51,15 @@ a Claude Code skill for AI-powered video production built on [Remotion](https:// ``` cctv-camera-database/ ├── cameras/ # source of truth — one JSON file per camera, grouped by brand -│ ├── hikvision/ # 139 cameras -│ ├── reolink/ # 133 cameras -│ ├── dahua/ # 101 cameras -│ ├── hanwha/ # 62 cameras -│ ├── axis/ # 58 cameras -│ ├── tapo/ # 56 cameras +│ ├── hikvision/ # 150 cameras +│ ├── reolink/ # 130 cameras +│ ├── dahua/ # 107 cameras +│ ├── hanwha/ # 71 cameras +│ ├── axis/ # 66 cameras +│ ├── tapo/ # 62 cameras │ └── …60 more brands ├── data/ # GENERATED — do not edit by hand -│ ├── cameras.json # all 1,324 cameras as one array +│ ├── cameras.json # all 1,314 cameras as one array │ └── cameras.csv # flattened, spreadsheet-friendly ├── schema/ │ └── camera.schema.json @@ -117,45 +117,45 @@ Or open `data/cameras.csv` in any spreadsheet for a quick browse. | Metric | Count | |--------|-------| -| Total cameras | **1,324** | -| Brands | **66** | +| Total cameras | **1,314** | +| Brands | **67** | | Form factors | 10 (bullet, dome, turret, PTZ, dual-lens, panoramic, covert, box, fisheye, doorbell) | -| PoE wired | 863 | -| WiFi | 427 | -| Battery / wire-free | 130 | -| 4K / 8MP+ | 411 | -| 4–5MP | 588 | -| 1080p–2MP | 296 | +| PoE wired | 856 | +| WiFi | 430 | +| Battery / wire-free | 155 | +| 4K / 8MP+ | 417 | +| 4–5MP | 594 | +| 1080p–2MP | 292 | -### All 66 brands +### All 67 brands | Brand | Cameras | Segment | |-------|---------|---------| -| Hikvision | 151 | Enterprise + consumer, global | -| Reolink | 133 | Prosumer, no-subscription, global | -| Dahua | 111 | Enterprise + consumer, global | +| Hikvision | 150 | Enterprise + consumer, global | +| Reolink | 130 | Prosumer, no-subscription, global | +| Dahua | 107 | Enterprise + consumer, global | | Hanwha | 71 | Enterprise AI, Korea/global | -| Axis | 68 | Enterprise premium, global | -| Tapo (TP-Link) | 64 | Consumer budget, global | +| Axis | 66 | Enterprise premium, global | +| Tapo (TP-Link) | 62 | Consumer budget, global | | Eufy (Anker) | 36 | Consumer no-subscription, global | -| Arlo | 31 | Consumer premium wire-free, global | -| Ring (Amazon) | 30 | Consumer ecosystem, US/EU/AU | +| Arlo | 29 | Consumer premium wire-free, global | +| Ring (Amazon) | 25 | Consumer ecosystem, US/EU/AU | | Avigilon | 24 | Enterprise NDAA, US/CA | | Amcrest | 24 | Prosumer, US | | Ubiquiti UniFi | 26 | Prosumer/SMB, US/global | | Annke | 23 | Prosumer, global | -| Google Nest | 23 | Consumer smart home, global | +| Google Nest | 19 | Consumer smart home, global | | Bosch | 22 | Enterprise, EU/global | | EZVIZ (Hikvision) | 21 | Consumer, global | | Lorex | 21 | Consumer NVR systems, CA/US | | HiLook (Hikvision) | 20 | Budget installer, EU/UK/AU | | Lupus Electronics | 20 | Privacy-first, DE/AT/CH | | Tiandy | 20 | Enterprise + prosumer, CN/ME/Africa | -| Uniview | 17 | Enterprise NDAA, global | +| Uniview | 15 | Enterprise NDAA, global | | Blink (Amazon) | 16 | Budget battery, US/UK/EU | | Swann | 16 | Consumer, AU/US/UK | | ABUS | 15 | Consumer/SMB GDPR-first, DE/AT/CH | -| CP Plus | 15 | India #2 brand, IN | +| CP Plus | 14 | India #2 brand, IN | | GeoVision | 15 | Enterprise, TW/Asia/global | | IMOU (Dahua) | 15 | Consumer, global | | Milesight | 15 | Prosumer/Enterprise IoT, global | @@ -166,6 +166,7 @@ Or open `data/cameras.csv` in any spreadsheet for a quick browse. | FLIR (Teledyne) | 12 | Thermal imaging, NA/EU | | Kedacom | 12 | Enterprise, CN/global | | Sunell | 12 | Prosumer/Enterprise, CN/global | +| SV3C | 13 | Budget consumer, CN/US | | Synology | 12 | NAS-native cameras, global | | TVT Digital | 12 | Prosumer budget, CN/IN/SE Asia | | Hi-Focus | 10 | Made-in-India, BIS certified, IN | @@ -180,10 +181,10 @@ Or open `data/cameras.csv` in any spreadsheet for a quick browse. | March Networks | 6 | Enterprise retail/banking, NA | | Netatmo | 6 | Privacy-first no-subscription, EU | | Secureye | 6 | Budget consumer, IN | -| ADT | 5 | Monitored security, US | +| ADT | 4 | Monitored security, US | | Hive (British Gas) | 5 | Consumer smart home, UK | | KBvision | 5 | Budget installer, VN | -| Somfy | 5 | Smart home, FR/EU | +| Somfy | 3 | Smart home, FR/EU | | Godrej | 4 | Consumer, IN | | Honeywell | 4 | Enterprise, US/IN | | Qubo (Hero) | 4 | Consumer IoT, IN | diff --git a/cameras/abus/ppic90520.json b/cameras/abus/ppic90520.json index 100b3ced..0aafa9fc 100644 --- a/cameras/abus/ppic90520.json +++ b/cameras/abus/ppic90520.json @@ -43,9 +43,7 @@ "nvr_compatible": false, "cloud": false }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -72,22 +70,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" - }, "home_assistant": { "integration": "onvif", - "notes": "Use ONVIF integration." - }, - "blue_iris": { - "profile": "Hikvision", - "notes": "Select 'Hikvision' profile. Most ABUS IP cameras use Hikvision protocol." + "notes": "Battery/solar ABUS camera. RTSP/ONVIF support unconfirmed for this battery model. May be app-only." } } } diff --git a/cameras/abus/ppic90520.md b/cameras/abus/ppic90520.md index e309cc73..2deacf68 100644 --- a/cameras/abus/ppic90520.md +++ b/cameras/abus/ppic90520.md @@ -15,7 +15,6 @@ | Night vision | ir (8m) | | Power | Rechargeable battery / optional solar panel (PPIC90650) | | Storage | microSD ≤ 128GB | -| Protocols | rtsp | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2023 | diff --git a/cameras/abus/tvip61600.json b/cameras/abus/tvip61600.json index d80e5c54..6e60f6ff 100644 --- a/cameras/abus/tvip61600.json +++ b/cameras/abus/tvip61600.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "ABUS 1080p 12x PTZ outdoor", "50m IR", "H.265", diff --git a/cameras/abus/tvip61600.md b/cameras/abus/tvip61600.md index 33712896..ea684d53 100644 --- a/cameras/abus/tvip61600.md +++ b/cameras/abus/tvip61600.md @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - ABUS 1080p 12x PTZ outdoor - 50m IR - H.265 diff --git a/cameras/acti/kcm-5611.json b/cameras/acti/kcm-5611.json index cdf561c9..73d7e88a 100644 --- a/cameras/acti/kcm-5611.json +++ b/cameras/acti/kcm-5611.json @@ -74,5 +74,6 @@ "profile": "ACTi", "notes": "Select 'ACTi' profile. Default RTSP port is 7070." } - } + }, + "status": "discontinued" } diff --git a/cameras/acti/q416.json b/cameras/acti/q416.json index c02c2be7..6c500c37 100644 --- a/cameras/acti/q416.json +++ b/cameras/acti/q416.json @@ -10,7 +10,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "lens": { diff --git a/cameras/acti/q416.md b/cameras/acti/q416.md index a0314395..7822de14 100644 --- a/cameras/acti/q416.md +++ b/cameras/acti/q416.md @@ -6,7 +6,7 @@ | Model | Q416 | | Type | fisheye | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/1.7" CMOS | | Lens | 1× 1.65 (fisheye)mm | | Field of view | 180 horizontal° | diff --git a/cameras/adt/command-indoor-cam.json b/cameras/adt/command-indoor-cam.json index af648d4c..03cccf64 100644 --- a/cameras/adt/command-indoor-cam.json +++ b/cameras/adt/command-indoor-cam.json @@ -57,5 +57,8 @@ ], "power_source": [ "usb" + ], + "markets": [ + "US" ] } diff --git a/cameras/adt/indoor-cam-v2.json b/cameras/adt/indoor-cam-v2.json deleted file mode 100644 index e899f559..00000000 --- a/cameras/adt/indoor-cam-v2.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "id": "adt-indoor-cam-v2", - "brand": "ADT", - "model": "ADT+ Indoor Camera", - "type": "dome", - "connectivity": [ - "wifi" - ], - "release_year": 2023, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "120h", - "night_vision": { - "type": "ir", - "range_m": 5 - }, - "power": { - "method": "DC 5V USB-C" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP20", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "ADT+ 1080p indoor WiFi camera", - "person detection", - "two-way audio", - "ADT professional monitoring integration", - "Google Home" - ], - "sources": [ - "https://www.adt.com/" - ], - "markets": [ - "US" - ], - "power_source": [ - "usb" - ] -} diff --git a/cameras/adt/indoor-cam-v2.md b/cameras/adt/indoor-cam-v2.md deleted file mode 100644 index 089e80c0..00000000 --- a/cameras/adt/indoor-cam-v2.md +++ /dev/null @@ -1,31 +0,0 @@ -# ADT ADT+ Indoor Camera - -| Field | Spec | -|-------|------| -| Brand | ADT | -| Model | ADT+ Indoor Camera | -| Type | dome | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 120h° | -| Night vision | ir (5m) | -| Power | DC 5V USB-C | -| Protocols | http | -| IP rating | IP20 | -| Two-way audio | Yes | -| Released | 2023 | - -## Features - -- ADT+ 1080p indoor WiFi camera -- person detection -- two-way audio -- ADT professional monitoring integration -- Google Home - -## Sources - -- https://www.adt.com/ - ---- -*Auto-generated from adt-indoor-cam-v2.json — do not edit by hand.* diff --git a/cameras/amcrest/ip8m-2837ew.json b/cameras/amcrest/ip8m-2837ew.json index 35ae2fc5..ffd7ea34 100644 --- a/cameras/amcrest/ip8m-2837ew.json +++ b/cameras/amcrest/ip8m-2837ew.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Amcrest 4K 25x PTZ PoE outdoor", "100m IR", "AI auto-tracking", diff --git a/cameras/amcrest/ip8m-2837ew.md b/cameras/amcrest/ip8m-2837ew.md index aa4458c5..08fd7eb1 100644 --- a/cameras/amcrest/ip8m-2837ew.md +++ b/cameras/amcrest/ip8m-2837ew.md @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - Amcrest 4K 25x PTZ PoE outdoor - 100m IR - AI auto-tracking diff --git a/cameras/annke/c1200.json b/cameras/annke/c1200.json index fcdb5ea9..20b09f24 100644 --- a/cameras/annke/c1200.json +++ b/cameras/annke/c1200.json @@ -14,7 +14,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "lens": { diff --git a/cameras/annke/c1200.md b/cameras/annke/c1200.md index a6bf86ce..b72edb5a 100644 --- a/cameras/annke/c1200.md +++ b/cameras/annke/c1200.md @@ -8,7 +8,7 @@ | Model | C1200 | | Type | turret | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/1.7" CMOS | | Lens | 1× 2.8 (fixed)mm | | Night vision | ir (30m) | diff --git a/cameras/aqara/camera-hub-g3.json b/cameras/aqara/camera-hub-g3.json index bf0e2022..949a30b4 100644 --- a/cameras/aqara/camera-hub-g3.json +++ b/cameras/aqara/camera-hub-g3.json @@ -40,9 +40,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -54,7 +52,6 @@ "Zigbee 3.0 hub built-in", "on-device AI face/person", "IR remote emitter", - "RTSP Home Assistant", "Alexa / Google", "Matter compatible" ], @@ -66,21 +63,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit Secure Video only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } } diff --git a/cameras/aqara/camera-hub-g3.md b/cameras/aqara/camera-hub-g3.md index 04eb5436..b5e18fd3 100644 --- a/cameras/aqara/camera-hub-g3.md +++ b/cameras/aqara/camera-hub-g3.md @@ -13,7 +13,6 @@ | Night vision | ir (10m) | | Power | DC 5V (USB-C) | | Storage | NVR | -| Protocols | rtsp | | IP rating | IP20 | | Two-way audio | Yes | | Released | 2021 | @@ -24,7 +23,6 @@ - Zigbee 3.0 hub built-in - on-device AI face/person - IR remote emitter -- RTSP Home Assistant - Alexa / Google - Matter compatible diff --git a/cameras/aqara/camera-hub-g5-pro-ch.json b/cameras/aqara/camera-hub-g5-pro-ch.json index 1705c6cc..8863544a 100644 --- a/cameras/aqara/camera-hub-g5-pro-ch.json +++ b/cameras/aqara/camera-hub-g5-pro-ch.json @@ -43,10 +43,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp", - "onvif" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -58,7 +55,6 @@ "Zigbee 3.0 + Thread Border Router + Matter Controller (smart home hub)", "HomeKit Secure Video (E2E encrypted)", "Alexa / Google / SmartThings", - "RTSP local streaming (Home Assistant)", "on-device AI (face/vehicle/pet/audio)", "eMMC + iCloud + NAS/SMB backup", "PoE or WiFi versions", @@ -72,25 +68,12 @@ "https://www.digitec.ch/" ], "power_source": [ - "poe", "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit/Matter only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } } diff --git a/cameras/aqara/camera-hub-g5-pro-ch.md b/cameras/aqara/camera-hub-g5-pro-ch.md index 01dd63f6..561aa645 100644 --- a/cameras/aqara/camera-hub-g5-pro-ch.md +++ b/cameras/aqara/camera-hub-g5-pro-ch.md @@ -15,7 +15,6 @@ | Night vision | color (15m) | | Power | PoE (802.3af) / DC 5V WiFi version | | Storage | NVR | -| Protocols | rtsp, onvif | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2025 | @@ -26,7 +25,6 @@ - Zigbee 3.0 + Thread Border Router + Matter Controller (smart home hub) - HomeKit Secure Video (E2E encrypted) - Alexa / Google / SmartThings -- RTSP local streaming (Home Assistant) - on-device AI (face/vehicle/pet/audio) - eMMC + iCloud + NAS/SMB backup - PoE or WiFi versions diff --git a/cameras/aqara/camera-hub-g5-pro.json b/cameras/aqara/camera-hub-g5-pro.json index 79bf7131..94b0c86d 100644 --- a/cameras/aqara/camera-hub-g5-pro.json +++ b/cameras/aqara/camera-hub-g5-pro.json @@ -44,10 +44,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp", - "onvif" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -59,7 +56,6 @@ "multi-protocol smart home hub (Zigbee 3.0 + Thread + Matter Controller + Aqara Zigbee hub)", "HomeKit Secure Video (end-to-end encrypted)", "Alexa / Google Home / SmartThings", - "RTSP local streaming (Home Assistant)", "on-device AI: face/vehicle/pet/package + audio (alarm/baby cry)", "eMMC + iCloud + NAS/SMB backup", "first shown IFA 2024 Berlin", @@ -70,25 +66,12 @@ "https://eu.aqara.com/en-eu/products/aqara-camera-hub-g5-pro" ], "power_source": [ - "poe", "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit/Matter only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } } diff --git a/cameras/aqara/camera-hub-g5-pro.md b/cameras/aqara/camera-hub-g5-pro.md index c699498e..de0a6031 100644 --- a/cameras/aqara/camera-hub-g5-pro.md +++ b/cameras/aqara/camera-hub-g5-pro.md @@ -15,7 +15,6 @@ | Night vision | color (15m) | | Power | PoE (802.3af) / DC 5V WiFi version | | Storage | NVR | -| Protocols | rtsp, onvif | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2025 | @@ -26,7 +25,6 @@ - multi-protocol smart home hub (Zigbee 3.0 + Thread + Matter Controller + Aqara Zigbee hub) - HomeKit Secure Video (end-to-end encrypted) - Alexa / Google Home / SmartThings -- RTSP local streaming (Home Assistant) - on-device AI: face/vehicle/pet/package + audio (alarm/baby cry) - eMMC + iCloud + NAS/SMB backup - first shown IFA 2024 Berlin diff --git a/cameras/arlo/essential-indoor-1st-gen.json b/cameras/arlo/essential-indoor-1st-gen.json index f0513b08..8d00fe30 100644 --- a/cameras/arlo/essential-indoor-1st-gen.json +++ b/cameras/arlo/essential-indoor-1st-gen.json @@ -54,5 +54,8 @@ "msrp_usd": 99.99, "sources": [ "https://us.arlo.com/products/arlo-essential-indoor-camera" + ], + "power_source": [ + "dc" ] } diff --git a/cameras/arlo/pro-5s-2k.json b/cameras/arlo/pro-5s-2k.json deleted file mode 100644 index 282558e3..00000000 --- a/cameras/arlo/pro-5s-2k.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "id": "arlo-ultra-2", - "brand": "Arlo", - "model": "Ultra 2 Spotlight", - "aliases": [ - "VMC5040", - "XL VMC5040B" - ], - "type": "dome", - "connectivity": [ - "wifi" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "180 diagonal", - "night_vision": { - "type": "color", - "range_m": 10 - }, - "power": { - "method": "Rechargeable removable battery / solar panel optional" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "4K UHD", - "180deg HDR", - "integrated spotlight", - "color night vision", - "auto-zoom and tracking", - "noise-cancelling two-way audio", - "Apple HomeKit / Google / Alexa", - "Arlo Secure plan for cloud storage" - ], - "release_year": 2021, - "msrp_usd": 299.99, - "sources": [ - "https://www.arlo.com/cameras/ultra/arlo-ultra-2.html" - ], - "power_source": [ - "battery", - "solar" - ] -} diff --git a/cameras/arlo/pro-5s-2k.md b/cameras/arlo/pro-5s-2k.md deleted file mode 100644 index c7f41f32..00000000 --- a/cameras/arlo/pro-5s-2k.md +++ /dev/null @@ -1,37 +0,0 @@ -# Arlo Ultra 2 Spotlight - -*Also known as: VMC5040, XL VMC5040B* - -| Field | Spec | -|-------|------| -| Brand | Arlo | -| Model | Ultra 2 Spotlight | -| Type | dome | -| Connectivity | wifi | -| Resolution | 4K UHD (8MP, 3840×2160) | -| Lens | 1× | -| Field of view | 180 diagonal° | -| Night vision | color (10m) | -| Power | Rechargeable removable battery / solar panel optional | -| Protocols | http | -| IP rating | IP65 | -| Two-way audio | Yes | -| Released | 2021 | - -## Features - -- 4K UHD -- 180deg HDR -- integrated spotlight -- color night vision -- auto-zoom and tracking -- noise-cancelling two-way audio -- Apple HomeKit / Google / Alexa -- Arlo Secure plan for cloud storage - -## Sources - -- https://www.arlo.com/cameras/ultra/arlo-ultra-2.html - ---- -*Auto-generated from arlo-ultra-2.json — do not edit by hand.* diff --git a/cameras/arlo/pro-5s-spotlight.json b/cameras/arlo/pro-5s-spotlight.json deleted file mode 100644 index 585d5cf8..00000000 --- a/cameras/arlo/pro-5s-spotlight.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "id": "arlo-pro-5s-spotlight", - "brand": "Arlo", - "model": "Pro 5S 2K Spotlight", - "aliases": [ - "VMC4060P" - ], - "release_year": 2024, - "type": "dome", - "connectivity": [ - "wifi" - ], - "resolution": { - "megapixels": 4, - "max_width": 2560, - "max_height": 1440, - "label": "2K QHD" - }, - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "160 diagonal", - "night_vision": { - "type": "color", - "range_m": 7 - }, - "power": { - "method": "Rechargeable removable battery / solar panel optional / USB-C" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "2K QHD + HDR", - "integrated spotlight", - "color night vision", - "person/vehicle/animal/package detection", - "dual-band WiFi direct (no hub required)", - "Apple HomeKit / Google / Alexa", - "Arlo Secure plan for cloud" - ], - "msrp_usd": 179.99, - "sources": [ - "https://www.arlo.com/cameras/pro/arlo-pro-5.html" - ], - "power_source": [ - "battery", - "solar", - "usb" - ] -} diff --git a/cameras/arlo/pro-5s-spotlight.md b/cameras/arlo/pro-5s-spotlight.md deleted file mode 100644 index 9b4da828..00000000 --- a/cameras/arlo/pro-5s-spotlight.md +++ /dev/null @@ -1,36 +0,0 @@ -# Arlo Pro 5S 2K Spotlight - -*Also known as: VMC4060P* - -| Field | Spec | -|-------|------| -| Brand | Arlo | -| Model | Pro 5S 2K Spotlight | -| Type | dome | -| Connectivity | wifi | -| Resolution | 2K QHD (4MP, 2560×1440) | -| Lens | 1× | -| Field of view | 160 diagonal° | -| Night vision | color (7m) | -| Power | Rechargeable removable battery / solar panel optional / USB-C | -| Protocols | http | -| IP rating | IP65 | -| Two-way audio | Yes | -| Released | 2024 | - -## Features - -- 2K QHD + HDR -- integrated spotlight -- color night vision -- person/vehicle/animal/package detection -- dual-band WiFi direct (no hub required) -- Apple HomeKit / Google / Alexa -- Arlo Secure plan for cloud - -## Sources - -- https://www.arlo.com/cameras/pro/arlo-pro-5.html - ---- -*Auto-generated from arlo-pro-5s-spotlight.json — do not edit by hand.* diff --git a/cameras/arlo/pro-5s.json b/cameras/arlo/pro-5s.json index 8dba85c7..a13898e2 100644 --- a/cameras/arlo/pro-5s.json +++ b/cameras/arlo/pro-5s.json @@ -3,7 +3,8 @@ "brand": "Arlo", "model": "Pro 5S 2K Spotlight", "aliases": [ - "VMC4460P" + "VMC4460P", + "arlo-pro-5s-spotlight" ], "type": "bullet", "connectivity": [ diff --git a/cameras/arlo/pro-5s.md b/cameras/arlo/pro-5s.md index 9113c154..0c51011a 100644 --- a/cameras/arlo/pro-5s.md +++ b/cameras/arlo/pro-5s.md @@ -1,6 +1,6 @@ # Arlo Pro 5S 2K Spotlight -*Also known as: VMC4460P* +*Also known as: VMC4460P, arlo-pro-5s-spotlight* | Field | Spec | |-------|------| diff --git a/cameras/arlo/ultra-2-spotlight.json b/cameras/arlo/ultra-2-spotlight.json index 9ebc3e79..1c934285 100644 --- a/cameras/arlo/ultra-2-spotlight.json +++ b/cameras/arlo/ultra-2-spotlight.json @@ -3,7 +3,8 @@ "brand": "Arlo", "model": "Ultra 2 Spotlight", "aliases": [ - "Arlo Ultra 2 4K Spotlight Camera" + "Arlo Ultra 2 4K Spotlight Camera", + "arlo-ultra-2" ], "type": "dome", "connectivity": [ diff --git a/cameras/arlo/ultra-2-spotlight.md b/cameras/arlo/ultra-2-spotlight.md index 1fd0fc60..c6654bc4 100644 --- a/cameras/arlo/ultra-2-spotlight.md +++ b/cameras/arlo/ultra-2-spotlight.md @@ -1,6 +1,6 @@ # Arlo Ultra 2 Spotlight -*Also known as: Arlo Ultra 2 4K Spotlight Camera* +*Also known as: Arlo Ultra 2 4K Spotlight Camera, arlo-ultra-2* | Field | Spec | |-------|------| diff --git a/cameras/axis/m2025-le.json b/cameras/axis/m2025-le.json index 6a70a6d6..63cf4a3d 100644 --- a/cameras/axis/m2025-le.json +++ b/cameras/axis/m2025-le.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/m2025-le.md b/cameras/axis/m2025-le.md index 52fad7fb..455c6259 100644 --- a/cameras/axis/m2025-le.md +++ b/cameras/axis/m2025-le.md @@ -13,7 +13,7 @@ | Night vision | ir (40m) | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/m2035-le.json b/cameras/axis/m2035-le.json index 448380a7..5f3125df 100644 --- a/cameras/axis/m2035-le.json +++ b/cameras/axis/m2035-le.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/m2035-le.md b/cameras/axis/m2035-le.md index 456f9e5e..c1b53c26 100644 --- a/cameras/axis/m2035-le.md +++ b/cameras/axis/m2035-le.md @@ -13,7 +13,7 @@ | Night vision | ir (50m) | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/m3106-l-mk-ii.json b/cameras/axis/m3106-l-mk-ii.json index bfb670b7..bac17ca1 100644 --- a/cameras/axis/m3106-l-mk-ii.json +++ b/cameras/axis/m3106-l-mk-ii.json @@ -40,7 +40,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK08", "audio": { "microphone": true, "speaker": false, diff --git a/cameras/axis/m3106-l-mk-ii.md b/cameras/axis/m3106-l-mk-ii.md index 6cd6cc9b..284364d1 100644 --- a/cameras/axis/m3106-l-mk-ii.md +++ b/cameras/axis/m3106-l-mk-ii.md @@ -16,7 +16,6 @@ | Power | PoE (802.3af) | | Storage | NVR | | Protocols | onvif, rtsp | -| IP rating | IK08 | | Two-way audio | No | | Released | 2019 | diff --git a/cameras/axis/m3106-l-mkii.json b/cameras/axis/m3106-l-mkii.json deleted file mode 100644 index 39e8fe52..00000000 --- a/cameras/axis/m3106-l-mkii.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "id": "axis-m3106-l-mkii", - "brand": "Axis", - "model": "M3106-L Mk II", - "aliases": [ - "0890-001" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/3\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "3 (fixed)", - "aperture": "F1.8", - "varifocal": false - }, - "field_of_view_deg": "108 horizontal", - "night_vision": { - "type": "ir", - "range_m": 10 - }, - "power": { - "method": "PoE (802.3af)" - }, - "storage": { - "onboard": true, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp", - "http" - ], - "ip_rating": "IP42", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Lightfinder", - "HDTV 1080p at 30fps", - "ARTPEC-6 SoC", - "corridor format", - "WDR", - "indoor use", - "compact dome" - ], - "sources": [ - "https://www.axis.com/products/axis-m3106-l-mk-ii" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=1920x1080", - "best_substream": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=640x480" - }, - "home_assistant": { - "integration": "axis", - "notes": "Native Axis integration with auto-discovery via Zeroconf." - }, - "blue_iris": { - "profile": "Axis", - "notes": "Select 'Axis' profile. Auto-discovery via ONVIF usually works." - } - } -} diff --git a/cameras/axis/m3106-l-mkii.md b/cameras/axis/m3106-l-mkii.md deleted file mode 100644 index b71d3ef6..00000000 --- a/cameras/axis/m3106-l-mkii.md +++ /dev/null @@ -1,37 +0,0 @@ -# Axis M3106-L Mk II - -*Also known as: 0890-001* - -| Field | Spec | -|-------|------| -| Brand | Axis | -| Model | M3106-L Mk II | -| Type | dome | -| Connectivity | ethernet | -| Resolution | 4MP (4MP, 2688×1520) | -| Sensor | 1/3" Progressive Scan CMOS | -| Lens | 1× 3 (fixed)mm F1.8 | -| Field of view | 108 horizontal° | -| Night vision | ir (10m) | -| Power | PoE (802.3af) | -| Storage | NVR | -| Protocols | onvif, rtsp, http | -| IP rating | IP42 | -| Two-way audio | No | - -## Features - -- Lightfinder -- HDTV 1080p at 30fps -- ARTPEC-6 SoC -- corridor format -- WDR -- indoor use -- compact dome - -## Sources - -- https://www.axis.com/products/axis-m3106-l-mk-ii - ---- -*Auto-generated from axis-m3106-l-mkii.json — do not edit by hand.* diff --git a/cameras/axis/m3106-lve.json b/cameras/axis/m3106-lve.json deleted file mode 100644 index 0ea8f157..00000000 --- a/cameras/axis/m3106-lve.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "id": "axis-m3106-lve", - "brand": "Axis", - "model": "M3106-LVE Mk II", - "aliases": [ - "0890-001" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/3\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "3-9 (varifocal)", - "aperture": "F1.6", - "varifocal": true - }, - "field_of_view_deg": "100-35 horizontal", - "night_vision": { - "type": "ir", - "range_m": 15 - }, - "power": { - "method": "PoE (802.3af)" - }, - "storage": { - "onboard": true, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Lightfinder", - "HDTV 4MP", - "corridor format", - "Zipstream", - "WDR", - "IK10" - ], - "sources": [ - "https://www.axis.com/products/axis-m3106-lve-mk-ii" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=1920x1080", - "best_substream": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=640x480" - }, - "home_assistant": { - "integration": "axis", - "notes": "Native Axis integration with auto-discovery via Zeroconf." - }, - "blue_iris": { - "profile": "Axis", - "notes": "Select 'Axis' profile. Auto-discovery via ONVIF usually works." - } - } -} diff --git a/cameras/axis/m3106-lve.md b/cameras/axis/m3106-lve.md deleted file mode 100644 index 9c84c01d..00000000 --- a/cameras/axis/m3106-lve.md +++ /dev/null @@ -1,36 +0,0 @@ -# Axis M3106-LVE Mk II - -*Also known as: 0890-001* - -| Field | Spec | -|-------|------| -| Brand | Axis | -| Model | M3106-LVE Mk II | -| Type | dome | -| Connectivity | ethernet | -| Resolution | 4MP (4MP, 2688×1520) | -| Sensor | 1/3" Progressive Scan CMOS | -| Lens | 1× 3-9 (varifocal)mm F1.6 | -| Field of view | 100-35 horizontal° | -| Night vision | ir (15m) | -| Power | PoE (802.3af) | -| Storage | NVR | -| Protocols | onvif, rtsp | -| IP rating | IP66 | -| Two-way audio | No | - -## Features - -- Lightfinder -- HDTV 4MP -- corridor format -- Zipstream -- WDR -- IK10 - -## Sources - -- https://www.axis.com/products/axis-m3106-lve-mk-ii - ---- -*Auto-generated from axis-m3106-lve.json — do not edit by hand.* diff --git a/cameras/axis/m3115-lve.json b/cameras/axis/m3115-lve.json index b937b996..326d99af 100644 --- a/cameras/axis/m3115-lve.json +++ b/cameras/axis/m3115-lve.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/m3115-lve.md b/cameras/axis/m3115-lve.md index 6c507b0f..8e6f57f2 100644 --- a/cameras/axis/m3115-lve.md +++ b/cameras/axis/m3115-lve.md @@ -13,7 +13,7 @@ | Night vision | ir (15m) | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/m3116-lve.json b/cameras/axis/m3116-lve.json index f1aedcbb..bdd8f66a 100644 --- a/cameras/axis/m3116-lve.json +++ b/cameras/axis/m3116-lve.json @@ -10,7 +10,7 @@ "megapixels": 12, "max_width": 3584, "max_height": 2688, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/m3116-lve.md b/cameras/axis/m3116-lve.md index f0db1ccd..1f43a41c 100644 --- a/cameras/axis/m3116-lve.md +++ b/cameras/axis/m3116-lve.md @@ -6,14 +6,14 @@ | Model | M3116-LVE | | Type | dome | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 3584×2688) | +| Resolution | 12MP UHD (12MP, 3584×2688) | | Sensor | 1/1.7" Progressive Scan CMOS | | Lens | 1× 1.3 (fixed wide)mm F2.4 | | Field of view | 183 horizontal (fisheye-corrected)° | | Night vision | ir (10m) | | Power | High PoE (802.3at) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/m5076.json b/cameras/axis/m5076.json index ccf67e35..c580614c 100644 --- a/cameras/axis/m5076.json +++ b/cameras/axis/m5076.json @@ -37,8 +37,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP31", "audio": { diff --git a/cameras/axis/m5076.md b/cameras/axis/m5076.md index 54e74a6f..4e44ba1b 100644 --- a/cameras/axis/m5076.md +++ b/cameras/axis/m5076.md @@ -15,7 +15,7 @@ | Night vision | none | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP31 | | Two-way audio | Yes | diff --git a/cameras/axis/p1448-le.json b/cameras/axis/p1448-le.json index cbc98255..5b34271b 100644 --- a/cameras/axis/p1448-le.json +++ b/cameras/axis/p1448-le.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/p1448-le.md b/cameras/axis/p1448-le.md index b671afb6..4400e330 100644 --- a/cameras/axis/p1448-le.md +++ b/cameras/axis/p1448-le.md @@ -13,7 +13,7 @@ | Night vision | ir (40m) | | Power | High PoE (802.3at) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/p3245-lve.json b/cameras/axis/p3245-lve.json index 411576d9..dce5bc38 100644 --- a/cameras/axis/p3245-lve.json +++ b/cameras/axis/p3245-lve.json @@ -37,8 +37,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/p3245-lve.md b/cameras/axis/p3245-lve.md index 3b298c7c..269a0496 100644 --- a/cameras/axis/p3245-lve.md +++ b/cameras/axis/p3245-lve.md @@ -15,7 +15,7 @@ | Night vision | ir (30m) | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | Yes | diff --git a/cameras/axis/p3245-v.json b/cameras/axis/p3245-v.json index 8cc49c84..1b730d64 100644 --- a/cameras/axis/p3245-v.json +++ b/cameras/axis/p3245-v.json @@ -37,8 +37,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP42", "audio": { diff --git a/cameras/axis/p3245-v.md b/cameras/axis/p3245-v.md index 1421da73..7b340c78 100644 --- a/cameras/axis/p3245-v.md +++ b/cameras/axis/p3245-v.md @@ -15,7 +15,7 @@ | Night vision | ir (20m) | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP42 | | Two-way audio | Yes | diff --git a/cameras/axis/p3265-lve.json b/cameras/axis/p3265-lve.json index 745a2173..404d5274 100644 --- a/cameras/axis/p3265-lve.json +++ b/cameras/axis/p3265-lve.json @@ -38,8 +38,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/p3265-lve.md b/cameras/axis/p3265-lve.md index 8c63b69d..7ddcbd8f 100644 --- a/cameras/axis/p3265-lve.md +++ b/cameras/axis/p3265-lve.md @@ -15,7 +15,7 @@ | Night vision | ir (40m) | | Power | PoE (IEEE 802.3af / 802.3at Type 1 Class 3) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | Yes | diff --git a/cameras/axis/p3727-ple.json b/cameras/axis/p3727-ple.json index 91c067cb..bb9180a5 100644 --- a/cameras/axis/p3727-ple.json +++ b/cameras/axis/p3727-ple.json @@ -11,7 +11,7 @@ "ethernet" ], "resolution": { - "megapixels": 8, + "megapixels": 24.0, "max_width": 8000, "max_height": 3000, "label": "4x2MP multisensor" diff --git a/cameras/axis/p3727-ple.md b/cameras/axis/p3727-ple.md index f34d1497..5b76fde5 100644 --- a/cameras/axis/p3727-ple.md +++ b/cameras/axis/p3727-ple.md @@ -8,7 +8,7 @@ | Model | P3727-PLE | | Type | panoramic | | Connectivity | ethernet | -| Resolution | 4x2MP multisensor (8MP, 8000×3000) | +| Resolution | 4x2MP multisensor (24MP, 8000×3000) | | Sensor | 4x 1/2.8" Progressive Scan CMOS | | Lens | 4× 3-9 (varifocal per head)mm F1.8 | | Field of view | 360 (wall/ceiling mount)° | diff --git a/cameras/axis/p5655-e.json b/cameras/axis/p5655-e.json index 2354d6ab..ef02938b 100644 --- a/cameras/axis/p5655-e.json +++ b/cameras/axis/p5655-e.json @@ -13,8 +13,7 @@ }, "field_of_view_deg": "55-1.7h", "night_vision": { - "type": "none", - "range_m": 0 + "type": "ir" }, "power": { "method": "PoE (802.3bt)" @@ -36,6 +35,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Axis P5655-E 32x outdoor PTZ", "OptimizedIR", "Lightfinder 2.0", diff --git a/cameras/axis/p5655-e.md b/cameras/axis/p5655-e.md index dcbb1eb0..935a455a 100644 --- a/cameras/axis/p5655-e.md +++ b/cameras/axis/p5655-e.md @@ -9,7 +9,7 @@ | Resolution | 1080p HD (2MP) | | Lens | 1× 4.25-136 (32x optical)mm | | Field of view | 55-1.7h° | -| Night vision | none | +| Night vision | ir | | Power | PoE (802.3bt) | | Storage | microSD ≤ 256GB, NVR | | Protocols | onvif, rtsp | @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - Axis P5655-E 32x outdoor PTZ - OptimizedIR - Lightfinder 2.0 diff --git a/cameras/axis/q1656.json b/cameras/axis/q1656.json index 6398e93b..ed3132c1 100644 --- a/cameras/axis/q1656.json +++ b/cameras/axis/q1656.json @@ -31,8 +31,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP42", "audio": { diff --git a/cameras/axis/q1656.md b/cameras/axis/q1656.md index e58b1f59..f9813387 100644 --- a/cameras/axis/q1656.md +++ b/cameras/axis/q1656.md @@ -11,7 +11,7 @@ | Night vision | none | | Power | High PoE (802.3at) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP42 | | Two-way audio | No | diff --git a/cameras/axis/q1785-le.json b/cameras/axis/q1785-le.json index 52a18085..1eb2906a 100644 --- a/cameras/axis/q1785-le.json +++ b/cameras/axis/q1785-le.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/q1785-le.md b/cameras/axis/q1785-le.md index 5282275e..107a8905 100644 --- a/cameras/axis/q1785-le.md +++ b/cameras/axis/q1785-le.md @@ -13,7 +13,7 @@ | Night vision | ir (100m) | | Power | High PoE (802.3at) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/q1942-e.json b/cameras/axis/q1942-e.json index cc25d167..c49d1522 100644 --- a/cameras/axis/q1942-e.json +++ b/cameras/axis/q1942-e.json @@ -10,7 +10,7 @@ "ethernet" ], "resolution": { - "megapixels": 0, + "megapixels": 0.3, "max_width": 640, "max_height": 480, "label": "640x480 thermal" diff --git a/cameras/axis/q1942-e.md b/cameras/axis/q1942-e.md index 1f7fcf60..bf7b6cdd 100644 --- a/cameras/axis/q1942-e.md +++ b/cameras/axis/q1942-e.md @@ -8,7 +8,7 @@ | Model | Q1942-E | | Type | bullet | | Connectivity | ethernet | -| Resolution | 640x480 thermal (0MP, 640×480) | +| Resolution | 640x480 thermal (0.3MP, 640×480) | | Sensor | Thermal VOx LWIR uncooled microbolometer | | Lens | 1× 7 / 10 / 13 / 19 / 35 (fixed options)mm | | Night vision | none | diff --git a/cameras/axis/q2101-e.json b/cameras/axis/q2101-e.json index 26c5ba70..f10d853d 100644 --- a/cameras/axis/q2101-e.json +++ b/cameras/axis/q2101-e.json @@ -8,7 +8,7 @@ ], "release_year": 2021, "resolution": { - "megapixels": 0, + "megapixels": 0.08, "max_width": 384, "max_height": 288, "label": "384×288 thermal" diff --git a/cameras/axis/q2101-e.md b/cameras/axis/q2101-e.md index a332e44b..9da1c3de 100644 --- a/cameras/axis/q2101-e.md +++ b/cameras/axis/q2101-e.md @@ -6,7 +6,7 @@ | Model | Q2101-E Thermal | | Type | bullet | | Connectivity | ethernet | -| Resolution | 384×288 thermal (0MP, 384×288) | +| Resolution | 384×288 thermal (0.08MP, 384×288) | | Sensor | Uncooled microbolometer LWIR | | Lens | 1× 10 / 19 / 35 (fixed)mm | | Field of view | 45 horizontal (10mm)° | diff --git a/cameras/axis/q3527-lve.json b/cameras/axis/q3527-lve.json index 214f465b..3d88595b 100644 --- a/cameras/axis/q3527-lve.json +++ b/cameras/axis/q3527-lve.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/q3527-lve.md b/cameras/axis/q3527-lve.md index 1a46dcaa..82c9b11f 100644 --- a/cameras/axis/q3527-lve.md +++ b/cameras/axis/q3527-lve.md @@ -13,7 +13,7 @@ | Night vision | ir (30m) | | Power | PoE (802.3af) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | Yes | diff --git a/cameras/axis/q3536-lve.json b/cameras/axis/q3536-lve.json index ebd749b1..4b4c6592 100644 --- a/cameras/axis/q3536-lve.json +++ b/cameras/axis/q3536-lve.json @@ -34,8 +34,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/q3536-lve.md b/cameras/axis/q3536-lve.md index 90f33d40..95baf854 100644 --- a/cameras/axis/q3536-lve.md +++ b/cameras/axis/q3536-lve.md @@ -13,7 +13,7 @@ | Night vision | ir (40m) | | Power | High PoE (802.3at) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/axis/q6135-le.json b/cameras/axis/q6135-le.json index 8b093e6d..65322767 100644 --- a/cameras/axis/q6135-le.json +++ b/cameras/axis/q6135-le.json @@ -37,8 +37,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/axis/q6135-le.md b/cameras/axis/q6135-le.md index dacacb17..38745565 100644 --- a/cameras/axis/q6135-le.md +++ b/cameras/axis/q6135-le.md @@ -15,7 +15,7 @@ | Night vision | ir (250m) | | Power | High PoE (802.3bt) | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/bosch/nbe-5702-al.json b/cameras/bosch/nbe-5702-al.json index cca06671..b069b825 100644 --- a/cameras/bosch/nbe-5702-al.json +++ b/cameras/bosch/nbe-5702-al.json @@ -39,8 +39,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP67", "audio": { diff --git a/cameras/bosch/nbe-5702-al.md b/cameras/bosch/nbe-5702-al.md index 09605a91..9679d1b5 100644 --- a/cameras/bosch/nbe-5702-al.md +++ b/cameras/bosch/nbe-5702-al.md @@ -15,7 +15,7 @@ | Night vision | ir (60m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 2048GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP67 | | Two-way audio | Yes | diff --git a/cameras/bosch/nbe-5703-al.json b/cameras/bosch/nbe-5703-al.json index 3a053d2d..a6bd5fc2 100644 --- a/cameras/bosch/nbe-5703-al.json +++ b/cameras/bosch/nbe-5703-al.json @@ -39,8 +39,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP67", "audio": { diff --git a/cameras/bosch/nbe-5703-al.md b/cameras/bosch/nbe-5703-al.md index d8dc234a..5f23bd4f 100644 --- a/cameras/bosch/nbe-5703-al.md +++ b/cameras/bosch/nbe-5703-al.md @@ -15,7 +15,7 @@ | Night vision | ir (60m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 2048GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP67 | | Two-way audio | Yes | diff --git a/cameras/bosch/nbn-9122-p.json b/cameras/bosch/nbn-9122-p.json index cde9d2ad..56c62bef 100644 --- a/cameras/bosch/nbn-9122-p.json +++ b/cameras/bosch/nbn-9122-p.json @@ -14,7 +14,7 @@ "megapixels": 12, "max_width": 4096, "max_height": 3072, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "2/3\" Progressive Scan CMOS", "lens": { diff --git a/cameras/bosch/nbn-9122-p.md b/cameras/bosch/nbn-9122-p.md index 6daf9598..c26b88ff 100644 --- a/cameras/bosch/nbn-9122-p.md +++ b/cameras/bosch/nbn-9122-p.md @@ -8,7 +8,7 @@ | Model | DINION IP 12MP (NBN-9122-P) | | Type | box | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4096×3072) | +| Resolution | 12MP UHD (12MP, 4096×3072) | | Sensor | 2/3" Progressive Scan CMOS | | Night vision | none | | Power | High PoE (802.3at) / DC 12V | diff --git a/cameras/bosch/nde-5503-al.json b/cameras/bosch/nde-5503-al.json index 0af17c54..4a20c7e1 100644 --- a/cameras/bosch/nde-5503-al.json +++ b/cameras/bosch/nde-5503-al.json @@ -36,8 +36,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/bosch/nde-5503-al.md b/cameras/bosch/nde-5503-al.md index 97e6722f..be4b3328 100644 --- a/cameras/bosch/nde-5503-al.md +++ b/cameras/bosch/nde-5503-al.md @@ -15,7 +15,7 @@ | Night vision | ir (30m) | | Power | PoE (802.3af) / DC 12V / AC 24V | | Storage | NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/bosch/nde-5702-al.json b/cameras/bosch/nde-5702-al.json index 5c7f81bc..bf0e6dc5 100644 --- a/cameras/bosch/nde-5702-al.json +++ b/cameras/bosch/nde-5702-al.json @@ -38,8 +38,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/bosch/nde-5702-al.md b/cameras/bosch/nde-5702-al.md index 85c73f19..8a932082 100644 --- a/cameras/bosch/nde-5702-al.md +++ b/cameras/bosch/nde-5702-al.md @@ -15,7 +15,7 @@ | Night vision | ir (45m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 2048GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | Yes | diff --git a/cameras/bosch/nde-5703-al.json b/cameras/bosch/nde-5703-al.json index f5472faf..7389425d 100644 --- a/cameras/bosch/nde-5703-al.json +++ b/cameras/bosch/nde-5703-al.json @@ -38,8 +38,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/bosch/nde-5703-al.md b/cameras/bosch/nde-5703-al.md index 6870c8e0..280a2429 100644 --- a/cameras/bosch/nde-5703-al.md +++ b/cameras/bosch/nde-5703-al.md @@ -15,7 +15,7 @@ | Night vision | ir (45m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 2048GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | Yes | diff --git a/cameras/bosch/ndv-5702-al.json b/cameras/bosch/ndv-5702-al.json index 7bc23a69..045351ce 100644 --- a/cameras/bosch/ndv-5702-al.json +++ b/cameras/bosch/ndv-5702-al.json @@ -38,8 +38,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP54", "audio": { diff --git a/cameras/bosch/ndv-5702-al.md b/cameras/bosch/ndv-5702-al.md index 89ebea38..457cc554 100644 --- a/cameras/bosch/ndv-5702-al.md +++ b/cameras/bosch/ndv-5702-al.md @@ -15,7 +15,7 @@ | Night vision | ir (30m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 2048GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP54 | | Two-way audio | Yes | diff --git a/cameras/bosch/ndv-5703-al.json b/cameras/bosch/ndv-5703-al.json index 532c2b64..92244c16 100644 --- a/cameras/bosch/ndv-5703-al.json +++ b/cameras/bosch/ndv-5703-al.json @@ -38,8 +38,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP54", "audio": { diff --git a/cameras/bosch/ndv-5703-al.md b/cameras/bosch/ndv-5703-al.md index ba4fc3a7..bf37a61e 100644 --- a/cameras/bosch/ndv-5703-al.md +++ b/cameras/bosch/ndv-5703-al.md @@ -15,7 +15,7 @@ | Night vision | ir (30m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 2048GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP54 | | Two-way audio | Yes | diff --git a/cameras/cathexis/cat-ipc-b2030.json b/cameras/cathexis/cat-ipc-b2030.json index c59a94ce..fdda074c 100644 --- a/cameras/cathexis/cat-ipc-b2030.json +++ b/cameras/cathexis/cat-ipc-b2030.json @@ -26,7 +26,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP67", "audio": { diff --git a/cameras/cathexis/cat-ipc-b2030.md b/cameras/cathexis/cat-ipc-b2030.md index daabb8b3..5e42a80f 100644 --- a/cameras/cathexis/cat-ipc-b2030.md +++ b/cameras/cathexis/cat-ipc-b2030.md @@ -11,7 +11,7 @@ | Night vision | ir (40m) | | Power | PoE (IEEE 802.3af) / DC 12V | | Storage | NVR | -| Protocols | onvif | +| Protocols | onvif, rtsp | | IP rating | IP67 | | Two-way audio | No | diff --git a/cameras/cathexis/cat-ipc-b4060.json b/cameras/cathexis/cat-ipc-b4060.json index 47931254..f2ab4115 100644 --- a/cameras/cathexis/cat-ipc-b4060.json +++ b/cameras/cathexis/cat-ipc-b4060.json @@ -26,7 +26,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP67", "audio": { diff --git a/cameras/cathexis/cat-ipc-b4060.md b/cameras/cathexis/cat-ipc-b4060.md index c1423587..64e2c1df 100644 --- a/cameras/cathexis/cat-ipc-b4060.md +++ b/cameras/cathexis/cat-ipc-b4060.md @@ -11,7 +11,7 @@ | Night vision | ir (50m) | | Power | PoE (IEEE 802.3af) / DC 12V | | Storage | NVR | -| Protocols | onvif | +| Protocols | onvif, rtsp | | IP rating | IP67 | | Two-way audio | No | diff --git a/cameras/cathexis/cat-ipc-d2020.json b/cameras/cathexis/cat-ipc-d2020.json index 3763e19b..d6223863 100644 --- a/cameras/cathexis/cat-ipc-d2020.json +++ b/cameras/cathexis/cat-ipc-d2020.json @@ -26,7 +26,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/cathexis/cat-ipc-d2020.md b/cameras/cathexis/cat-ipc-d2020.md index ffe57408..5aab2769 100644 --- a/cameras/cathexis/cat-ipc-d2020.md +++ b/cameras/cathexis/cat-ipc-d2020.md @@ -11,7 +11,7 @@ | Night vision | ir (30m) | | Power | PoE (IEEE 802.3af) / DC 12V | | Storage | NVR | -| Protocols | onvif | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/cathexis/cat-ipc-d4050.json b/cameras/cathexis/cat-ipc-d4050.json index 2f680f5e..45dbed2a 100644 --- a/cameras/cathexis/cat-ipc-d4050.json +++ b/cameras/cathexis/cat-ipc-d4050.json @@ -26,7 +26,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/cathexis/cat-ipc-d4050.md b/cameras/cathexis/cat-ipc-d4050.md index dc2bb5a9..ea4eb5cb 100644 --- a/cameras/cathexis/cat-ipc-d4050.md +++ b/cameras/cathexis/cat-ipc-d4050.md @@ -11,7 +11,7 @@ | Night vision | ir (30m) | | Power | PoE (IEEE 802.3af) / DC 12V | | Storage | NVR | -| Protocols | onvif | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/cathexis/cat-ipc-d5070.json b/cameras/cathexis/cat-ipc-d5070.json index 9d8815cf..7836e053 100644 --- a/cameras/cathexis/cat-ipc-d5070.json +++ b/cameras/cathexis/cat-ipc-d5070.json @@ -26,7 +26,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/cathexis/cat-ipc-d5070.md b/cameras/cathexis/cat-ipc-d5070.md index f819b53f..1ba0ba3e 100644 --- a/cameras/cathexis/cat-ipc-d5070.md +++ b/cameras/cathexis/cat-ipc-d5070.md @@ -11,7 +11,7 @@ | Night vision | ir (30m) | | Power | PoE (IEEE 802.3af) / DC 12V | | Storage | NVR | -| Protocols | onvif | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/cathexis/cat-ipc-ptz4025.json b/cameras/cathexis/cat-ipc-ptz4025.json index 5ace8123..1dbc48a3 100644 --- a/cameras/cathexis/cat-ipc-ptz4025.json +++ b/cameras/cathexis/cat-ipc-ptz4025.json @@ -31,7 +31,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/cathexis/cat-ipc-ptz4025.md b/cameras/cathexis/cat-ipc-ptz4025.md index d43ce3b5..b2deb1f7 100644 --- a/cameras/cathexis/cat-ipc-ptz4025.md +++ b/cameras/cathexis/cat-ipc-ptz4025.md @@ -12,7 +12,7 @@ | Night vision | ir (100m) | | Power | PoE (IEEE 802.3at) / DC 12V | | Storage | NVR | -| Protocols | onvif | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | Yes | diff --git a/cameras/costar/conteraip-panoramic-12mp.json b/cameras/costar/conteraip-panoramic-12mp.json index 7a637841..5f188f32 100644 --- a/cameras/costar/conteraip-panoramic-12mp.json +++ b/cameras/costar/conteraip-panoramic-12mp.json @@ -10,7 +10,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "night_vision": { diff --git a/cameras/costar/conteraip-panoramic-12mp.md b/cameras/costar/conteraip-panoramic-12mp.md index b0f324a2..2c1add01 100644 --- a/cameras/costar/conteraip-panoramic-12mp.md +++ b/cameras/costar/conteraip-panoramic-12mp.md @@ -6,7 +6,7 @@ | Model | ConteraIP Panoramic 12MP | | Type | panoramic | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/1.7" CMOS | | Night vision | ir (20m) | | Power | PoE (IEEE 802.3at) / DC 12V | diff --git a/cameras/cp-plus/cp-e45q-india.json b/cameras/cp-plus/cp-e45q-india.json index 560e8005..1931407e 100644 --- a/cameras/cp-plus/cp-e45q-india.json +++ b/cameras/cp-plus/cp-e45q-india.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "CP Plus 4MP 25x AI PTZ India", "100m IR", "SMD Plus AI", diff --git a/cameras/cp-plus/cp-e45q-india.md b/cameras/cp-plus/cp-e45q-india.md index 882215bc..ebad0143 100644 --- a/cameras/cp-plus/cp-e45q-india.md +++ b/cameras/cp-plus/cp-e45q-india.md @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - CP Plus 4MP 25x AI PTZ India - 100m IR - SMD Plus AI diff --git a/cameras/cp-plus/cp-z43q-2.json b/cameras/cp-plus/cp-z43q-2.json deleted file mode 100644 index bf20525e..00000000 --- a/cameras/cp-plus/cp-z43q-2.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "id": "cp-plus-cp-z43q-2", - "brand": "CP Plus", - "model": "CP-Z43Q", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "release_year": 2022, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "60-2.5h", - "night_vision": { - "type": "ir", - "range_m": 60 - }, - "power": { - "method": "PoE (802.3at)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "CP Plus 4MP 36x PTZ India", - "60m IR", - "auto-tracking", - "H.265", - "IP66", - "popular India large premises" - ], - "sources": [ - "https://www.cpplus.in/" - ], - "lens": { - "count": 1, - "focal_length_mm": "4.7-170 (36x optical)", - "varifocal": true - }, - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Uses Dahua protocol. ONVIF integration works." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. CP Plus uses Dahua protocol." - } - } -} diff --git a/cameras/cp-plus/cp-z43q-2.md b/cameras/cp-plus/cp-z43q-2.md deleted file mode 100644 index 91a7fc4e..00000000 --- a/cameras/cp-plus/cp-z43q-2.md +++ /dev/null @@ -1,34 +0,0 @@ -# CP Plus CP-Z43Q - -| Field | Spec | -|-------|------| -| Brand | CP Plus | -| Model | CP-Z43Q | -| Type | ptz | -| Connectivity | ethernet | -| Resolution | 4MP (4MP) | -| Lens | 1× 4.7-170 (36x optical)mm | -| Field of view | 60-2.5h° | -| Night vision | ir (60m) | -| Power | PoE (802.3at) | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP66 | -| Two-way audio | No | -| Released | 2022 | - -## Features - -- CP Plus 4MP 36x PTZ India -- 60m IR -- auto-tracking -- H.265 -- IP66 -- popular India large premises - -## Sources - -- https://www.cpplus.in/ - ---- -*Auto-generated from cp-plus-cp-z43q-2.json — do not edit by hand.* diff --git a/cameras/dahua/dh-sd49425xb-hnr.json b/cameras/dahua/dh-sd49425xb-hnr.json index 981e95bb..9db0acff 100644 --- a/cameras/dahua/dh-sd49425xb-hnr.json +++ b/cameras/dahua/dh-sd49425xb-hnr.json @@ -48,6 +48,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "WizMind 4MP 25x Starlight PTZ", "face detection", "perimeter protection", @@ -70,7 +71,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/dh-sd49425xb-hnr.md b/cameras/dahua/dh-sd49425xb-hnr.md index 3864f4df..6a8509d5 100644 --- a/cameras/dahua/dh-sd49425xb-hnr.md +++ b/cameras/dahua/dh-sd49425xb-hnr.md @@ -22,6 +22,7 @@ ## Features +- pan/tilt/zoom - WizMind 4MP 25x Starlight PTZ - face detection - perimeter protection diff --git a/cameras/dahua/dh-sd6al245xa-hnr.json b/cameras/dahua/dh-sd6al245xa-hnr.json index 77a55843..3ed1c56c 100644 --- a/cameras/dahua/dh-sd6al245xa-hnr.json +++ b/cameras/dahua/dh-sd6al245xa-hnr.json @@ -71,7 +71,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/dh-sdt7425-4p-ad3e-pv-i.json b/cameras/dahua/dh-sdt7425-4p-ad3e-pv-i.json new file mode 100644 index 00000000..aefc8663 --- /dev/null +++ b/cameras/dahua/dh-sdt7425-4p-ad3e-pv-i.json @@ -0,0 +1,127 @@ +{ + "id": "dahua-dh-sdt7425-4p-ad3e-pv-i", + "brand": "Dahua", + "model": "DH-SDT7425-4P-AD3E-PV-i", + "type": "ptz", + "connectivity": [ + "ethernet" + ], + "release_year": 2022, + "status": "discontinued", + "markets": [ + "CN" + ], + "resolution": { + "megapixels": 4, + "max_width": 3840, + "max_height": 1080, + "label": "Dual: 4MP panoramic (3840x1080) + 4MP PTZ (2560x1440)" + }, + "lens": { + "count": 2, + "focal_length_mm": "panoramic: 2.8 fixed / PTZ: 4.8-120 (25x optical)", + "aperture": "F1.0 (panoramic) / F1.6-3.6 (PTZ)", + "varifocal": true + }, + "night_vision": { + "type": "hybrid", + "range_m": 150 + }, + "power": { + "method": "DC 36V/2.23A (±25%)", + "consumption_w": 35, + "voltage": "DC 36V" + }, + "storage": { + "onboard": false, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "dual-channel: 180° panoramic 4MP stitched + 4MP PTZ 25x zoom", + "starlight 0.001 lux color @F1.0", + "150m IR (PTZ) + 30m white light (panoramic)", + "auto-tracking (single-ball tracking)", + "face detection with attributes (6 attributes, 8 expressions)", + "9 IVS rules: tripwire, intrusion, loitering, parking, crowd", + "human/vehicle classification", + "active deterrence: white light strobe + 110dB speaker, 22 voice alerts", + "300 presets, 8 cruise paths", + "2 alarm in / 1 alarm out", + "8000V lightning protection", + "electronic defog", + "GB/T28181, GA/T 1400 (CN standards)", + "China market model" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "detect": { + "width": 1280, + "height": 360, + "fps": 5 + }, + "notes": "Dual-channel — configure as TWO Frigate cameras: panoramic = channel=1 (3840x1080, 32:9 — set detect to 1280x360 to match), PTZ = channel=2 (2560x1440, rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=2&subtype=0, detect 1280x720). For ONVIF autotracking on the PTZ channel add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. ONVIF PTZ confirmed working — Channel 2 profiles have both VideoEncoderConfiguration and PTZConfiguration (no split-profile issue, unlike SDT4E series). Verified in frigate#22135. Note: powered by DC 36V, not PoE." + }, + "home_assistant": { + "integration": "onvif", + "notes": "ONVIF integration works including PTZ control. Default port 80. CN firmware." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Dual-channel camera — add each channel as a separate camera." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://github.com/ch-bas/cctv-camera-database/issues/11", + "https://github.com/blakeblackshear/frigate/discussions/22135", + "https://www.jiankongqicai.com/news/64.html" + ], + "sensor": "2x 1/2.8\" CMOS (panoramic + PTZ)", + "field_of_view_deg": "180 horizontal (panoramic) / 55.8-2.4 (PTZ)", + "ip_rating": "IP66", + "operating_temp_c": "-40 to +65", + "video": { + "codecs": [ + "Smart H.265", + "H.265", + "Smart H.264", + "H.264", + "MJPEG" + ], + "max_fps": 25, + "streams": [ + { + "name": "panoramic main", + "resolution": "3840x1080", + "fps": 25, + "codec": "H.265" + }, + { + "name": "panoramic sub", + "resolution": "960x268", + "fps": 25, + "codec": "H.264" + }, + { + "name": "PTZ main", + "resolution": "2560x1440", + "fps": 25, + "codec": "H.265" + } + ] + } +} diff --git a/cameras/dahua/dh-sdt7425-4p-ad3e-pv-i.md b/cameras/dahua/dh-sdt7425-4p-ad3e-pv-i.md new file mode 100644 index 00000000..f3ce7ad6 --- /dev/null +++ b/cameras/dahua/dh-sdt7425-4p-ad3e-pv-i.md @@ -0,0 +1,46 @@ +# Dahua DH-SDT7425-4P-AD3E-PV-i + +| Field | Spec | +|-------|------| +| Brand | Dahua | +| Model | DH-SDT7425-4P-AD3E-PV-i | +| Type | ptz | +| Connectivity | ethernet | +| Resolution | Dual: 4MP panoramic (3840x1080) + 4MP PTZ (2560x1440) (4MP, 3840×1080) | +| Sensor | 2x 1/2.8" CMOS (panoramic + PTZ) | +| Lens | 2× panoramic: 2.8 fixed / PTZ: 4.8-120 (25x optical)mm F1.0 (panoramic) / F1.6-3.6 (PTZ) | +| Field of view | 180 horizontal (panoramic) / 55.8-2.4 (PTZ)° | +| Night vision | hybrid (150m) | +| Power | DC 36V/2.23A (±25%) | +| Storage | NVR | +| Protocols | onvif, rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | +| Operating temp | -40 to +65°C | +| Released | 2022 | + +## Features + +- dual-channel: 180° panoramic 4MP stitched + 4MP PTZ 25x zoom +- starlight 0.001 lux color @F1.0 +- 150m IR (PTZ) + 30m white light (panoramic) +- auto-tracking (single-ball tracking) +- face detection with attributes (6 attributes, 8 expressions) +- 9 IVS rules: tripwire, intrusion, loitering, parking, crowd +- human/vehicle classification +- active deterrence: white light strobe + 110dB speaker, 22 voice alerts +- 300 presets, 8 cruise paths +- 2 alarm in / 1 alarm out +- 8000V lightning protection +- electronic defog +- GB/T28181, GA/T 1400 (CN standards) +- China market model + +## Sources + +- https://github.com/ch-bas/cctv-camera-database/issues/11 +- https://github.com/blakeblackshear/frigate/discussions/22135 +- https://www.jiankongqicai.com/news/64.html + +--- +*Auto-generated from dahua-dh-sdt7425-4p-ad3e-pv-i.json — do not edit by hand.* diff --git a/cameras/dahua/hac-hdw1509tq-a-led.json b/cameras/dahua/hac-hdw1509tq-a-led.json index caa10a27..d197a4b7 100644 --- a/cameras/dahua/hac-hdw1509tq-a-led.json +++ b/cameras/dahua/hac-hdw1509tq-a-led.json @@ -4,7 +4,7 @@ "model": "HAC-HDW1509TQ-A-LED", "type": "dome", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, diff --git a/cameras/dahua/hac-hdw1509tq-a-led.md b/cameras/dahua/hac-hdw1509tq-a-led.md index 2a2c5194..19c7c158 100644 --- a/cameras/dahua/hac-hdw1509tq-a-led.md +++ b/cameras/dahua/hac-hdw1509tq-a-led.md @@ -5,13 +5,12 @@ | Brand | Dahua | | Model | HAC-HDW1509TQ-A-LED | | Type | dome | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 5MP HD (5MP) | | Field of view | 107h° | | Night vision | color (30m) | | Power | DC 12V (HDCVI coaxial) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2022 | diff --git a/cameras/dahua/hac-hfw1509th-a-led.json b/cameras/dahua/hac-hfw1509th-a-led.json index fc52ea13..aa382481 100644 --- a/cameras/dahua/hac-hfw1509th-a-led.json +++ b/cameras/dahua/hac-hfw1509th-a-led.json @@ -4,7 +4,7 @@ "model": "HAC-HFW1509TH-A-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, diff --git a/cameras/dahua/hac-hfw1509th-a-led.md b/cameras/dahua/hac-hfw1509th-a-led.md index a6573a7e..c77472df 100644 --- a/cameras/dahua/hac-hfw1509th-a-led.md +++ b/cameras/dahua/hac-hfw1509th-a-led.md @@ -5,13 +5,12 @@ | Brand | Dahua | | Model | HAC-HFW1509TH-A-LED | | Type | bullet | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 5MP HD (5MP) | | Field of view | 107h° | | Night vision | color (30m) | | Power | DC 12V (HDCVI coaxial) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2022 | diff --git a/cameras/dahua/hac-hfw2802e-led.json b/cameras/dahua/hac-hfw2802e-led.json index 7e6866b7..2fcce172 100644 --- a/cameras/dahua/hac-hfw2802e-led.json +++ b/cameras/dahua/hac-hfw2802e-led.json @@ -4,7 +4,7 @@ "model": "HAC-HFW2802E-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2023, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, diff --git a/cameras/dahua/hac-hfw2802e-led.md b/cameras/dahua/hac-hfw2802e-led.md index 83234c07..3f6be398 100644 --- a/cameras/dahua/hac-hfw2802e-led.md +++ b/cameras/dahua/hac-hfw2802e-led.md @@ -5,13 +5,12 @@ | Brand | Dahua | | Model | HAC-HFW2802E-LED | | Type | bullet | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 4K UHD (8MP) | | Field of view | 107h° | | Night vision | color (30m) | | Power | DC 12V HDCVI coaxial | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2023 | diff --git a/cameras/dahua/hac-hfw2849e-a-ni-led.json b/cameras/dahua/hac-hfw2849e-a-ni-led.json index c1d4d541..5073dceb 100644 --- a/cameras/dahua/hac-hfw2849e-a-ni-led.json +++ b/cameras/dahua/hac-hfw2849e-a-ni-led.json @@ -4,7 +4,7 @@ "model": "HAC-HFW2849E-A-NI-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2023, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, diff --git a/cameras/dahua/hac-hfw2849e-a-ni-led.md b/cameras/dahua/hac-hfw2849e-a-ni-led.md index 792876c4..57bc6c70 100644 --- a/cameras/dahua/hac-hfw2849e-a-ni-led.md +++ b/cameras/dahua/hac-hfw2849e-a-ni-led.md @@ -5,13 +5,12 @@ | Brand | Dahua | | Model | HAC-HFW2849E-A-NI-LED | | Type | bullet | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 4K UHD (8MP) | | Field of view | 107h° | | Night vision | color (30m) | | Power | DC 12V (HDCVI coaxial) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2023 | diff --git a/cameras/dahua/ipc-hdw3849h-zas-pv-varifocal.json b/cameras/dahua/ipc-hdw3849h-zas-pv-varifocal.json deleted file mode 100644 index 92abb4c2..00000000 --- a/cameras/dahua/ipc-hdw3849h-zas-pv-varifocal.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "id": "dahua-ipc-hdw3849h-zas-pv-varifocal", - "brand": "Dahua", - "model": "IPC-HDW3849H-ZAS-PV", - "type": "turret", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "label": "4K UHD" - }, - "field_of_view_deg": "110-30h", - "night_vision": { - "type": "hybrid", - "range_m": 40 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "TiOC 2.0 4K 5× varifocal eyeball", - "full-color active deterrence", - "WizSense AI", - "two-way audio", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } -} diff --git a/cameras/dahua/ipc-hdw3849h-zas-pv-varifocal.md b/cameras/dahua/ipc-hdw3849h-zas-pv-varifocal.md deleted file mode 100644 index bb0f0cc0..00000000 --- a/cameras/dahua/ipc-hdw3849h-zas-pv-varifocal.md +++ /dev/null @@ -1,33 +0,0 @@ -# Dahua IPC-HDW3849H-ZAS-PV - -| Field | Spec | -|-------|------| -| Brand | Dahua | -| Model | IPC-HDW3849H-ZAS-PV | -| Type | turret | -| Connectivity | ethernet | -| Resolution | 4K UHD (8MP) | -| Field of view | 110-30h° | -| Night vision | hybrid (40m) | -| Power | PoE (802.3af) / DC 12V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | Yes | -| Released | 2023 | - -## Features - -- TiOC 2.0 4K 5× varifocal eyeball -- full-color active deterrence -- WizSense AI -- two-way audio -- H.265+ -- IP67 - -## Sources - -- https://www.dahuasecurity.com/ - ---- -*Auto-generated from dahua-ipc-hdw3849h-zas-pv-varifocal.json — do not edit by hand.* diff --git a/cameras/dahua/ipc-hdw3849h-zas-pv.json b/cameras/dahua/ipc-hdw3849h-zas-pv.json index 8ac19b5b..3cbb148c 100644 --- a/cameras/dahua/ipc-hdw3849h-zas-pv.json +++ b/cameras/dahua/ipc-hdw3849h-zas-pv.json @@ -3,7 +3,8 @@ "brand": "Dahua", "model": "IPC-HDW3849H-ZAS-PV", "aliases": [ - "WizSense TiOC 8MP Varifocal Turret" + "WizSense TiOC 8MP Varifocal Turret", + "dahua-ipc-hdw3849h-zas-pv-varifocal" ], "type": "turret", "connectivity": [ diff --git a/cameras/dahua/ipc-hdw3849h-zas-pv.md b/cameras/dahua/ipc-hdw3849h-zas-pv.md index edc3e4af..66beaff1 100644 --- a/cameras/dahua/ipc-hdw3849h-zas-pv.md +++ b/cameras/dahua/ipc-hdw3849h-zas-pv.md @@ -1,6 +1,6 @@ # Dahua IPC-HDW3849H-ZAS-PV -*Also known as: WizSense TiOC 8MP Varifocal Turret* +*Also known as: WizSense TiOC 8MP Varifocal Turret, dahua-ipc-hdw3849h-zas-pv-varifocal* | Field | Spec | |-------|------| diff --git a/cameras/dahua/ipc-hdw7842h-z4-x.json b/cameras/dahua/ipc-hdw7842h-z4-x.json index a0a2b730..867bd4fe 100644 --- a/cameras/dahua/ipc-hdw7842h-z4-x.json +++ b/cameras/dahua/ipc-hdw7842h-z4-x.json @@ -58,7 +58,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Dual-lens WizMind camera — check whether second lens exposes a separate channel (channel=2)." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-hf71242f-z-x.json b/cameras/dahua/ipc-hf71242f-z-x.json index a57cf7b3..9b4dba04 100644 --- a/cameras/dahua/ipc-hf71242f-z-x.json +++ b/cameras/dahua/ipc-hf71242f-z-x.json @@ -14,7 +14,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { diff --git a/cameras/dahua/ipc-hf71242f-z-x.md b/cameras/dahua/ipc-hf71242f-z-x.md index 9b9f6f00..153024eb 100644 --- a/cameras/dahua/ipc-hf71242f-z-x.md +++ b/cameras/dahua/ipc-hf71242f-z-x.md @@ -8,7 +8,7 @@ | Model | IPC-HF71242F-Z-X | | Type | box | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/1.7" Progressive Scan CMOS | | Night vision | none | | Power | ePoE / DC 12V / AC 24V | diff --git a/cameras/dahua/ipc-hfw3849e-as-led-s2-new.json b/cameras/dahua/ipc-hfw3849e-zas-led-s2.json similarity index 97% rename from cameras/dahua/ipc-hfw3849e-as-led-s2-new.json rename to cameras/dahua/ipc-hfw3849e-zas-led-s2.json index da827c87..9239c506 100644 --- a/cameras/dahua/ipc-hfw3849e-as-led-s2-new.json +++ b/cameras/dahua/ipc-hfw3849e-zas-led-s2.json @@ -1,5 +1,5 @@ { - "id": "dahua-ipc-hfw3849e-as-led-s2-new", + "id": "dahua-ipc-hfw3849e-zas-led-s2", "brand": "Dahua", "model": "IPC-HFW3849E-ZAS-LED-S2", "type": "bullet", diff --git a/cameras/dahua/ipc-hfw3849e-as-led-s2-new.md b/cameras/dahua/ipc-hfw3849e-zas-led-s2.md similarity index 88% rename from cameras/dahua/ipc-hfw3849e-as-led-s2-new.md rename to cameras/dahua/ipc-hfw3849e-zas-led-s2.md index 45dfe23e..6a06684a 100644 --- a/cameras/dahua/ipc-hfw3849e-as-led-s2-new.md +++ b/cameras/dahua/ipc-hfw3849e-zas-led-s2.md @@ -32,4 +32,4 @@ - https://www.dahuasecurity.com/ --- -*Auto-generated from dahua-ipc-hfw3849e-as-led-s2-new.json — do not edit by hand.* +*Auto-generated from dahua-ipc-hfw3849e-zas-led-s2.json — do not edit by hand.* diff --git a/cameras/dahua/ipc-hfw3849t-as-pv-pro.json b/cameras/dahua/ipc-hfw3849t-as-pv-pro.json index ff2d9a0e..9d6edf63 100644 --- a/cameras/dahua/ipc-hfw3849t-as-pv-pro.json +++ b/cameras/dahua/ipc-hfw3849t-as-pv-pro.json @@ -3,7 +3,8 @@ "brand": "Dahua", "model": "IPC-HFW3849T1-AS-PV-PRO", "aliases": [ - "WizColor TiOC PRO 8MP Bullet" + "WizColor TiOC PRO 8MP Bullet", + "dahua-ipc-hfw3849t1-as-pv-pro" ], "type": "bullet", "connectivity": [ diff --git a/cameras/dahua/ipc-hfw3849t-as-pv-pro.md b/cameras/dahua/ipc-hfw3849t-as-pv-pro.md index 87678dba..9fa5ca40 100644 --- a/cameras/dahua/ipc-hfw3849t-as-pv-pro.md +++ b/cameras/dahua/ipc-hfw3849t-as-pv-pro.md @@ -1,6 +1,6 @@ # Dahua IPC-HFW3849T1-AS-PV-PRO -*Also known as: WizColor TiOC PRO 8MP Bullet* +*Also known as: WizColor TiOC PRO 8MP Bullet, dahua-ipc-hfw3849t1-as-pv-pro* | Field | Spec | |-------|------| diff --git a/cameras/dahua/ipc-hfw3849t1-as-pv-pro.json b/cameras/dahua/ipc-hfw3849t1-as-pv-pro.json deleted file mode 100644 index 8f5ea07f..00000000 --- a/cameras/dahua/ipc-hfw3849t1-as-pv-pro.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "id": "dahua-ipc-hfw3849t1-as-pv-pro", - "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV-PRO", - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "release_year": 2024, - "resolution": { - "megapixels": 8, - "label": "4K UHD" - }, - "field_of_view_deg": "107h", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE/DC12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "TiOC PRO 4K bullet active deterrence enhanced", - "AI SMD 4.0", - "two-way audio", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } -} diff --git a/cameras/dahua/ipc-hfw3849t1-as-pv-pro.md b/cameras/dahua/ipc-hfw3849t1-as-pv-pro.md deleted file mode 100644 index 258bddce..00000000 --- a/cameras/dahua/ipc-hfw3849t1-as-pv-pro.md +++ /dev/null @@ -1,32 +0,0 @@ -# Dahua IPC-HFW3849T1-AS-PV-PRO - -| Field | Spec | -|-------|------| -| Brand | Dahua | -| Model | IPC-HFW3849T1-AS-PV-PRO | -| Type | bullet | -| Connectivity | ethernet | -| Resolution | 4K UHD (8MP) | -| Field of view | 107h° | -| Night vision | hybrid (30m) | -| Power | PoE/DC12V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | Yes | -| Released | 2024 | - -## Features - -- TiOC PRO 4K bullet active deterrence enhanced -- AI SMD 4.0 -- two-way audio -- H.265+ -- IP67 - -## Sources - -- https://www.dahuasecurity.com/ - ---- -*Auto-generated from dahua-ipc-hfw3849t1-as-pv-pro.json — do not edit by hand.* diff --git a/cameras/dahua/ipc-hfw3849t1-as-pv-s3.json b/cameras/dahua/ipc-hfw3849t1-as-pv-s3.json deleted file mode 100644 index 9b112c76..00000000 --- a/cameras/dahua/ipc-hfw3849t1-as-pv-s3.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "id": "dahua-ipc-hfw3849t1-as-pv-s3", - "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV", - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "label": "4K UHD" - }, - "field_of_view_deg": "110h", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "TiOC 2.0 4K fixed-focal bullet", - "full-color active deterrence (red/blue + siren)", - "WizSense AI", - "two-way audio", - "IP67" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } -} diff --git a/cameras/dahua/ipc-hfw3849t1-as-pv-s3.md b/cameras/dahua/ipc-hfw3849t1-as-pv-s3.md deleted file mode 100644 index e488cfcb..00000000 --- a/cameras/dahua/ipc-hfw3849t1-as-pv-s3.md +++ /dev/null @@ -1,32 +0,0 @@ -# Dahua IPC-HFW3849T1-AS-PV - -| Field | Spec | -|-------|------| -| Brand | Dahua | -| Model | IPC-HFW3849T1-AS-PV | -| Type | bullet | -| Connectivity | ethernet | -| Resolution | 4K UHD (8MP) | -| Field of view | 110h° | -| Night vision | hybrid (30m) | -| Power | PoE (802.3af) / DC 12V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | Yes | -| Released | 2023 | - -## Features - -- TiOC 2.0 4K fixed-focal bullet -- full-color active deterrence (red/blue + siren) -- WizSense AI -- two-way audio -- IP67 - -## Sources - -- https://www.dahuasecurity.com/ - ---- -*Auto-generated from dahua-ipc-hfw3849t1-as-pv-s3.json — do not edit by hand.* diff --git a/cameras/dahua/ipc-hfw3849t1-as-pv.json b/cameras/dahua/ipc-hfw3849t1-as-pv.json index 4eaf2a18..b2e2efb5 100644 --- a/cameras/dahua/ipc-hfw3849t1-as-pv.json +++ b/cameras/dahua/ipc-hfw3849t1-as-pv.json @@ -4,7 +4,8 @@ "model": "IPC-HFW3849T1-AS-PV", "aliases": [ "DH-IPC-HFW3849T1-AS-PV", - "WizSense TiOC 8MP Bullet" + "WizSense TiOC 8MP Bullet", + "dahua-ipc-hfw3849t1-as-pv-s3" ], "type": "bullet", "connectivity": [ diff --git a/cameras/dahua/ipc-hfw3849t1-as-pv.md b/cameras/dahua/ipc-hfw3849t1-as-pv.md index 53707b3c..e57fab4d 100644 --- a/cameras/dahua/ipc-hfw3849t1-as-pv.md +++ b/cameras/dahua/ipc-hfw3849t1-as-pv.md @@ -1,6 +1,6 @@ # Dahua IPC-HFW3849T1-AS-PV -*Also known as: DH-IPC-HFW3849T1-AS-PV, WizSense TiOC 8MP Bullet* +*Also known as: DH-IPC-HFW3849T1-AS-PV, WizSense TiOC 8MP Bullet, dahua-ipc-hfw3849t1-as-pv-s3* | Field | Spec | |-------|------| diff --git a/cameras/dahua/ipc-hfw7842h-z-x.json b/cameras/dahua/ipc-hfw7842h-z-x.json index d5c42b6c..39fe3a7d 100644 --- a/cameras/dahua/ipc-hfw7842h-z-x.json +++ b/cameras/dahua/ipc-hfw7842h-z-x.json @@ -59,7 +59,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Dual-lens WizMind camera — check whether second lens exposes a separate channel (channel=2)." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-pdbw5831-b360.json b/cameras/dahua/ipc-pdbw5831-b360.json index 5e01fefc..7fcb8388 100644 --- a/cameras/dahua/ipc-pdbw5831-b360.json +++ b/cameras/dahua/ipc-pdbw5831-b360.json @@ -65,7 +65,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 360° camera — streams may be per-sensor channels (channel=1..4) or stitched depending on firmware. Verify channel layout via ONVIF before configuring." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-pf83230-a180.json b/cameras/dahua/ipc-pf83230-a180.json index 5fe20a1d..cc70f00f 100644 --- a/cameras/dahua/ipc-pf83230-a180.json +++ b/cameras/dahua/ipc-pf83230-a180.json @@ -65,7 +65,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image. Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-pfw5849-a180-e2-aste.json b/cameras/dahua/ipc-pfw5849-a180-e2-aste.json index 05481da7..538a1f5d 100644 --- a/cameras/dahua/ipc-pfw5849-a180-e2-aste.json +++ b/cameras/dahua/ipc-pfw5849-a180-e2-aste.json @@ -72,7 +72,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image (not 16:9). Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-pfw5849-a180.json b/cameras/dahua/ipc-pfw5849-a180.json index cdf18aa2..eac4c88c 100644 --- a/cameras/dahua/ipc-pfw5849-a180.json +++ b/cameras/dahua/ipc-pfw5849-a180.json @@ -71,7 +71,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image (not 16:9). Set Frigate detect resolution to match the actual stream aspect ratio (check stream first, e.g. via VLC). Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-pfw8802-a180.json b/cameras/dahua/ipc-pfw8802-a180.json index fe4906f1..793509d6 100644 --- a/cameras/dahua/ipc-pfw8802-a180.json +++ b/cameras/dahua/ipc-pfw8802-a180.json @@ -66,7 +66,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image. Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/ipc-pt8849-a180.json b/cameras/dahua/ipc-pt8849-a180.json index 02917917..f31edcb6 100644 --- a/cameras/dahua/ipc-pt8849-a180.json +++ b/cameras/dahua/ipc-pt8849-a180.json @@ -57,7 +57,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Panoramic + PTZ combo — panoramic is channel=1, PTZ is channel=2 (rtsp .../realmonitor?channel=2&subtype=0). Configure as two Frigate cameras." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/sd49225xa-hnr-mena.json b/cameras/dahua/sd49225xa-hnr-mena.json index 60785824..4f2d18c0 100644 --- a/cameras/dahua/sd49225xa-hnr-mena.json +++ b/cameras/dahua/sd49225xa-hnr-mena.json @@ -80,7 +80,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/sd49225xb-hnr.json b/cameras/dahua/sd49225xb-hnr.json index 47d5af66..834bdfc8 100644 --- a/cameras/dahua/sd49225xb-hnr.json +++ b/cameras/dahua/sd49225xb-hnr.json @@ -67,7 +67,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/sd49425xb-hnr.json b/cameras/dahua/sd49425xb-hnr.json deleted file mode 100644 index 6a4a673c..00000000 --- a/cameras/dahua/sd49425xb-hnr.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "id": "dahua-sd49425xb-hnr", - "brand": "Dahua", - "model": "SD49425XB-HNR 4MP 25x PTZ", - "aliases": [ - "DH-SD49425XB-HNR", - "WizSense PTZ 4MP" - ], - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "4.9-122.5 (25x optical zoom)", - "varifocal": true - }, - "field_of_view_deg": "60.3-2.6 horizontal", - "night_vision": { - "type": "ir", - "range_m": 100 - }, - "power": { - "method": "PoE+ (802.3at) / DC 24V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "25x optical zoom", - "WizSense AI human / vehicle classification", - "SMD Plus", - "120 dB WDR", - "auto-tracking", - "patrol and preset tours", - "H.265 codec", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } -} diff --git a/cameras/dahua/sd49425xb-hnr.md b/cameras/dahua/sd49425xb-hnr.md deleted file mode 100644 index a1573d37..00000000 --- a/cameras/dahua/sd49425xb-hnr.md +++ /dev/null @@ -1,38 +0,0 @@ -# Dahua SD49425XB-HNR 4MP 25x PTZ - -*Also known as: DH-SD49425XB-HNR, WizSense PTZ 4MP* - -| Field | Spec | -|-------|------| -| Brand | Dahua | -| Model | SD49425XB-HNR 4MP 25x PTZ | -| Type | ptz | -| Connectivity | ethernet | -| Resolution | 4MP (4MP, 2688×1520) | -| Sensor | 1/2.8" CMOS | -| Lens | 1× 4.9-122.5 (25x optical zoom)mm | -| Field of view | 60.3-2.6 horizontal° | -| Night vision | ir (100m) | -| Power | PoE+ (802.3at) / DC 24V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP66 | -| Two-way audio | No | - -## Features - -- 25x optical zoom -- WizSense AI human / vehicle classification -- SMD Plus -- 120 dB WDR -- auto-tracking -- patrol and preset tours -- H.265 codec -- IK10 - -## Sources - -- https://www.dahuasecurity.com - ---- -*Auto-generated from dahua-sd49425xb-hnr.json — do not edit by hand.* diff --git a/cameras/dahua/sd49825gb-hnr.json b/cameras/dahua/sd49825gb-hnr.json index 1eb34210..523a86c0 100644 --- a/cameras/dahua/sd49825gb-hnr.json +++ b/cameras/dahua/sd49825gb-hnr.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "WizMind 4K 8MP 25x PTZ SMD 4.0", "face recognition", "auto-tracking", @@ -64,7 +65,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/sd49825gb-hnr.md b/cameras/dahua/sd49825gb-hnr.md index c220f09c..552bcc99 100644 --- a/cameras/dahua/sd49825gb-hnr.md +++ b/cameras/dahua/sd49825gb-hnr.md @@ -20,6 +20,7 @@ ## Features +- pan/tilt/zoom - WizMind 4K 8MP 25x PTZ SMD 4.0 - face recognition - auto-tracking diff --git a/cameras/dahua/sd5a432gb-hnr.json b/cameras/dahua/sd5a432gb-hnr.json index 42593d10..26ef25e6 100644 --- a/cameras/dahua/sd5a432gb-hnr.json +++ b/cameras/dahua/sd5a432gb-hnr.json @@ -69,7 +69,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/sd6c3432xb-hnr-a-pv1.json b/cameras/dahua/sd6c3432xb-hnr-a-pv1.json index 4bb319cc..5b3b1c8a 100644 --- a/cameras/dahua/sd6c3432xb-hnr-a-pv1.json +++ b/cameras/dahua/sd6c3432xb-hnr-a-pv1.json @@ -68,7 +68,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/dahua/sd6c3432xb-hnr-active.json b/cameras/dahua/sd6c3432xb-hnr-active.json deleted file mode 100644 index 76a3a86d..00000000 --- a/cameras/dahua/sd6c3432xb-hnr-active.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "id": "dahua-sd6c3432xb-hnr-active", - "brand": "Dahua", - "model": "SD6C3432XB-HNR-A-PV1-new", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "release_year": 2024, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "60-2h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3bt)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind 4MP 32x PTZ full-color active deterrence", - "ColorVu full-color night vision", - "red/blue strobe + siren", - "face recognition", - "auto-tracking", - "H.265", - "IP66" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "lens": { - "count": 1, - "focal_length_mm": "6.0-192 (32x optical)", - "aperture": "F1.6", - "varifocal": true - }, - "sensor": "1/2.8\" CMOS", - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } -} diff --git a/cameras/dahua/sd6c3432xb-hnr-active.md b/cameras/dahua/sd6c3432xb-hnr-active.md deleted file mode 100644 index df1e7d23..00000000 --- a/cameras/dahua/sd6c3432xb-hnr-active.md +++ /dev/null @@ -1,36 +0,0 @@ -# Dahua SD6C3432XB-HNR-A-PV1-new - -| Field | Spec | -|-------|------| -| Brand | Dahua | -| Model | SD6C3432XB-HNR-A-PV1-new | -| Type | ptz | -| Connectivity | ethernet | -| Resolution | 4MP (4MP) | -| Sensor | 1/2.8" CMOS | -| Lens | 1× 6.0-192 (32x optical)mm F1.6 | -| Field of view | 60-2h° | -| Night vision | color (30m) | -| Power | PoE (802.3bt) | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP66 | -| Two-way audio | No | -| Released | 2024 | - -## Features - -- WizMind 4MP 32x PTZ full-color active deterrence -- ColorVu full-color night vision -- red/blue strobe + siren -- face recognition -- auto-tracking -- H.265 -- IP66 - -## Sources - -- https://www.dahuasecurity.com/ - ---- -*Auto-generated from dahua-sd6c3432xb-hnr-active.json — do not edit by hand.* diff --git a/cameras/eufy/garage-cam-s330.json b/cameras/eufy/garage-cam-s330.json index 50587c3d..5b18c372 100644 --- a/cameras/eufy/garage-cam-s330.json +++ b/cameras/eufy/garage-cam-s330.json @@ -54,5 +54,8 @@ "msrp_usd": 99.99, "sources": [ "https://www.eufy.com/products/garage-cam-s330" + ], + "power_source": [ + "dc" ] } diff --git a/cameras/eufy/homebase-s380-cam-s330.json b/cameras/eufy/homebase-s380-cam-s330.json index 8a2638f9..951f760f 100644 --- a/cameras/eufy/homebase-s380-cam-s330.json +++ b/cameras/eufy/homebase-s380-cam-s330.json @@ -11,8 +11,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { diff --git a/cameras/eufy/homebase-s380-cam-s330.md b/cameras/eufy/homebase-s380-cam-s330.md index eddcecd4..8568c83f 100644 --- a/cameras/eufy/homebase-s380-cam-s330.md +++ b/cameras/eufy/homebase-s380-cam-s330.md @@ -8,7 +8,7 @@ | Model | EufyCam 3C (S330) | | Type | bullet | | Connectivity | wifi | -| Resolution | 2K (4MP, 2048×1080) | +| Resolution | 2K (4MP) | | Lens | 1× | | Field of view | 135 diagonal° | | Night vision | color (10m) | diff --git a/cameras/eufy/outdoor-cam-e210.json b/cameras/eufy/outdoor-cam-e210.json index 617f914a..2b413385 100644 --- a/cameras/eufy/outdoor-cam-e210.json +++ b/cameras/eufy/outdoor-cam-e210.json @@ -55,5 +55,9 @@ "msrp_usd": 79.99, "sources": [ "https://www.eufy.com/products/outdoor-cam-e210" + ], + "power_source": [ + "battery", + "solar" ] } diff --git a/cameras/eufy/s220-solocam.json b/cameras/eufy/s220-solocam.json index 59c23bb1..8b7cb677 100644 --- a/cameras/eufy/s220-solocam.json +++ b/cameras/eufy/s220-solocam.json @@ -12,8 +12,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { diff --git a/cameras/eufy/s220-solocam.md b/cameras/eufy/s220-solocam.md index 48125100..35ae209a 100644 --- a/cameras/eufy/s220-solocam.md +++ b/cameras/eufy/s220-solocam.md @@ -8,7 +8,7 @@ | Model | SoloCam S220 | | Type | bullet | | Connectivity | wifi | -| Resolution | 2K (4MP, 2048×1080) | +| Resolution | 2K (4MP) | | Lens | 1× | | Field of view | 90 diagonal° | | Night vision | color (7m) | diff --git a/cameras/eufy/solocam-l20.json b/cameras/eufy/solocam-l20.json index 1124667f..e3c5ec0b 100644 --- a/cameras/eufy/solocam-l20.json +++ b/cameras/eufy/solocam-l20.json @@ -55,5 +55,9 @@ "msrp_usd": 39.99, "sources": [ "https://www.eufy.com/products/solocam-l20" + ], + "power_source": [ + "battery", + "solar" ] } diff --git a/cameras/eufy/solocam-l40.json b/cameras/eufy/solocam-l40.json index beee8dd4..cf3c78f6 100644 --- a/cameras/eufy/solocam-l40.json +++ b/cameras/eufy/solocam-l40.json @@ -55,5 +55,9 @@ "msrp_usd": 59.99, "sources": [ "https://www.eufy.com/products/solocam-l40" + ], + "power_source": [ + "battery", + "solar" ] } diff --git a/cameras/eufy/solocam-s40.json b/cameras/eufy/solocam-s40.json index bbc22e3e..e351a0ef 100644 --- a/cameras/eufy/solocam-s40.json +++ b/cameras/eufy/solocam-s40.json @@ -11,8 +11,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { diff --git a/cameras/eufy/solocam-s40.md b/cameras/eufy/solocam-s40.md index d7a79ad4..1ceacc5f 100644 --- a/cameras/eufy/solocam-s40.md +++ b/cameras/eufy/solocam-s40.md @@ -8,7 +8,7 @@ | Model | SoloCam S40 | | Type | bullet | | Connectivity | wifi | -| Resolution | 2K (4MP, 2048×1080) | +| Resolution | 2K (4MP) | | Lens | 1× | | Field of view | 90 diagonal° | | Night vision | color (8m) | diff --git a/cameras/geovision/gv-efer3700.json b/cameras/geovision/gv-efer3700.json index d223da4a..9bb6c999 100644 --- a/cameras/geovision/gv-efer3700.json +++ b/cameras/geovision/gv-efer3700.json @@ -7,10 +7,10 @@ "ethernet" ], "resolution": { - "megapixels": 3, + "megapixels": 4, "max_width": 2048, "max_height": 2048, - "label": "3MP Fisheye" + "label": "4MP Fisheye" }, "sensor": "1/2.8\" Progressive Scan CMOS", "lens": { diff --git a/cameras/geovision/gv-efer3700.md b/cameras/geovision/gv-efer3700.md index 48d8ff21..48c3df62 100644 --- a/cameras/geovision/gv-efer3700.md +++ b/cameras/geovision/gv-efer3700.md @@ -6,7 +6,7 @@ | Model | GV-EFER3700 | | Type | fisheye | | Connectivity | ethernet | -| Resolution | 3MP Fisheye (3MP, 2048×2048) | +| Resolution | 4MP Fisheye (4MP, 2048×2048) | | Sensor | 1/2.8" Progressive Scan CMOS | | Lens | 1× 1.45mm | | Field of view | 360 horizontal° | diff --git a/cameras/google/nest-cam-battery-2nd.json b/cameras/google/nest-cam-battery-2nd.json deleted file mode 100644 index 9525b23b..00000000 --- a/cameras/google/nest-cam-battery-2nd.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "id": "google-nest-cam-battery-2nd", - "brand": "Google", - "model": "Nest Cam (Battery) 2nd Gen", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2024, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "Rechargeable battery / solar optional" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 0, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Battery Gen 2 upgraded", - "1080p HDR", - "person/animal/vehicle detection", - "3hr event history free", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "battery", - "solar" - ] -} diff --git a/cameras/google/nest-cam-battery-2nd.md b/cameras/google/nest-cam-battery-2nd.md deleted file mode 100644 index 64dd7673..00000000 --- a/cameras/google/nest-cam-battery-2nd.md +++ /dev/null @@ -1,32 +0,0 @@ -# Google Nest Cam (Battery) 2nd Gen - -| Field | Spec | -|-------|------| -| Brand | Google | -| Model | Nest Cam (Battery) 2nd Gen | -| Type | bullet | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 130h° | -| Night vision | ir (6m) | -| Power | Rechargeable battery / solar optional | -| Protocols | http | -| IP rating | IP54 | -| Two-way audio | Yes | -| Released | 2024 | - -## Features - -- Google Nest Cam Battery Gen 2 upgraded -- 1080p HDR -- person/animal/vehicle detection -- 3hr event history free -- Google Home / Alexa -- IP54 - -## Sources - -- https://store.google.com/ - ---- -*Auto-generated from google-nest-cam-battery-2nd.json — do not edit by hand.* diff --git a/cameras/google/nest-cam-floodlight-wired.json b/cameras/google/nest-cam-floodlight-wired.json deleted file mode 100644 index 8ab7f9af..00000000 --- a/cameras/google/nest-cam-floodlight-wired.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "id": "google-nest-cam-floodlight-wired", - "brand": "Google", - "model": "Nest Cam with Floodlight (Wired 2nd Gen)", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2024, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "color", - "range_m": 20 - }, - "power": { - "method": "Hardwired AC 120V" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Floodlight Gen 2 2000-lumen", - "1080p HDR", - "colour night vision", - "person/animal/vehicle detection", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "ac-mains" - ] -} diff --git a/cameras/google/nest-cam-floodlight-wired.md b/cameras/google/nest-cam-floodlight-wired.md deleted file mode 100644 index 8055c9da..00000000 --- a/cameras/google/nest-cam-floodlight-wired.md +++ /dev/null @@ -1,32 +0,0 @@ -# Google Nest Cam with Floodlight (Wired 2nd Gen) - -| Field | Spec | -|-------|------| -| Brand | Google | -| Model | Nest Cam with Floodlight (Wired 2nd Gen) | -| Type | bullet | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 130h° | -| Night vision | color (20m) | -| Power | Hardwired AC 120V | -| Protocols | http | -| IP rating | IP54 | -| Two-way audio | Yes | -| Released | 2024 | - -## Features - -- Google Nest Cam Floodlight Gen 2 2000-lumen -- 1080p HDR -- colour night vision -- person/animal/vehicle detection -- Google Home / Alexa -- IP54 - -## Sources - -- https://store.google.com/ - ---- -*Auto-generated from google-nest-cam-floodlight-wired.json — do not edit by hand.* diff --git a/cameras/google/nest-cam-outdoor-wired.json b/cameras/google/nest-cam-outdoor-wired.json deleted file mode 100644 index c0304fe8..00000000 --- a/cameras/google/nest-cam-outdoor-wired.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "id": "google-nest-cam-outdoor-wired", - "brand": "Google", - "model": "Nest Cam Outdoor (Wired)", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "DC 5V USB-C weatherproof" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Outdoor wired continuous 24/7 recording on Nest Aware Plus", - "person/animal/vehicle detection", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "usb" - ] -} diff --git a/cameras/google/nest-cam-outdoor-wired.md b/cameras/google/nest-cam-outdoor-wired.md deleted file mode 100644 index 0724f2ae..00000000 --- a/cameras/google/nest-cam-outdoor-wired.md +++ /dev/null @@ -1,30 +0,0 @@ -# Google Nest Cam Outdoor (Wired) - -| Field | Spec | -|-------|------| -| Brand | Google | -| Model | Nest Cam Outdoor (Wired) | -| Type | bullet | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 130h° | -| Night vision | ir (6m) | -| Power | DC 5V USB-C weatherproof | -| Protocols | http | -| IP rating | IP54 | -| Two-way audio | Yes | -| Released | 2021 | - -## Features - -- Google Nest Cam Outdoor wired continuous 24/7 recording on Nest Aware Plus -- person/animal/vehicle detection -- Google Home / Alexa -- IP54 - -## Sources - -- https://store.google.com/ - ---- -*Auto-generated from google-nest-cam-outdoor-wired.json — do not edit by hand.* diff --git a/cameras/google/nest-doorbell-wired-2021.json b/cameras/google/nest-doorbell-wired-2021.json deleted file mode 100644 index d13f63b6..00000000 --- a/cameras/google/nest-doorbell-wired-2021.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "id": "google-nest-doorbell-wired-2021", - "brand": "Google", - "model": "Nest Doorbell (Wired, 2nd Gen)", - "aliases": [ - "GA01318-US" - ], - "type": "doorbell", - "connectivity": [ - "wifi", - "ethernet" - ], - "resolution": { - "megapixels": 2, - "max_width": 1920, - "max_height": 1080, - "label": "1080p" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "145 diagonal", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "Hardwired (8-24 VAC) – no battery" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "HDR video", - "6x digital zoom", - "continuous 24/7 recording (Nest Aware Plus)", - "person / package / animal / vehicle detection", - "familiar face alerts", - "noise cancelling two-way audio", - "Google Home app", - "Alexa" - ], - "release_year": 2021, - "msrp_usd": 179.99, - "sources": [ - "https://store.google.com/product/nest_doorbell_wired_specs" - ], - "power_source": [ - "battery", - "ac-mains" - ] -} diff --git a/cameras/google/nest-doorbell-wired-2021.md b/cameras/google/nest-doorbell-wired-2021.md deleted file mode 100644 index 3a7848a3..00000000 --- a/cameras/google/nest-doorbell-wired-2021.md +++ /dev/null @@ -1,38 +0,0 @@ -# Google Nest Doorbell (Wired, 2nd Gen) - -*Also known as: GA01318-US* - -| Field | Spec | -|-------|------| -| Brand | Google | -| Model | Nest Doorbell (Wired, 2nd Gen) | -| Type | doorbell | -| Connectivity | wifi, ethernet | -| Resolution | 1080p (2MP, 1920×1080) | -| Sensor | 1/2.8" CMOS | -| Lens | 1× | -| Field of view | 145 diagonal° | -| Night vision | ir (6m) | -| Power | Hardwired (8-24 VAC) – no battery | -| Protocols | http | -| IP rating | IP54 | -| Two-way audio | Yes | -| Released | 2021 | - -## Features - -- HDR video -- 6x digital zoom -- continuous 24/7 recording (Nest Aware Plus) -- person / package / animal / vehicle detection -- familiar face alerts -- noise cancelling two-way audio -- Google Home app -- Alexa - -## Sources - -- https://store.google.com/product/nest_doorbell_wired_specs - ---- -*Auto-generated from google-nest-doorbell-wired-2021.json — do not edit by hand.* diff --git a/cameras/google/nest-doorbell-wired-2nd-gen-uk.json b/cameras/google/nest-doorbell-wired-2nd-gen-uk.json index 0913d7ce..3816ca44 100644 --- a/cameras/google/nest-doorbell-wired-2nd-gen-uk.json +++ b/cameras/google/nest-doorbell-wired-2nd-gen-uk.json @@ -16,8 +16,6 @@ ], "resolution": { "megapixels": 2, - "max_width": 960, - "max_height": 1280, "label": "960x1280 HD" }, "lens": { diff --git a/cameras/google/nest-doorbell-wired-2nd-gen-uk.md b/cameras/google/nest-doorbell-wired-2nd-gen-uk.md index bf37107d..d0921f67 100644 --- a/cameras/google/nest-doorbell-wired-2nd-gen-uk.md +++ b/cameras/google/nest-doorbell-wired-2nd-gen-uk.md @@ -8,7 +8,7 @@ | Model | Nest Doorbell (Wired, 2nd Gen) UK | | Type | doorbell | | Connectivity | wifi | -| Resolution | 960x1280 HD (2MP, 960×1280) | +| Resolution | 960x1280 HD (2MP) | | Lens | 1× | | Field of view | 145 diagonal° | | Night vision | ir (3m) | diff --git a/cameras/google/nest-doorbell-wired-2nd-gen.json b/cameras/google/nest-doorbell-wired-2nd-gen.json index f76855d0..54fe9797 100644 --- a/cameras/google/nest-doorbell-wired-2nd-gen.json +++ b/cameras/google/nest-doorbell-wired-2nd-gen.json @@ -13,8 +13,6 @@ "release_year": 2022, "resolution": { "megapixels": 2, - "max_width": 960, - "max_height": 1280, "label": "960x1280 HD" }, "sensor": "CMOS", diff --git a/cameras/google/nest-doorbell-wired-2nd-gen.md b/cameras/google/nest-doorbell-wired-2nd-gen.md index ec3ba376..fea5c445 100644 --- a/cameras/google/nest-doorbell-wired-2nd-gen.md +++ b/cameras/google/nest-doorbell-wired-2nd-gen.md @@ -8,7 +8,7 @@ | Model | Nest Doorbell (Wired, 2nd Gen) | | Type | doorbell | | Connectivity | wifi | -| Resolution | 960x1280 HD (2MP, 960×1280) | +| Resolution | 960x1280 HD (2MP) | | Sensor | CMOS | | Lens | 1× Fixedmm | | Field of view | 145 diagonal° | diff --git a/cameras/hanwha/pnm-9000vq.json b/cameras/hanwha/pnm-9000vq.json index 442cb852..c17a02e1 100644 --- a/cameras/hanwha/pnm-9000vq.json +++ b/cameras/hanwha/pnm-9000vq.json @@ -12,7 +12,7 @@ "release_year": 2023, "resolution": { "megapixels": 20, - "max_width": 2592, + "max_width": 8000, "max_height": 1944, "label": "4x5MP (20MP total)" }, diff --git a/cameras/hanwha/pnm-9000vq.md b/cameras/hanwha/pnm-9000vq.md index 653c31c5..24ddaca8 100644 --- a/cameras/hanwha/pnm-9000vq.md +++ b/cameras/hanwha/pnm-9000vq.md @@ -8,7 +8,7 @@ | Model | PNM-9000VQ | | Type | panoramic | | Connectivity | ethernet | -| Resolution | 4x5MP (20MP total) (20MP, 2592×1944) | +| Resolution | 4x5MP (20MP total) (20MP, 8000×1944) | | Sensor | 4x 1/2.8" Progressive Scan CMOS | | Lens | 4× 3.69 (fixed per channel)mm | | Field of view | 360 (4x 90°)° | diff --git a/cameras/hanwha/pnm-9322vqp.json b/cameras/hanwha/pnm-9322vqp.json index 2c635dc9..25ec0ead 100644 --- a/cameras/hanwha/pnm-9322vqp.json +++ b/cameras/hanwha/pnm-9322vqp.json @@ -47,6 +47,7 @@ "two_way": true }, "features": [ + "pan/tilt/zoom", "multi-directional + PTZ combo", "5MP fixed + 2MP 40x PTZ", "AI deep-learning analytics", diff --git a/cameras/hanwha/pnm-9322vqp.md b/cameras/hanwha/pnm-9322vqp.md index ff364dd7..4156f993 100644 --- a/cameras/hanwha/pnm-9322vqp.md +++ b/cameras/hanwha/pnm-9322vqp.md @@ -22,6 +22,7 @@ ## Features +- pan/tilt/zoom - multi-directional + PTZ combo - 5MP fixed + 2MP 40x PTZ - AI deep-learning analytics diff --git a/cameras/hanwha/qnd-8080r-kr.json b/cameras/hanwha/qnd-8080r-kr.json index 9e418ef7..06e7485e 100644 --- a/cameras/hanwha/qnd-8080r-kr.json +++ b/cameras/hanwha/qnd-8080r-kr.json @@ -46,7 +46,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -61,7 +60,8 @@ "Korean-made Hanwha", "#1 Korea domestic surveillance brand", "largest market share South Korea domestic", - "ADT Caps / KT Telecop system integrator preferred" + "ADT Caps / KT Telecop system integrator preferred", + "IK10" ], "sources": [ "https://www.hanwhavision.com/en-kr/" diff --git a/cameras/hanwha/qnd-8080r-kr.md b/cameras/hanwha/qnd-8080r-kr.md index a4656a2b..a5661796 100644 --- a/cameras/hanwha/qnd-8080r-kr.md +++ b/cameras/hanwha/qnd-8080r-kr.md @@ -16,7 +16,6 @@ | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 128GB, NVR | | Protocols | onvif, rtsp | -| IP rating | IK10 | | Two-way audio | No | | Released | 2020 | @@ -31,6 +30,7 @@ - #1 Korea domestic surveillance brand - largest market share South Korea domestic - ADT Caps / KT Telecop system integrator preferred +- IK10 ## Sources diff --git a/cameras/hanwha/qnv-8080r.json b/cameras/hanwha/qnv-8080r.json index 4be86d52..e6ac7e62 100644 --- a/cameras/hanwha/qnv-8080r.json +++ b/cameras/hanwha/qnv-8080r.json @@ -38,8 +38,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { diff --git a/cameras/hanwha/qnv-8080r.md b/cameras/hanwha/qnv-8080r.md index ef45c32f..56e91b49 100644 --- a/cameras/hanwha/qnv-8080r.md +++ b/cameras/hanwha/qnv-8080r.md @@ -15,7 +15,7 @@ | Night vision | ir (30m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 128GB, NVR | -| Protocols | onvif, rtsp, http | +| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | diff --git a/cameras/hanwha/qnv-a9402r.json b/cameras/hanwha/qnv-a9402r.json index 1daf2e90..b49b6515 100644 --- a/cameras/hanwha/qnv-a9402r.json +++ b/cameras/hanwha/qnv-a9402r.json @@ -42,7 +42,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, diff --git a/cameras/hanwha/qnv-a9402r.md b/cameras/hanwha/qnv-a9402r.md index 7ccfd79a..b0a639a7 100644 --- a/cameras/hanwha/qnv-a9402r.md +++ b/cameras/hanwha/qnv-a9402r.md @@ -16,7 +16,6 @@ | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 256GB, NVR | | Protocols | onvif, rtsp | -| IP rating | IK10 | | Two-way audio | No | | Released | 2025 | diff --git a/cameras/hanwha/qptz-8300hn.json b/cameras/hanwha/qptz-8300hn.json index 613624ba..2a96f77b 100644 --- a/cameras/hanwha/qptz-8300hn.json +++ b/cameras/hanwha/qptz-8300hn.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Wisenet Q 4MP 32x PTZ", "100m IR", "auto-tracking", diff --git a/cameras/hanwha/qptz-8300hn.md b/cameras/hanwha/qptz-8300hn.md index ee5c208d..5c71c51d 100644 --- a/cameras/hanwha/qptz-8300hn.md +++ b/cameras/hanwha/qptz-8300hn.md @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - Wisenet Q 4MP 32x PTZ - 100m IR - auto-tracking diff --git a/cameras/hanwha/ruggedized-ptz-wisenet9.json b/cameras/hanwha/ruggedized-ptz-wisenet9.json index 0489e926..cf516d83 100644 --- a/cameras/hanwha/ruggedized-ptz-wisenet9.json +++ b/cameras/hanwha/ruggedized-ptz-wisenet9.json @@ -46,6 +46,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Wisenet 9 SoC (dual NPU)", "high-durability ruggedized housing", "AI-based noise reduction", diff --git a/cameras/hanwha/ruggedized-ptz-wisenet9.md b/cameras/hanwha/ruggedized-ptz-wisenet9.md index 85653b37..6e25d152 100644 --- a/cameras/hanwha/ruggedized-ptz-wisenet9.md +++ b/cameras/hanwha/ruggedized-ptz-wisenet9.md @@ -21,6 +21,7 @@ ## Features +- pan/tilt/zoom - Wisenet 9 SoC (dual NPU) - high-durability ruggedized housing - AI-based noise reduction diff --git a/cameras/hikvision/ds-2cd2025fwd-i.json b/cameras/hikvision/ds-2cd2025fwd-i.json index 3917f698..9967e0ce 100644 --- a/cameras/hikvision/ds-2cd2025fwd-i.json +++ b/cameras/hikvision/ds-2cd2025fwd-i.json @@ -13,8 +13,8 @@ }, "field_of_view_deg": "103h", "night_vision": { - "type": "none", - "range_m": 0 + "type": "ir", + "range_m": 30 }, "power": { "method": "PoE (802.3af) / DC 12V" @@ -38,10 +38,10 @@ "features": [ "2MP DarkFighter mini bullet", "0.002 lux ultra-low light", - "no IR", "H.265", "ONVIF/RTSP", - "IP67" + "IP67", + "EXIR 30m IR" ], "sources": [ "https://www.hikvision.com/en/products/" diff --git a/cameras/hikvision/ds-2cd2025fwd-i.md b/cameras/hikvision/ds-2cd2025fwd-i.md index c5eb6e60..0a4c56af 100644 --- a/cameras/hikvision/ds-2cd2025fwd-i.md +++ b/cameras/hikvision/ds-2cd2025fwd-i.md @@ -8,7 +8,7 @@ | Connectivity | ethernet | | Resolution | 1080p HD (2MP) | | Field of view | 103h° | -| Night vision | none | +| Night vision | ir (30m) | | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 256GB, NVR | | Protocols | onvif, rtsp | @@ -20,10 +20,10 @@ - 2MP DarkFighter mini bullet - 0.002 lux ultra-low light -- no IR - H.265 - ONVIF/RTSP - IP67 +- EXIR 30m IR ## Sources diff --git a/cameras/hikvision/ds-2cd2346g2p-isu-sl.json b/cameras/hikvision/ds-2cd2346g2p-isu-sl.json index da0edf66..f0b94eab 100644 --- a/cameras/hikvision/ds-2cd2346g2p-isu-sl.json +++ b/cameras/hikvision/ds-2cd2346g2p-isu-sl.json @@ -68,7 +68,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Dual-lens panoramic ColorVu — single stitched 180° stream, wider than 16:9. Set Frigate detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2cd2385g1-i.json b/cameras/hikvision/ds-2cd2385g1-i.json index 2746670c..f39fe444 100644 --- a/cameras/hikvision/ds-2cd2385g1-i.json +++ b/cameras/hikvision/ds-2cd2385g1-i.json @@ -5,7 +5,7 @@ "aliases": [ "WDR Fixed Cube 8MP IP Camera" ], - "type": "covert", + "type": "turret", "connectivity": [ "ethernet" ], diff --git a/cameras/hikvision/ds-2cd2385g1-i.md b/cameras/hikvision/ds-2cd2385g1-i.md index 5be6c7cb..6bf61333 100644 --- a/cameras/hikvision/ds-2cd2385g1-i.md +++ b/cameras/hikvision/ds-2cd2385g1-i.md @@ -6,7 +6,7 @@ |-------|------| | Brand | Hikvision | | Model | DS-2CD2385G1-I | -| Type | covert | +| Type | turret | | Connectivity | ethernet | | Resolution | 4K UHD (8MP, 3840×2160) | | Sensor | 1/2.7" CMOS | diff --git a/cameras/hikvision/ds-2cd2443g2-iw.json b/cameras/hikvision/ds-2cd2443g2-iw.json index 7547cea3..6ca20003 100644 --- a/cameras/hikvision/ds-2cd2443g2-iw.json +++ b/cameras/hikvision/ds-2cd2443g2-iw.json @@ -2,7 +2,7 @@ "id": "hikvision-ds-2cd2443g2-iw", "brand": "Hikvision", "model": "DS-2CD2443G2-I(W)", - "type": "covert", + "type": "box", "connectivity": [ "ethernet" ], diff --git a/cameras/hikvision/ds-2cd2443g2-iw.md b/cameras/hikvision/ds-2cd2443g2-iw.md index 535fc6d8..7d31ac51 100644 --- a/cameras/hikvision/ds-2cd2443g2-iw.md +++ b/cameras/hikvision/ds-2cd2443g2-iw.md @@ -4,7 +4,7 @@ |-------|------| | Brand | Hikvision | | Model | DS-2CD2443G2-I(W) | -| Type | covert | +| Type | box | | Connectivity | ethernet | | Resolution | 4MP (4MP) | | Field of view | 110h° | diff --git a/cameras/hikvision/ds-2cd2955fwd-is.json b/cameras/hikvision/ds-2cd2955fwd-is.json index fe355f65..006d8bb8 100644 --- a/cameras/hikvision/ds-2cd2955fwd-is.json +++ b/cameras/hikvision/ds-2cd2955fwd-is.json @@ -73,7 +73,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — main stream is the raw circular fisheye image. Frigate detection works on the fisheye view; dewarping requires camera-side view modes (each exposed as separate stream/channel)." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2cd2983g2-iu.json b/cameras/hikvision/ds-2cd2983g2-iu.json index 5283130a..2d61d327 100644 --- a/cameras/hikvision/ds-2cd2983g2-iu.json +++ b/cameras/hikvision/ds-2cd2983g2-iu.json @@ -68,7 +68,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — raw fisheye stream; dewarped views available as additional channels (Streaming/Channels/201 etc. depending on view mode)." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2cd6365g0e-ivs.json b/cameras/hikvision/ds-2cd6365g0e-ivs.json index f6d12a0a..14d8ad7a 100644 --- a/cameras/hikvision/ds-2cd6365g0e-ivs.json +++ b/cameras/hikvision/ds-2cd6365g0e-ivs.json @@ -59,7 +59,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — raw fisheye main stream; hardware dewarp views exposed as separate channels." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2cd63c5g1-ivs.json b/cameras/hikvision/ds-2cd63c5g1-ivs.json index b8e1225f..fafdbf3b 100644 --- a/cameras/hikvision/ds-2cd63c5g1-ivs.json +++ b/cameras/hikvision/ds-2cd63c5g1-ivs.json @@ -14,7 +14,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -71,7 +71,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "12MP fisheye — raw fisheye main stream; hardware dewarp views exposed as separate channels." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2cd63c5g1-ivs.md b/cameras/hikvision/ds-2cd63c5g1-ivs.md index 19d6fe09..63438262 100644 --- a/cameras/hikvision/ds-2cd63c5g1-ivs.md +++ b/cameras/hikvision/ds-2cd63c5g1-ivs.md @@ -8,7 +8,7 @@ | Model | DS-2CD63C5G1-IVS | | Type | fisheye | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/1.7" Progressive Scan CMOS | | Lens | 1× 1.29 (fixed fisheye)mm F2.0 | | Field of view | 360° | diff --git a/cameras/hikvision/ds-2cd6944g0-ihs.json b/cameras/hikvision/ds-2cd6944g0-ihs.json index 137cfb79..73accf42 100644 --- a/cameras/hikvision/ds-2cd6944g0-ihs.json +++ b/cameras/hikvision/ds-2cd6944g0-ihs.json @@ -58,7 +58,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "PanoVu 4-sensor panoramic — each sensor is a separate channel: Streaming/Channels/101, 201, 301, 401. Configure each as its own Frigate camera, or use the stitched stream if firmware provides it." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2ce16d8t-it3f.json b/cameras/hikvision/ds-2ce16d8t-it3f.json index 22418f9d..a96fa882 100644 --- a/cameras/hikvision/ds-2ce16d8t-it3f.json +++ b/cameras/hikvision/ds-2ce16d8t-it3f.json @@ -4,7 +4,7 @@ "model": "DS-2CE16D8T-IT3F", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2020, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -34,9 +32,9 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "2MP Ultra-Low Light TurboHD analog bullet", "60m Smart IR", - "4-in-1 HDCVI/TVI/AHD/CVBS", "H.265", "IP67", "legacy analog upgrade path" diff --git a/cameras/hikvision/ds-2ce16d8t-it3f.md b/cameras/hikvision/ds-2ce16d8t-it3f.md index 158aa5d0..296a968a 100644 --- a/cameras/hikvision/ds-2ce16d8t-it3f.md +++ b/cameras/hikvision/ds-2ce16d8t-it3f.md @@ -5,22 +5,21 @@ | Brand | Hikvision | | Model | DS-2CE16D8T-IT3F | | Type | bullet | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 1080p HD (2MP) | | Field of view | 103h° | | Night vision | ir (60m) | | Power | DC 12V (coaxial HDCVI) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2020 | ## Features +- Turbo HD (HD-TVI) analog over coax - 2MP Ultra-Low Light TurboHD analog bullet - 60m Smart IR -- 4-in-1 HDCVI/TVI/AHD/CVBS - H.265 - IP67 - legacy analog upgrade path diff --git a/cameras/hikvision/ds-2ce16h8t-it3f.json b/cameras/hikvision/ds-2ce16h8t-it3f.json index b882b568..320187c6 100644 --- a/cameras/hikvision/ds-2ce16h8t-it3f.json +++ b/cameras/hikvision/ds-2ce16h8t-it3f.json @@ -4,7 +4,7 @@ "model": "DS-2CE16H8T-IT3F", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2020, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -34,6 +32,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP Ultra-Low Light TurboHD analog bullet", "60m Smart IR", "4-in-1", diff --git a/cameras/hikvision/ds-2ce16h8t-it3f.md b/cameras/hikvision/ds-2ce16h8t-it3f.md index 081f7f9c..34e3b745 100644 --- a/cameras/hikvision/ds-2ce16h8t-it3f.md +++ b/cameras/hikvision/ds-2ce16h8t-it3f.md @@ -5,19 +5,19 @@ | Brand | Hikvision | | Model | DS-2CE16H8T-IT3F | | Type | bullet | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 5MP HD (5MP) | | Field of view | 103h° | | Night vision | ir (60m) | | Power | DC 12V (coaxial HDCVI) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2020 | ## Features +- Turbo HD (HD-TVI) analog over coax - 5MP Ultra-Low Light TurboHD analog bullet - 60m Smart IR - 4-in-1 diff --git a/cameras/hikvision/ds-2ce16k0t-itf.json b/cameras/hikvision/ds-2ce16k0t-itf.json index 1780df02..c17dfd6e 100644 --- a/cameras/hikvision/ds-2ce16k0t-itf.json +++ b/cameras/hikvision/ds-2ce16k0t-itf.json @@ -4,7 +4,7 @@ "model": "DS-2CE16K0T-ITF", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2021, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP66", "audio": { "microphone": false, @@ -34,9 +32,9 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP TurboHD Analog bullet", "40m IR", - "4-in-1 HDCVI/TVI/AHD/CVBS", "IP66", "budget analog surveillance" ], diff --git a/cameras/hikvision/ds-2ce16k0t-itf.md b/cameras/hikvision/ds-2ce16k0t-itf.md index 8234fea5..63f6b865 100644 --- a/cameras/hikvision/ds-2ce16k0t-itf.md +++ b/cameras/hikvision/ds-2ce16k0t-itf.md @@ -5,22 +5,21 @@ | Brand | Hikvision | | Model | DS-2CE16K0T-ITF | | Type | bullet | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 5MP HD (5MP) | | Field of view | 103h° | | Night vision | ir (40m) | | Power | DC 12V (coaxial HDCVI) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP66 | | Two-way audio | No | | Released | 2021 | ## Features +- Turbo HD (HD-TVI) analog over coax - 5MP TurboHD Analog bullet - 40m IR -- 4-in-1 HDCVI/TVI/AHD/CVBS - IP66 - budget analog surveillance diff --git a/cameras/hikvision/ds-2ce76k0t-itmfs.json b/cameras/hikvision/ds-2ce76k0t-itmfs.json index 7b47e520..3fadd72c 100644 --- a/cameras/hikvision/ds-2ce76k0t-itmfs.json +++ b/cameras/hikvision/ds-2ce76k0t-itmfs.json @@ -4,7 +4,7 @@ "model": "DS-2CE76K0T-ITMFS", "type": "turret", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2021, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -34,6 +32,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP TurboHD analog turret with mic", "40m IR", "4-in-1", diff --git a/cameras/hikvision/ds-2ce76k0t-itmfs.md b/cameras/hikvision/ds-2ce76k0t-itmfs.md index 1f469e02..14b913fc 100644 --- a/cameras/hikvision/ds-2ce76k0t-itmfs.md +++ b/cameras/hikvision/ds-2ce76k0t-itmfs.md @@ -5,19 +5,19 @@ | Brand | Hikvision | | Model | DS-2CE76K0T-ITMFS | | Type | turret | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 5MP HD (5MP) | | Field of view | 103h° | | Night vision | ir (40m) | | Power | DC 12V (coaxial HDCVI) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2021 | ## Features +- Turbo HD (HD-TVI) analog over coax - 5MP TurboHD analog turret with mic - 40m IR - 4-in-1 diff --git a/cameras/hikvision/ds-2ce76k0t-lmfs.json b/cameras/hikvision/ds-2ce76k0t-lmfs.json index e379469d..8d6c0eb5 100644 --- a/cameras/hikvision/ds-2ce76k0t-lmfs.json +++ b/cameras/hikvision/ds-2ce76k0t-lmfs.json @@ -4,7 +4,7 @@ "model": "DS-2CE76K0T-LMFS", "type": "turret", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -24,9 +24,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -34,6 +32,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP Smart Hybrid Light TurboHD turret", "dual light (IR + warm LED)", "4-in-1", diff --git a/cameras/hikvision/ds-2ce76k0t-lmfs.md b/cameras/hikvision/ds-2ce76k0t-lmfs.md index 892e0910..380ae9f5 100644 --- a/cameras/hikvision/ds-2ce76k0t-lmfs.md +++ b/cameras/hikvision/ds-2ce76k0t-lmfs.md @@ -5,19 +5,19 @@ | Brand | Hikvision | | Model | DS-2CE76K0T-LMFS | | Type | turret | -| Connectivity | ethernet | +| Connectivity | coax | | Resolution | 5MP HD (5MP) | | Field of view | 103h° | | Night vision | color (40m) | | Power | DC 12V (coaxial HDCVI) | | Storage | NVR | -| Protocols | hdcvi | | IP rating | IP67 | | Two-way audio | No | | Released | 2022 | ## Features +- Turbo HD (HD-TVI) analog over coax - 5MP Smart Hybrid Light TurboHD turret - dual light (IR + warm LED) - 4-in-1 diff --git a/cameras/hikvision/ds-2de2a204iw-de3-w.json b/cameras/hikvision/ds-2de2a204iw-de3-w.json index 58038e05..01cfce4e 100644 --- a/cameras/hikvision/ds-2de2a204iw-de3-w.json +++ b/cameras/hikvision/ds-2de2a204iw-de3-w.json @@ -68,7 +68,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de3a400bw-de.json b/cameras/hikvision/ds-2de3a400bw-de.json index 2fb0aa4f..a1235ce6 100644 --- a/cameras/hikvision/ds-2de3a400bw-de.json +++ b/cameras/hikvision/ds-2de3a400bw-de.json @@ -70,7 +70,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de3a400bwg-e.json b/cameras/hikvision/ds-2de3a400bwg-e.json index d5623c41..15d5fcde 100644 --- a/cameras/hikvision/ds-2de3a400bwg-e.json +++ b/cameras/hikvision/ds-2de3a400bwg-e.json @@ -70,7 +70,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de3a400bwg-et5.json b/cameras/hikvision/ds-2de3a400bwg-et5.json index 1d6932f3..6e776535 100644 --- a/cameras/hikvision/ds-2de3a400bwg-et5.json +++ b/cameras/hikvision/ds-2de3a400bwg-et5.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 4x AcuSense Mini PTZ outdoor IP66 50m IR", "auto-tracking", "H.265+" @@ -59,7 +60,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de3a400bwg-et5.md b/cameras/hikvision/ds-2de3a400bwg-et5.md index 1dfd7331..592094cb 100644 --- a/cameras/hikvision/ds-2de3a400bwg-et5.md +++ b/cameras/hikvision/ds-2de3a400bwg-et5.md @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - 4MP 4x AcuSense Mini PTZ outdoor IP66 50m IR - auto-tracking - H.265+ diff --git a/cameras/hikvision/ds-2de4425iw-de-t5-india.json b/cameras/hikvision/ds-2de4425iw-de-t5-india.json index deea7fc9..9938c4a6 100644 --- a/cameras/hikvision/ds-2de4425iw-de-t5-india.json +++ b/cameras/hikvision/ds-2de4425iw-de-t5-india.json @@ -76,7 +76,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de4425iw-de.json b/cameras/hikvision/ds-2de4425iw-de.json index 884d0bf0..786058e0 100644 --- a/cameras/hikvision/ds-2de4425iw-de.json +++ b/cameras/hikvision/ds-2de4425iw-de.json @@ -74,7 +74,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de4425iwg-e-mena.json b/cameras/hikvision/ds-2de4425iwg-e-mena.json index 1f69f0bf..f79af5a2 100644 --- a/cameras/hikvision/ds-2de4425iwg-e-mena.json +++ b/cameras/hikvision/ds-2de4425iwg-e-mena.json @@ -79,7 +79,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de4a404iwg-e.json b/cameras/hikvision/ds-2de4a404iwg-e.json index ea4a40f5..2da277c1 100644 --- a/cameras/hikvision/ds-2de4a404iwg-e.json +++ b/cameras/hikvision/ds-2de4a404iwg-e.json @@ -72,7 +72,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de4a425iwg-e.json b/cameras/hikvision/ds-2de4a425iwg-e.json index a53bc800..96addb15 100644 --- a/cameras/hikvision/ds-2de4a425iwg-e.json +++ b/cameras/hikvision/ds-2de4a425iwg-e.json @@ -69,7 +69,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de5a425iwg-e.json b/cameras/hikvision/ds-2de5a425iwg-e.json index 6f97b903..38346474 100644 --- a/cameras/hikvision/ds-2de5a425iwg-e.json +++ b/cameras/hikvision/ds-2de5a425iwg-e.json @@ -69,7 +69,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de5a425iwg-eb.json b/cameras/hikvision/ds-2de5a425iwg-eb.json index 4837548d..9f321ed2 100644 --- a/cameras/hikvision/ds-2de5a425iwg-eb.json +++ b/cameras/hikvision/ds-2de5a425iwg-eb.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 25x PTZ DeepinView", "100m IR", "AcuSense AI", @@ -65,7 +66,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2de5a425iwg-eb.md b/cameras/hikvision/ds-2de5a425iwg-eb.md index d9c77d8f..9ef63806 100644 --- a/cameras/hikvision/ds-2de5a425iwg-eb.md +++ b/cameras/hikvision/ds-2de5a425iwg-eb.md @@ -20,6 +20,7 @@ ## Features +- pan/tilt/zoom - 4MP 25x PTZ DeepinView - 100m IR - AcuSense AI diff --git a/cameras/hikvision/ds-2de7a432iw-aeb.json b/cameras/hikvision/ds-2de7a432iw-aeb.json index 61f7369d..e24858eb 100644 --- a/cameras/hikvision/ds-2de7a432iw-aeb.json +++ b/cameras/hikvision/ds-2de7a432iw-aeb.json @@ -70,7 +70,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2pt3q27iwx-de.json b/cameras/hikvision/ds-2pt3q27iwx-de.json index f5b31615..6229da9b 100644 --- a/cameras/hikvision/ds-2pt3q27iwx-de.json +++ b/cameras/hikvision/ds-2pt3q27iwx-de.json @@ -66,7 +66,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "PT + fixed dual-unit camera — fixed lens is channel 1 (Streaming/Channels/101), PT unit is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2se4c425mwg-e.json b/cameras/hikvision/ds-2se4c425mwg-e.json index 9436ed90..5dbe3443 100644 --- a/cameras/hikvision/ds-2se4c425mwg-e.json +++ b/cameras/hikvision/ds-2se4c425mwg-e.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "TandemVu: bullet camera + PTZ in one unit", "4MP wide-angle overview + 4MP 25x PTZ", "ColorVu + AcuSense AI", @@ -63,7 +64,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "TandemVu PTZ+bullet combo — bullet is channel 1 (Streaming/Channels/101), PTZ is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras; ONVIF PTZ control on channel 2." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2se4c425mwg-e.md b/cameras/hikvision/ds-2se4c425mwg-e.md index 06b62910..b227b133 100644 --- a/cameras/hikvision/ds-2se4c425mwg-e.md +++ b/cameras/hikvision/ds-2se4c425mwg-e.md @@ -20,6 +20,7 @@ ## Features +- pan/tilt/zoom - TandemVu: bullet camera + PTZ in one unit - 4MP wide-angle overview + 4MP 25x PTZ - ColorVu + AcuSense AI diff --git a/cameras/hikvision/ds-2se4c430mwg-e.json b/cameras/hikvision/ds-2se4c430mwg-e.json index 2eb9152b..e6a36763 100644 --- a/cameras/hikvision/ds-2se4c430mwg-e.json +++ b/cameras/hikvision/ds-2se4c430mwg-e.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "TandemVu: overview + 30x PTZ", "4MP wide + 4MP 30x IR PTZ", "AcuSense AI", @@ -62,7 +63,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "TandemVu PTZ+bullet combo — bullet is channel 1 (Streaming/Channels/101), PTZ is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras; ONVIF PTZ control on channel 2." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2se4c430mwg-e.md b/cameras/hikvision/ds-2se4c430mwg-e.md index c676a8ae..145731d1 100644 --- a/cameras/hikvision/ds-2se4c430mwg-e.md +++ b/cameras/hikvision/ds-2se4c430mwg-e.md @@ -20,6 +20,7 @@ ## Features +- pan/tilt/zoom - TandemVu: overview + 30x PTZ - 4MP wide + 4MP 30x IR PTZ - AcuSense AI diff --git a/cameras/hikvision/ds-2xs6a26g0-i.json b/cameras/hikvision/ds-2xs6a26g0-i.json index d3c78ea7..f7967c45 100644 --- a/cameras/hikvision/ds-2xs6a26g0-i.json +++ b/cameras/hikvision/ds-2xs6a26g0-i.json @@ -59,7 +59,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Solar/battery powered enterprise camera — RTSP/ONVIF fully supported, but continuous 24/7 streaming will drain the battery faster than solar recharge in low-light seasons. Use sub-stream detection at low fps and motion-triggered recording." }, "home_assistant": { "integration": "onvif", diff --git a/cameras/hikvision/ds-2xs6a26g0-solar.json b/cameras/hikvision/ds-2xs6a26g0-solar.json deleted file mode 100644 index 69b74093..00000000 --- a/cameras/hikvision/ds-2xs6a26g0-solar.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "id": "hikvision-ds-2xs6a26g0-solar", - "brand": "Hikvision", - "model": "DS-2XS6A26G0-I/CH20S40", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2022, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "103h", - "night_vision": { - "type": "ir", - "range_m": 60 - }, - "power": { - "method": "Solar + 10400mAh battery" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Hikvision solar-powered WiFi AcuSense bullet", - "solar always-on", - "AcuSense AI", - "60m IR", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.hikvision.com/en/" - ], - "power_source": [ - "battery", - "solar" - ], - "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80. Enable in Configuration > Network > Integration Protocol." - }, - "blue_iris": { - "profile": "Hikvision", - "notes": "Select 'Hikvision' profile. Use main stream for recording, sub stream for live view." - } - } -} diff --git a/cameras/hikvision/ds-2xs6a26g0-solar.md b/cameras/hikvision/ds-2xs6a26g0-solar.md deleted file mode 100644 index 8f01034b..00000000 --- a/cameras/hikvision/ds-2xs6a26g0-solar.md +++ /dev/null @@ -1,33 +0,0 @@ -# Hikvision DS-2XS6A26G0-I/CH20S40 - -| Field | Spec | -|-------|------| -| Brand | Hikvision | -| Model | DS-2XS6A26G0-I/CH20S40 | -| Type | bullet | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 103h° | -| Night vision | ir (60m) | -| Power | Solar + 10400mAh battery | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | No | -| Released | 2022 | - -## Features - -- Hikvision solar-powered WiFi AcuSense bullet -- solar always-on -- AcuSense AI -- 60m IR -- H.265+ -- IP67 - -## Sources - -- https://www.hikvision.com/en/ - ---- -*Auto-generated from hikvision-ds-2xs6a26g0-solar.json — do not edit by hand.* diff --git a/cameras/hilook/ptz-n4mp.json b/cameras/hilook/ptz-n4mp.json index 8aa4214a..adabb4e0 100644 --- a/cameras/hilook/ptz-n4mp.json +++ b/cameras/hilook/ptz-n4mp.json @@ -48,6 +48,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "HiLook 4MP 20x PTZ entry-level", "80m IR", "auto-tracking", diff --git a/cameras/hilook/ptz-n4mp.md b/cameras/hilook/ptz-n4mp.md index 36f16bc2..bde7ef62 100644 --- a/cameras/hilook/ptz-n4mp.md +++ b/cameras/hilook/ptz-n4mp.md @@ -22,6 +22,7 @@ ## Features +- pan/tilt/zoom - HiLook 4MP 20x PTZ entry-level - 80m IR - auto-tracking diff --git a/cameras/honeywell/hcc-ip-ptz-25x.json b/cameras/honeywell/hcc-ip-ptz-25x.json index 75a742e2..f3ff38eb 100644 --- a/cameras/honeywell/hcc-ip-ptz-25x.json +++ b/cameras/honeywell/hcc-ip-ptz-25x.json @@ -48,6 +48,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 25x PTZ", "100m IR", "IVA analytics", diff --git a/cameras/honeywell/hcc-ip-ptz-25x.md b/cameras/honeywell/hcc-ip-ptz-25x.md index 0738345e..610bbaaa 100644 --- a/cameras/honeywell/hcc-ip-ptz-25x.md +++ b/cameras/honeywell/hcc-ip-ptz-25x.md @@ -22,6 +22,7 @@ ## Features +- pan/tilt/zoom - 4MP 25x PTZ - 100m IR - IVA analytics diff --git a/cameras/i-pro/wv-s2236l.json b/cameras/i-pro/wv-s2236l.json index 3d1f9d02..4379b664 100644 --- a/cameras/i-pro/wv-s2236l.json +++ b/cameras/i-pro/wv-s2236l.json @@ -46,7 +46,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": true, "speaker": false, @@ -62,7 +61,8 @@ "ONVIF Profile G/S/T", "pre-installed AI analytics (ready to install 3rd-party apps)", "IK10 vandal-resistant", - "#1 brand Japan enterprise surveillance market" + "#1 brand Japan enterprise surveillance market", + "IK10" ], "sources": [ "https://i-pro.com/products_and_solutions/en/surveillance/products/wv-s2236l" diff --git a/cameras/i-pro/wv-s2236l.md b/cameras/i-pro/wv-s2236l.md index 65aed28c..743c2791 100644 --- a/cameras/i-pro/wv-s2236l.md +++ b/cameras/i-pro/wv-s2236l.md @@ -16,7 +16,6 @@ | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 256GB, NVR | | Protocols | onvif, rtsp | -| IP rating | IK10 | | Two-way audio | No | | Released | 2021 | @@ -32,6 +31,7 @@ - pre-installed AI analytics (ready to install 3rd-party apps) - IK10 vandal-resistant - #1 brand Japan enterprise surveillance market +- IK10 ## Sources diff --git a/cameras/idis/dc-b8251wx.json b/cameras/idis/dc-b8251wx.json index 1c423f6e..6406f6fe 100644 --- a/cameras/idis/dc-b8251wx.json +++ b/cameras/idis/dc-b8251wx.json @@ -46,7 +46,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": true, "speaker": false, @@ -60,7 +59,8 @@ "IK10 vandal-resistant", "NDAA compliant", "IDIS Security Suite VMS integration", - "most advanced IDIS Korea flagship dome 2024" + "most advanced IDIS Korea flagship dome 2024", + "IK10" ], "sources": [ "https://idisamericas.com/en/productslist/2" diff --git a/cameras/idis/dc-b8251wx.md b/cameras/idis/dc-b8251wx.md index 3ee215ab..295c3edf 100644 --- a/cameras/idis/dc-b8251wx.md +++ b/cameras/idis/dc-b8251wx.md @@ -16,7 +16,6 @@ | Power | PoE (802.3bt) | | Storage | microSD ≤ 256GB, NVR | | Protocols | onvif, rtsp | -| IP rating | IK10 | | Two-way audio | No | | Released | 2024 | @@ -30,6 +29,7 @@ - NDAA compliant - IDIS Security Suite VMS integration - most advanced IDIS Korea flagship dome 2024 +- IK10 ## Sources diff --git a/cameras/idis/dc-d4516wrx.json b/cameras/idis/dc-d4516wrx.json index 777d5a33..8245ad45 100644 --- a/cameras/idis/dc-d4516wrx.json +++ b/cameras/idis/dc-d4516wrx.json @@ -45,7 +45,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -59,7 +58,8 @@ "ONVIF Profile S/T", "easy kitting — auto-discovers on IDIS NVR instantly", "Korean-made quality", - "popular Korea retail/bank/education/healthcare" + "popular Korea retail/bank/education/healthcare", + "IK10" ], "sources": [ "https://idisamericas.com/en/product/3588" diff --git a/cameras/idis/dc-d4516wrx.md b/cameras/idis/dc-d4516wrx.md index 9da3c809..284c1fd0 100644 --- a/cameras/idis/dc-d4516wrx.md +++ b/cameras/idis/dc-d4516wrx.md @@ -16,7 +16,6 @@ | Power | PoE (802.3af) / DC 12V | | Storage | microSD ≤ 256GB, NVR | | Protocols | onvif, rtsp | -| IP rating | IK10 | | Two-way audio | No | | Released | 2022 | @@ -30,6 +29,7 @@ - easy kitting — auto-discovers on IDIS NVR instantly - Korean-made quality - popular Korea retail/bank/education/healthcare +- IK10 ## Sources diff --git a/cameras/imou/cell-go.json b/cameras/imou/cell-go.json index f5e32da3..41f465a0 100644 --- a/cameras/imou/cell-go.json +++ b/cameras/imou/cell-go.json @@ -3,7 +3,9 @@ "brand": "IMOU", "model": "Cell Go", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, diff --git a/cameras/imou/cell-go.md b/cameras/imou/cell-go.md index af5c0ce2..fd0f609e 100644 --- a/cameras/imou/cell-go.md +++ b/cameras/imou/cell-go.md @@ -5,6 +5,7 @@ | Brand | IMOU | | Model | Cell Go | | Type | bullet | +| Connectivity | 4g | | Resolution | 4MP (4MP) | | Field of view | 108h° | | Night vision | color (10m) | diff --git a/cameras/imou/cruiser-4g.json b/cameras/imou/cruiser-4g.json index bfc3eb74..6e4a021b 100644 --- a/cameras/imou/cruiser-4g.json +++ b/cameras/imou/cruiser-4g.json @@ -3,7 +3,9 @@ "brand": "IMOU", "model": "Cruiser 4G", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, diff --git a/cameras/imou/cruiser-4g.md b/cameras/imou/cruiser-4g.md index ca652f51..9270b2c8 100644 --- a/cameras/imou/cruiser-4g.md +++ b/cameras/imou/cruiser-4g.md @@ -5,6 +5,7 @@ | Brand | IMOU | | Model | Cruiser 4G | | Type | ptz | +| Connectivity | 4g | | Resolution | 4MP (4MP) | | Field of view | 355 pan/90 tilt° | | Night vision | color (10m) | diff --git a/cameras/imou/go-basic.json b/cameras/imou/go-basic.json index d9bab825..4c43b472 100644 --- a/cameras/imou/go-basic.json +++ b/cameras/imou/go-basic.json @@ -3,7 +3,9 @@ "brand": "IMOU", "model": "Go Basic 2MP", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 2, diff --git a/cameras/imou/go-basic.md b/cameras/imou/go-basic.md index 99a82272..ca02f503 100644 --- a/cameras/imou/go-basic.md +++ b/cameras/imou/go-basic.md @@ -5,6 +5,7 @@ | Brand | IMOU | | Model | Go Basic 2MP | | Type | bullet | +| Connectivity | 4g | | Resolution | 1080p HD (2MP) | | Field of view | 107h° | | Night vision | ir (10m) | diff --git a/cameras/lupus/le941t-4k-ptz.json b/cameras/lupus/le941t-4k-ptz.json index 38190eee..6fc3a0de 100644 --- a/cameras/lupus/le941t-4k-ptz.json +++ b/cameras/lupus/le941t-4k-ptz.json @@ -54,6 +54,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4K 8MP 20x PTZ premium", "80m IR auto-tracking", "LUPUS SmartVision VMS", diff --git a/cameras/lupus/le941t-4k-ptz.md b/cameras/lupus/le941t-4k-ptz.md index c4be4f83..8fc59bd1 100644 --- a/cameras/lupus/le941t-4k-ptz.md +++ b/cameras/lupus/le941t-4k-ptz.md @@ -22,6 +22,7 @@ ## Features +- pan/tilt/zoom - 4K 8MP 20x PTZ premium - 80m IR auto-tracking - LUPUS SmartVision VMS diff --git a/cameras/lupus/le942-ptz-outdoor.json b/cameras/lupus/le942-ptz-outdoor.json index cf60e9d0..c3943fe8 100644 --- a/cameras/lupus/le942-ptz-outdoor.json +++ b/cameras/lupus/le942-ptz-outdoor.json @@ -54,6 +54,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 18x PTZ outdoor", "60m IR", "auto-tracking", diff --git a/cameras/lupus/le942-ptz-outdoor.md b/cameras/lupus/le942-ptz-outdoor.md index 3c6f5704..af0450df 100644 --- a/cameras/lupus/le942-ptz-outdoor.md +++ b/cameras/lupus/le942-ptz-outdoor.md @@ -22,6 +22,7 @@ ## Features +- pan/tilt/zoom - 4MP 18x PTZ outdoor - 60m IR - auto-tracking diff --git a/cameras/milesight/ms-c2942-epb.json b/cameras/milesight/ms-c2942-epb.json index 55acf461..f3ddf64f 100644 --- a/cameras/milesight/ms-c2942-epb.json +++ b/cameras/milesight/ms-c2942-epb.json @@ -8,8 +8,6 @@ ], "resolution": { "megapixels": 2, - "max_width": 1920, - "max_height": 1920, "label": "2MP Fisheye" }, "sensor": "1/2.8\" Progressive Scan CMOS", diff --git a/cameras/milesight/ms-c2942-epb.md b/cameras/milesight/ms-c2942-epb.md index 40179647..b13bd6a3 100644 --- a/cameras/milesight/ms-c2942-epb.md +++ b/cameras/milesight/ms-c2942-epb.md @@ -6,7 +6,7 @@ | Model | MS-C2942-EPB | | Type | fisheye | | Connectivity | ethernet | -| Resolution | 2MP Fisheye (2MP, 1920×1920) | +| Resolution | 2MP Fisheye (2MP) | | Sensor | 1/2.8" Progressive Scan CMOS | | Lens | 1× 1.68mm | | Field of view | 360 horizontal° | diff --git a/cameras/mobotix/q71.json b/cameras/mobotix/q71.json index 25c895cc..66538fa3 100644 --- a/cameras/mobotix/q71.json +++ b/cameras/mobotix/q71.json @@ -14,7 +14,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" 12MP CMOS", "lens": { diff --git a/cameras/mobotix/q71.md b/cameras/mobotix/q71.md index d42e0b8e..e6aab53d 100644 --- a/cameras/mobotix/q71.md +++ b/cameras/mobotix/q71.md @@ -8,7 +8,7 @@ | Model | Q71 | | Type | fisheye | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/1.7" 12MP CMOS | | Lens | 1× 1.8 (fixed hemispheric)mm F1.8 | | Field of view | 360 (ceiling) / 180 (wall)° | diff --git a/cameras/netatmo/smart-indoor-camera-at.json b/cameras/netatmo/smart-indoor-camera-at.json index 0baa04ae..a5ee4be8 100644 --- a/cameras/netatmo/smart-indoor-camera-at.json +++ b/cameras/netatmo/smart-indoor-camera-at.json @@ -20,8 +20,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { diff --git a/cameras/netatmo/smart-indoor-camera-at.md b/cameras/netatmo/smart-indoor-camera-at.md index c5194ac2..36af13ba 100644 --- a/cameras/netatmo/smart-indoor-camera-at.md +++ b/cameras/netatmo/smart-indoor-camera-at.md @@ -8,7 +8,7 @@ | Model | Smart Indoor Camera (AT/CH) | | Type | dome | | Connectivity | wifi, ethernet | -| Resolution | 1080p HD (4MP, 1920×1080) | +| Resolution | 1080p HD (4MP) | | Lens | 1× | | Field of view | 130 diagonal° | | Night vision | ir (5m) | diff --git a/cameras/netatmo/smart-indoor-camera.json b/cameras/netatmo/smart-indoor-camera.json index fb82e469..8718ca34 100644 --- a/cameras/netatmo/smart-indoor-camera.json +++ b/cameras/netatmo/smart-indoor-camera.json @@ -19,8 +19,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { diff --git a/cameras/netatmo/smart-indoor-camera.md b/cameras/netatmo/smart-indoor-camera.md index f7d388b0..48243614 100644 --- a/cameras/netatmo/smart-indoor-camera.md +++ b/cameras/netatmo/smart-indoor-camera.md @@ -8,7 +8,7 @@ | Model | Smart Indoor Camera | | Type | dome | | Connectivity | wifi, ethernet | -| Resolution | 1080p HD (4MP, 1920×1080) | +| Resolution | 1080p HD (4MP) | | Lens | 1× Fixedmm | | Field of view | 130 diagonal° | | Night vision | ir (5m) | diff --git a/cameras/netatmo/smart-outdoor-camera-siren.json b/cameras/netatmo/smart-outdoor-camera-siren.json index b2ce9bcb..6658eb6b 100644 --- a/cameras/netatmo/smart-outdoor-camera-siren.json +++ b/cameras/netatmo/smart-outdoor-camera-siren.json @@ -21,8 +21,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { diff --git a/cameras/netatmo/smart-outdoor-camera-siren.md b/cameras/netatmo/smart-outdoor-camera-siren.md index 78b8c72a..6b7396fa 100644 --- a/cameras/netatmo/smart-outdoor-camera-siren.md +++ b/cameras/netatmo/smart-outdoor-camera-siren.md @@ -8,7 +8,7 @@ | Model | Smart Outdoor Camera with Siren | | Type | bullet | | Connectivity | wifi | -| Resolution | 1080p HD (4MP, 1920×1080) | +| Resolution | 1080p HD (4MP) | | Lens | 1× Fixedmm F2.0 | | Field of view | 100 horizontal° | | Night vision | ir (15m) | diff --git a/cameras/netatmo/smart-outdoor-camera-with-siren.json b/cameras/netatmo/smart-outdoor-camera-with-siren.json index cc21f7e0..0a6fafe3 100644 --- a/cameras/netatmo/smart-outdoor-camera-with-siren.json +++ b/cameras/netatmo/smart-outdoor-camera-with-siren.json @@ -19,8 +19,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { diff --git a/cameras/netatmo/smart-outdoor-camera-with-siren.md b/cameras/netatmo/smart-outdoor-camera-with-siren.md index 61ad058f..e44df735 100644 --- a/cameras/netatmo/smart-outdoor-camera-with-siren.md +++ b/cameras/netatmo/smart-outdoor-camera-with-siren.md @@ -8,7 +8,7 @@ | Model | Smart Outdoor Camera (Presence, with Siren) | | Type | bullet | | Connectivity | wifi | -| Resolution | 1080p HD (4MP, 1920×1080) | +| Resolution | 1080p HD (4MP) | | Lens | 1× Fixedmm F2.0 | | Field of view | 100 horizontal° | | Night vision | ir (15m) | diff --git a/cameras/netatmo/smart-outdoor-camera.json b/cameras/netatmo/smart-outdoor-camera.json index 92bf1848..fdb00344 100644 --- a/cameras/netatmo/smart-outdoor-camera.json +++ b/cameras/netatmo/smart-outdoor-camera.json @@ -19,8 +19,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { diff --git a/cameras/netatmo/smart-outdoor-camera.md b/cameras/netatmo/smart-outdoor-camera.md index e4a5c191..9f82169a 100644 --- a/cameras/netatmo/smart-outdoor-camera.md +++ b/cameras/netatmo/smart-outdoor-camera.md @@ -8,7 +8,7 @@ | Model | Smart Outdoor Camera | | Type | bullet | | Connectivity | wifi | -| Resolution | 1080p HD (4MP, 1920×1080) | +| Resolution | 1080p HD (4MP) | | Lens | 1× Fixedmm F2.0 | | Field of view | 100 horizontal° | | Night vision | ir (15m) | diff --git a/cameras/netatmo/smart-video-doorbell.json b/cameras/netatmo/smart-video-doorbell.json index d71a2cd9..4a6c2877 100644 --- a/cameras/netatmo/smart-video-doorbell.json +++ b/cameras/netatmo/smart-video-doorbell.json @@ -20,8 +20,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1440, "label": "1080p+ 4:3" }, "lens": { diff --git a/cameras/netatmo/smart-video-doorbell.md b/cameras/netatmo/smart-video-doorbell.md index e05b662f..893c1e03 100644 --- a/cameras/netatmo/smart-video-doorbell.md +++ b/cameras/netatmo/smart-video-doorbell.md @@ -8,7 +8,7 @@ | Model | Smart Video Doorbell | | Type | doorbell | | Connectivity | wifi | -| Resolution | 1080p+ 4:3 (4MP, 1920×1440) | +| Resolution | 1080p+ 4:3 (4MP) | | Lens | 1× Fixedmm F2.0 | | Field of view | 165 diagonal° | | Night vision | ir (4m) | diff --git a/cameras/reolink/b1200.json b/cameras/reolink/b1200.json index 7df2ecb5..d6dc47fb 100644 --- a/cameras/reolink/b1200.json +++ b/cameras/reolink/b1200.json @@ -9,7 +9,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { diff --git a/cameras/reolink/b1200.md b/cameras/reolink/b1200.md index cd8c8fd2..1f4dde92 100644 --- a/cameras/reolink/b1200.md +++ b/cameras/reolink/b1200.md @@ -6,7 +6,7 @@ | Model | B1200 | | Type | bullet | | Connectivity | ethernet | -| Resolution | 12MP (12MP) | +| Resolution | 12MP UHD (12MP) | | Field of view | 80 horizontal° | | Night vision | ir (40m) | | Power | PoE 802.3af | diff --git a/cameras/reolink/d1200.json b/cameras/reolink/d1200.json index 03e9fb46..f09e12a2 100644 --- a/cameras/reolink/d1200.json +++ b/cameras/reolink/d1200.json @@ -9,7 +9,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { diff --git a/cameras/reolink/d1200.md b/cameras/reolink/d1200.md index 176455f5..3bbdbd3d 100644 --- a/cameras/reolink/d1200.md +++ b/cameras/reolink/d1200.md @@ -6,7 +6,7 @@ | Model | D1200 | | Type | dome | | Connectivity | ethernet | -| Resolution | 12MP (12MP) | +| Resolution | 12MP UHD (12MP) | | Field of view | 80 horizontal° | | Night vision | ir (40m) | | Power | PoE 802.3af | diff --git a/cameras/reolink/duo-2-lte.json b/cameras/reolink/duo-2-lte.json index 4abb008a..71adf6de 100644 --- a/cameras/reolink/duo-2-lte.json +++ b/cameras/reolink/duo-2-lte.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Duo 2 LTE", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 16, diff --git a/cameras/reolink/duo-2-lte.md b/cameras/reolink/duo-2-lte.md index 38196c1d..e31f48d6 100644 --- a/cameras/reolink/duo-2-lte.md +++ b/cameras/reolink/duo-2-lte.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Duo 2 LTE | | Type | bullet | +| Connectivity | 4g | | Resolution | 16MP 180° dual-lens (16MP) | | Field of view | 180 horizontal° | | Night vision | color (30m) | diff --git a/cameras/reolink/duo-4g.json b/cameras/reolink/duo-4g.json index 41a8b7a6..2753c571 100644 --- a/cameras/reolink/duo-4g.json +++ b/cameras/reolink/duo-4g.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Duo 4G", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 8, diff --git a/cameras/reolink/duo-4g.md b/cameras/reolink/duo-4g.md index 155e89a4..b714e5b7 100644 --- a/cameras/reolink/duo-4g.md +++ b/cameras/reolink/duo-4g.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Duo 4G | | Type | bullet | +| Connectivity | 4g | | Resolution | 2×4MP 180° dual-lens (8MP) | | Field of view | 180 horizontal° | | Night vision | ir (30m) | diff --git a/cameras/reolink/e1-outdoor.json b/cameras/reolink/e1-outdoor.json deleted file mode 100644 index c8819929..00000000 --- a/cameras/reolink/e1-outdoor.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "id": "reolink-e1-outdoor", - "brand": "Reolink", - "model": "E1 Outdoor", - "type": "ptz", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 5, - "max_width": 2560, - "max_height": 1920, - "label": "5MP Super HD" - }, - "sensor": "1/2.7\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-8", - "aperture": "F1.6" - }, - "field_of_view_deg": "90-50 horizontal", - "night_vision": { - "type": "color", - "range_m": 12 - }, - "power": { - "method": "DC 12V/1A" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "rtsp", - "onvif" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "3x optical zoom", - "355° pan / 50° tilt", - "auto-tracking", - "64 presets", - "person/vehicle/animal detection", - "spotlight color night vision", - "dual-band WiFi", - "no subscription" - ], - "msrp_usd": 110, - "sources": [ - "https://reolink.com/product/e1-outdoor/" - ], - "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } -} diff --git a/cameras/reolink/e1-outdoor.md b/cameras/reolink/e1-outdoor.md deleted file mode 100644 index a81aa529..00000000 --- a/cameras/reolink/e1-outdoor.md +++ /dev/null @@ -1,37 +0,0 @@ -# Reolink E1 Outdoor - -| Field | Spec | -|-------|------| -| Brand | Reolink | -| Model | E1 Outdoor | -| Type | ptz | -| Connectivity | wifi | -| Resolution | 5MP Super HD (5MP, 2560×1920) | -| Sensor | 1/2.7" CMOS | -| Lens | 1× 2.8-8mm F1.6 | -| Field of view | 90-50 horizontal° | -| Night vision | color (12m) | -| Power | DC 12V/1A | -| Storage | microSD ≤ 512GB, NVR | -| Protocols | rtsp, onvif | -| IP rating | IP65 | -| Two-way audio | Yes | -| Released | 2021 | - -## Features - -- 3x optical zoom -- 355° pan / 50° tilt -- auto-tracking -- 64 presets -- person/vehicle/animal detection -- spotlight color night vision -- dual-band WiFi -- no subscription - -## Sources - -- https://reolink.com/product/e1-outdoor/ - ---- -*Auto-generated from reolink-e1-outdoor.json — do not edit by hand.* diff --git a/cameras/reolink/go-4g.json b/cameras/reolink/go-4g.json index 3df20bda..94b8de51 100644 --- a/cameras/reolink/go-4g.json +++ b/cameras/reolink/go-4g.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Go", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2019, "resolution": { "megapixels": 2, diff --git a/cameras/reolink/go-4g.md b/cameras/reolink/go-4g.md index a4cfa984..69c46664 100644 --- a/cameras/reolink/go-4g.md +++ b/cameras/reolink/go-4g.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Go | | Type | bullet | +| Connectivity | 4g | | Resolution | 1080p HD (2MP) | | Field of view | 110 horizontal° | | Night vision | ir (10m) | diff --git a/cameras/reolink/go-pt-plus.json b/cameras/reolink/go-pt-plus.json index 5e30aa36..51029431 100644 --- a/cameras/reolink/go-pt-plus.json +++ b/cameras/reolink/go-pt-plus.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Go PT Plus", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 4, diff --git a/cameras/reolink/go-pt-plus.md b/cameras/reolink/go-pt-plus.md index 34db779f..01712953 100644 --- a/cameras/reolink/go-pt-plus.md +++ b/cameras/reolink/go-pt-plus.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Go PT Plus | | Type | ptz | +| Connectivity | 4g | | Resolution | 2K QHD (4MP) | | Field of view | 355 pan/90 tilt° | | Night vision | color (10m) | diff --git a/cameras/reolink/go-pt-ultra.json b/cameras/reolink/go-pt-ultra.json index 592ec8b8..4a88b09c 100644 --- a/cameras/reolink/go-pt-ultra.json +++ b/cameras/reolink/go-pt-ultra.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Go PT Ultra", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 8, diff --git a/cameras/reolink/go-pt-ultra.md b/cameras/reolink/go-pt-ultra.md index eef54ed5..82d94b6c 100644 --- a/cameras/reolink/go-pt-ultra.md +++ b/cameras/reolink/go-pt-ultra.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Go PT Ultra | | Type | ptz | +| Connectivity | 4g | | Resolution | 4K UHD (8MP) | | Field of view | 355 pan/90 tilt° | | Night vision | color (15m) | diff --git a/cameras/reolink/go-pt.json b/cameras/reolink/go-pt.json index 144c4fc1..7cf81e97 100644 --- a/cameras/reolink/go-pt.json +++ b/cameras/reolink/go-pt.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Go PT", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2021, "resolution": { "megapixels": 4, diff --git a/cameras/reolink/go-pt.md b/cameras/reolink/go-pt.md index 3ae4db3f..b2cc951f 100644 --- a/cameras/reolink/go-pt.md +++ b/cameras/reolink/go-pt.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Go PT | | Type | ptz | +| Connectivity | 4g | | Resolution | 2K QHD (4MP) | | Field of view | 355 pan/90 tilt° | | Night vision | ir (10m) | diff --git a/cameras/reolink/home-hub.json b/cameras/reolink/home-hub.json index d7676bbb..5cf231bb 100644 --- a/cameras/reolink/home-hub.json +++ b/cameras/reolink/home-hub.json @@ -5,7 +5,7 @@ "aliases": [ "Reolink Home Hub NVR/HomeBase for WiFi cameras" ], - "type": "covert", + "type": "box", "connectivity": [ "wifi", "ethernet" @@ -44,7 +44,8 @@ "manages up to 8 Reolink cameras", "AI video search", "no subscription fee", - "no cloud required" + "no cloud required", + "NVR hub — not a camera" ], "msrp_usd": 69, "sources": [ diff --git a/cameras/reolink/home-hub.md b/cameras/reolink/home-hub.md index 0d36abc6..2aff701c 100644 --- a/cameras/reolink/home-hub.md +++ b/cameras/reolink/home-hub.md @@ -6,7 +6,7 @@ |-------|------| | Brand | Reolink | | Model | Home Hub | -| Type | covert | +| Type | box | | Connectivity | wifi, ethernet | | Resolution | N/A (hub device) (0MP) | | Field of view | N/A° | @@ -26,6 +26,7 @@ - AI video search - no subscription fee - no cloud required +- NVR hub — not a camera ## Sources diff --git a/cameras/reolink/keen-ranger-pt.json b/cameras/reolink/keen-ranger-pt.json index 795316f1..7a94c88a 100644 --- a/cameras/reolink/keen-ranger-pt.json +++ b/cameras/reolink/keen-ranger-pt.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "Keen Ranger PT", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, diff --git a/cameras/reolink/keen-ranger-pt.md b/cameras/reolink/keen-ranger-pt.md index 2c90fc05..270016e7 100644 --- a/cameras/reolink/keen-ranger-pt.md +++ b/cameras/reolink/keen-ranger-pt.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | Keen Ranger PT | | Type | ptz | +| Connectivity | 4g | | Resolution | 2K QHD (4MP) | | Field of view | 355 pan/90 tilt° | | Night vision | ir (10m) | diff --git a/cameras/reolink/reolink-go-plus.json b/cameras/reolink/reolink-go-plus.json index 46f17733..0cdde6c2 100644 --- a/cameras/reolink/reolink-go-plus.json +++ b/cameras/reolink/reolink-go-plus.json @@ -6,7 +6,9 @@ "Reolink Go Plus 4G LTE Battery Camera" ], "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 4, diff --git a/cameras/reolink/reolink-go-plus.md b/cameras/reolink/reolink-go-plus.md index 49fafd6e..f92b0098 100644 --- a/cameras/reolink/reolink-go-plus.md +++ b/cameras/reolink/reolink-go-plus.md @@ -7,6 +7,7 @@ | Brand | Reolink | | Model | Go Plus | | Type | bullet | +| Connectivity | 4g | | Resolution | 4MP QHD (4MP, 2560×1440) | | Sensor | CMOS | | Lens | 1× Fixedmm F1.8 | diff --git a/cameras/reolink/rlc-1210a.json b/cameras/reolink/rlc-1210a.json index 5cf37150..f8de9954 100644 --- a/cameras/reolink/rlc-1210a.json +++ b/cameras/reolink/rlc-1210a.json @@ -9,7 +9,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { diff --git a/cameras/reolink/rlc-1210a.md b/cameras/reolink/rlc-1210a.md index ba1d5673..fbff91b6 100644 --- a/cameras/reolink/rlc-1210a.md +++ b/cameras/reolink/rlc-1210a.md @@ -6,7 +6,7 @@ | Model | RLC-1210A | | Type | bullet | | Connectivity | ethernet | -| Resolution | 12MP (12MP) | +| Resolution | 12MP UHD (12MP) | | Field of view | 80 horizontal° | | Night vision | ir (30m) | | Power | PoE 802.3af / DC 12V | diff --git a/cameras/reolink/rlc-1212a.json b/cameras/reolink/rlc-1212a.json index 052db4f5..c227da3b 100644 --- a/cameras/reolink/rlc-1212a.json +++ b/cameras/reolink/rlc-1212a.json @@ -10,7 +10,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { diff --git a/cameras/reolink/rlc-1212a.md b/cameras/reolink/rlc-1212a.md index 807fe5c9..f0c8369a 100644 --- a/cameras/reolink/rlc-1212a.md +++ b/cameras/reolink/rlc-1212a.md @@ -6,7 +6,7 @@ | Model | RLC-1212A (dome) | | Type | dome | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/2.3" CMOS | | Lens | 1× 2.8 (fixed)mm F1.6 | | Field of view | 93 horizontal° | diff --git a/cameras/reolink/rlc-1220a.json b/cameras/reolink/rlc-1220a.json index 78faf065..9ab90f7a 100644 --- a/cameras/reolink/rlc-1220a.json +++ b/cameras/reolink/rlc-1220a.json @@ -9,7 +9,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { diff --git a/cameras/reolink/rlc-1220a.md b/cameras/reolink/rlc-1220a.md index 5e828e40..6ec7fc2f 100644 --- a/cameras/reolink/rlc-1220a.md +++ b/cameras/reolink/rlc-1220a.md @@ -6,7 +6,7 @@ | Model | RLC-1220A | | Type | dome | | Connectivity | ethernet | -| Resolution | 12MP (12MP) | +| Resolution | 12MP UHD (12MP) | | Field of view | 80 horizontal° | | Night vision | ir (30m) | | Power | PoE 802.3af / DC 12V | diff --git a/cameras/reolink/rlc-1224a.json b/cameras/reolink/rlc-1224a.json index fde6d640..8a11b2f8 100644 --- a/cameras/reolink/rlc-1224a.json +++ b/cameras/reolink/rlc-1224a.json @@ -10,7 +10,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { diff --git a/cameras/reolink/rlc-1224a.md b/cameras/reolink/rlc-1224a.md index 053b468c..3fc16abc 100644 --- a/cameras/reolink/rlc-1224a.md +++ b/cameras/reolink/rlc-1224a.md @@ -6,7 +6,7 @@ | Model | RLC-1224A | | Type | dome | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/2.3" CMOS | | Lens | 1× 2.8 (fixed)mm F1.6 | | Field of view | 97 horizontal° | diff --git a/cameras/reolink/rlc-1240a.json b/cameras/reolink/rlc-1240a.json index 82c4dc01..85058c26 100644 --- a/cameras/reolink/rlc-1240a.json +++ b/cameras/reolink/rlc-1240a.json @@ -10,7 +10,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { diff --git a/cameras/reolink/rlc-1240a.md b/cameras/reolink/rlc-1240a.md index 92f3caca..a5a49019 100644 --- a/cameras/reolink/rlc-1240a.md +++ b/cameras/reolink/rlc-1240a.md @@ -6,7 +6,7 @@ | Model | RLC-1240A | | Type | turret | | Connectivity | ethernet | -| Resolution | 12MP (12MP, 4000×3000) | +| Resolution | 12MP UHD (12MP, 4000×3000) | | Sensor | 1/2.3" CMOS | | Lens | 1× 2.8 (fixed)mm F1.6 | | Field of view | 145 horizontal° | diff --git a/cameras/reolink/rlc-823a-v3.json b/cameras/reolink/rlc-823a-v3.json deleted file mode 100644 index 70bb7dd2..00000000 --- a/cameras/reolink/rlc-823a-v3.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "id": "reolink-rlc-823a-ptz-4k", - "brand": "Reolink", - "model": "RLC-830A", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.7\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "aperture": "F2.0", - "varifocal": false - }, - "field_of_view_deg": "87 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "355deg pan / 90deg tilt", - "auto-tracking", - "spotlight deters intruders at night", - "person/vehicle detection", - "no subscription" - ], - "release_year": 2022, - "sources": [ - "https://reolink.com/product/rlc-830a/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } -} diff --git a/cameras/reolink/rlc-823a-v3.md b/cameras/reolink/rlc-823a-v3.md deleted file mode 100644 index 74526218..00000000 --- a/cameras/reolink/rlc-823a-v3.md +++ /dev/null @@ -1,34 +0,0 @@ -# Reolink RLC-830A - -| Field | Spec | -|-------|------| -| Brand | Reolink | -| Model | RLC-830A | -| Type | ptz | -| Connectivity | ethernet | -| Resolution | 4K UHD (8MP, 3840×2160) | -| Sensor | 1/2.7" CMOS | -| Lens | 1× 2.8 (fixed)mm F2.0 | -| Field of view | 87 horizontal° | -| Night vision | hybrid (30m) | -| Power | PoE (802.3af) / DC 12V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP66 | -| Two-way audio | Yes | -| Released | 2022 | - -## Features - -- 355deg pan / 90deg tilt -- auto-tracking -- spotlight deters intruders at night -- person/vehicle detection -- no subscription - -## Sources - -- https://reolink.com/product/rlc-830a/ - ---- -*Auto-generated from reolink-rlc-823a-ptz-4k.json — do not edit by hand.* diff --git a/cameras/reolink/rlc-830a-v2.json b/cameras/reolink/rlc-830a-v2.json index 6017ca6e..a6086a1d 100644 --- a/cameras/reolink/rlc-830a-v2.json +++ b/cameras/reolink/rlc-830a-v2.json @@ -78,5 +78,8 @@ "profile": "Reolink", "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." } - } + }, + "aliases": [ + "reolink-rlc-840a" + ] } diff --git a/cameras/reolink/rlc-830a-v2.md b/cameras/reolink/rlc-830a-v2.md index 4cc47a35..d0753f39 100644 --- a/cameras/reolink/rlc-830a-v2.md +++ b/cameras/reolink/rlc-830a-v2.md @@ -1,5 +1,7 @@ # Reolink RLC-840A +*Also known as: reolink-rlc-840a* + | Field | Spec | |-------|------| | Brand | Reolink | diff --git a/cameras/reolink/rlc-830a.json b/cameras/reolink/rlc-830a.json index 49053962..1d4f67ca 100644 --- a/cameras/reolink/rlc-830a.json +++ b/cameras/reolink/rlc-830a.json @@ -96,5 +96,8 @@ "codec": "H.265" } ] - } + }, + "aliases": [ + "reolink-rlc-823a-ptz-4k" + ] } diff --git a/cameras/reolink/rlc-830a.md b/cameras/reolink/rlc-830a.md index e1b4ca80..6d0020bf 100644 --- a/cameras/reolink/rlc-830a.md +++ b/cameras/reolink/rlc-830a.md @@ -1,5 +1,7 @@ # Reolink RLC-830A +*Also known as: reolink-rlc-823a-ptz-4k* + | Field | Spec | |-------|------| | Brand | Reolink | diff --git a/cameras/reolink/rlc-840a.json b/cameras/reolink/rlc-840a.json deleted file mode 100644 index 8e3bc9fa..00000000 --- a/cameras/reolink/rlc-840a.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "id": "reolink-rlc-840a", - "brand": "Reolink", - "model": "RLC-840A", - "type": "turret", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "aperture": "F2.0", - "varifocal": false - }, - "field_of_view_deg": "125 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "spotlight color night vision", - "IK10 vandal resistant", - "person/vehicle/animal detection", - "two-way audio", - "no subscription" - ], - "release_year": 2023, - "sources": [ - "https://reolink.com/product/rlc-840a/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } -} diff --git a/cameras/reolink/rlc-840a.md b/cameras/reolink/rlc-840a.md deleted file mode 100644 index ff80b356..00000000 --- a/cameras/reolink/rlc-840a.md +++ /dev/null @@ -1,34 +0,0 @@ -# Reolink RLC-840A - -| Field | Spec | -|-------|------| -| Brand | Reolink | -| Model | RLC-840A | -| Type | turret | -| Connectivity | ethernet | -| Resolution | 4K UHD (8MP, 3840×2160) | -| Sensor | 1/2.8" CMOS | -| Lens | 1× 2.8 (fixed)mm F2.0 | -| Field of view | 125 horizontal° | -| Night vision | hybrid (30m) | -| Power | PoE (802.3af) / DC 12V | -| Storage | microSD ≤ 512GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | Yes | -| Released | 2023 | - -## Features - -- spotlight color night vision -- IK10 vandal resistant -- person/vehicle/animal detection -- two-way audio -- no subscription - -## Sources - -- https://reolink.com/product/rlc-840a/ - ---- -*Auto-generated from reolink-rlc-840a.json — do not edit by hand.* diff --git a/cameras/reolink/trackmix-lte.json b/cameras/reolink/trackmix-lte.json index fdafc005..1dfda565 100644 --- a/cameras/reolink/trackmix-lte.json +++ b/cameras/reolink/trackmix-lte.json @@ -3,7 +3,9 @@ "brand": "Reolink", "model": "TrackMix LTE", "type": "dual-lens", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 8, diff --git a/cameras/reolink/trackmix-lte.md b/cameras/reolink/trackmix-lte.md index 0a49ac69..aef347dc 100644 --- a/cameras/reolink/trackmix-lte.md +++ b/cameras/reolink/trackmix-lte.md @@ -5,6 +5,7 @@ | Brand | Reolink | | Model | TrackMix LTE | | Type | dual-lens | +| Connectivity | 4g | | Resolution | 4K+4MP dual-lens (8MP) | | Field of view | 140 wide+35 tele° | | Night vision | color (15m) | diff --git a/cameras/ring/indoor-cam-2nd-gen.json b/cameras/ring/indoor-cam-2nd-gen.json index 6bae8def..ea44ce7f 100644 --- a/cameras/ring/indoor-cam-2nd-gen.json +++ b/cameras/ring/indoor-cam-2nd-gen.json @@ -51,5 +51,8 @@ "msrp_usd": 59.99, "sources": [ "https://ring.com/products/indoor-cam" + ], + "power_source": [ + "dc" ] } diff --git a/cameras/ring/outdoor-cam-wired.json b/cameras/ring/outdoor-cam-wired.json index dfb611f6..26453e77 100644 --- a/cameras/ring/outdoor-cam-wired.json +++ b/cameras/ring/outdoor-cam-wired.json @@ -50,5 +50,8 @@ "msrp_usd": 79.99, "sources": [ "https://ring.com/products/outdoor-cam" + ], + "power_source": [ + "dc" ] } diff --git a/cameras/ring/spotlight-cam-plus-plug-in.json b/cameras/ring/spotlight-cam-plus-plug-in.json index 2a053503..776c3eaa 100644 --- a/cameras/ring/spotlight-cam-plus-plug-in.json +++ b/cameras/ring/spotlight-cam-plus-plug-in.json @@ -55,5 +55,8 @@ "msrp_usd": 179.99, "sources": [ "https://ring.com/products/spotlight-cam-plus-plug-in" + ], + "power_source": [ + "ac-mains" ] } diff --git a/cameras/ring/stick-up-cam-plug-in.json b/cameras/ring/stick-up-cam-plug-in.json index 7a57024e..02f27248 100644 --- a/cameras/ring/stick-up-cam-plug-in.json +++ b/cameras/ring/stick-up-cam-plug-in.json @@ -54,5 +54,8 @@ "msrp_usd": 99.99, "sources": [ "https://ring.com/products/stick-up-cam-plug-in" + ], + "power_source": [ + "dc" ] } diff --git a/cameras/somfy/indoor-cam.json b/cameras/somfy/indoor-cam.json deleted file mode 100644 index 08b280b5..00000000 --- a/cameras/somfy/indoor-cam.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "id": "somfy-indoor-cam", - "brand": "Somfy", - "model": "Indoor Camera", - "type": "dome", - "connectivity": [ - "wifi" - ], - "release_year": 2020, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 5 - }, - "power": { - "method": "DC 5V USB" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 32, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP20", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Somfy Indoor Camera 1080p WiFi", - "person/motion detection", - "Somfy TaHoma integration", - "Alexa / Google", - "GDPR EU cloud" - ], - "sources": [ - "https://www.somfy.fr/" - ], - "markets": [ - "FR", - "DE", - "EU" - ], - "msrp_eur": 149, - "power_source": [ - "usb" - ] -} diff --git a/cameras/somfy/indoor-cam.md b/cameras/somfy/indoor-cam.md deleted file mode 100644 index f2fd238c..00000000 --- a/cameras/somfy/indoor-cam.md +++ /dev/null @@ -1,32 +0,0 @@ -# Somfy Indoor Camera - -| Field | Spec | -|-------|------| -| Brand | Somfy | -| Model | Indoor Camera | -| Type | dome | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 130h° | -| Night vision | ir (5m) | -| Power | DC 5V USB | -| Storage | microSD ≤ 32GB | -| Protocols | http | -| IP rating | IP20 | -| Two-way audio | Yes | -| Released | 2020 | - -## Features - -- Somfy Indoor Camera 1080p WiFi -- person/motion detection -- Somfy TaHoma integration -- Alexa / Google -- GDPR EU cloud - -## Sources - -- https://www.somfy.fr/ - ---- -*Auto-generated from somfy-indoor-cam.json — do not edit by hand.* diff --git a/cameras/somfy/indoor-camera.json b/cameras/somfy/indoor-camera.json index 39aabfaa..beb8ca50 100644 --- a/cameras/somfy/indoor-camera.json +++ b/cameras/somfy/indoor-camera.json @@ -11,10 +11,10 @@ ], "release_year": 2020, "markets": [ - "FR", "DE", "ES", - "EU" + "EU", + "FR" ], "resolution": { "megapixels": 2, diff --git a/cameras/somfy/outdoor-cam-with-siren-new.json b/cameras/somfy/outdoor-cam-with-siren-new.json deleted file mode 100644 index 01d043e4..00000000 --- a/cameras/somfy/outdoor-cam-with-siren-new.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "id": "somfy-outdoor-cam", - "brand": "Somfy", - "model": "Outdoor Camera", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 15 - }, - "power": { - "method": "DC 12V hardwired" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 32, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP55", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Somfy Outdoor Camera 1080p WiFi", - "person/vehicle/animal detection", - "Somfy TaHoma integration", - "Alexa / Google", - "GDPR EU cloud", - "IP55" - ], - "sources": [ - "https://www.somfy.fr/" - ], - "markets": [ - "FR", - "DE", - "EU" - ], - "msrp_eur": 189, - "power_source": [ - "dc" - ] -} diff --git a/cameras/somfy/outdoor-cam-with-siren-new.md b/cameras/somfy/outdoor-cam-with-siren-new.md deleted file mode 100644 index 38cf063a..00000000 --- a/cameras/somfy/outdoor-cam-with-siren-new.md +++ /dev/null @@ -1,33 +0,0 @@ -# Somfy Outdoor Camera - -| Field | Spec | -|-------|------| -| Brand | Somfy | -| Model | Outdoor Camera | -| Type | bullet | -| Connectivity | wifi | -| Resolution | 1080p HD (2MP) | -| Field of view | 130h° | -| Night vision | ir (15m) | -| Power | DC 12V hardwired | -| Storage | microSD ≤ 32GB | -| Protocols | http | -| IP rating | IP55 | -| Two-way audio | Yes | -| Released | 2021 | - -## Features - -- Somfy Outdoor Camera 1080p WiFi -- person/vehicle/animal detection -- Somfy TaHoma integration -- Alexa / Google -- GDPR EU cloud -- IP55 - -## Sources - -- https://www.somfy.fr/ - ---- -*Auto-generated from somfy-outdoor-cam.json — do not edit by hand.* diff --git a/cameras/somfy/outdoor-camera.json b/cameras/somfy/outdoor-camera.json index 9ae69227..ea5e88e3 100644 --- a/cameras/somfy/outdoor-camera.json +++ b/cameras/somfy/outdoor-camera.json @@ -12,10 +12,10 @@ ], "release_year": 2021, "markets": [ - "FR", "DE", "ES", - "EU" + "EU", + "FR" ], "resolution": { "megapixels": 2, diff --git a/cameras/sv3c/b04poe.json b/cameras/sv3c/b04poe.json new file mode 100644 index 00000000..5f0d81ad --- /dev/null +++ b/cameras/sv3c/b04poe.json @@ -0,0 +1,31 @@ +{ + "id": "sv3c-b04poe", + "brand": "SV3C", + "model": "SV-B04POE", + "aliases": ["SV3C 4MP PoE Bullet H.265"], + "type": "bullet", + "connectivity": ["ethernet"], + "resolution": { "megapixels": 4, "max_width": 2560, "max_height": 1440, "label": "2K QHD" }, + "night_vision": { "type": "ir" }, + "power": { "method": "PoE / DC 12V" }, + "storage": { "onboard": true, "nvr_compatible": true, "cloud": false }, + "protocols": ["rtsp"], + "ip_rating": "IP66", + "audio": { "microphone": false, "speaker": false, "two_way": false }, + "video": { "codecs": ["H.265"] }, + "features": ["4MP Super HD 2560x1440", "H.265 compression", "IR night vision", "motion detection", "IP66", "RTSP"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. H.265 main stream. No ONVIF. No audio." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": ["poe", "dc"], + "sources": ["https://www.sv3c.com/Upgraded-SV3C-IP-POE-Camera-Security-Outdoor-4-Megapixels-Super-HD-2560x1440-H-265-Waterproof-Video-Camera-IR-Night-Vision-Motion-Detection-Wired-p1743568.html"] +} diff --git a/cameras/sv3c/b04poe.md b/cameras/sv3c/b04poe.md new file mode 100644 index 00000000..0c5b729d --- /dev/null +++ b/cameras/sv3c/b04poe.md @@ -0,0 +1,33 @@ +# SV3C SV-B04POE + +*Also known as: SV3C 4MP PoE Bullet H.265* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV-B04POE | +| Type | bullet | +| Connectivity | ethernet | +| Resolution | 2K QHD (4MP, 2560×1440) | +| Night vision | ir | +| Power | PoE / DC 12V | +| Storage | NVR | +| Protocols | rtsp | +| IP rating | IP66 | +| Two-way audio | No | + +## Features + +- 4MP Super HD 2560x1440 +- H.265 compression +- IR night vision +- motion detection +- IP66 +- RTSP + +## Sources + +- https://www.sv3c.com/Upgraded-SV3C-IP-POE-Camera-Security-Outdoor-4-Megapixels-Super-HD-2560x1440-H-265-Waterproof-Video-Camera-IR-Night-Vision-Motion-Detection-Wired-p1743568.html + +--- +*Auto-generated from sv3c-b04poe.json — do not edit by hand.* diff --git a/cameras/sv3c/b05poe.json b/cameras/sv3c/b05poe.json new file mode 100644 index 00000000..49cc0f4e --- /dev/null +++ b/cameras/sv3c/b05poe.json @@ -0,0 +1,30 @@ +{ + "id": "sv3c-b05poe", + "brand": "SV3C", + "model": "SV-B05POE", + "aliases": ["SV3C 5MP PoE Bullet"], + "type": "bullet", + "connectivity": ["ethernet"], + "resolution": { "megapixels": 5, "label": "5MP" }, + "night_vision": { "type": "ir" }, + "power": { "method": "PoE / DC 12V" }, + "storage": { "onboard": true, "max_microsd_gb": 128, "nvr_compatible": true, "cloud": false }, + "protocols": ["rtsp"], + "ip_rating": "IP66", + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["5MP", "humanoid detection", "IP66", "RTSP", "browser view"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": ["poe", "dc"], + "sources": ["https://www.sv3c.com/SV3C-5MP-POE-IP-Camera-5-Megapixels-Security-Camera-Outdoor-with-2-Way-Audio-Humanoid-Detection-IP66-Waterproof-Power-Over-Ethernet-Cameras-Support-Max-128G-SD-Card-Record-Browser-View-No-WiFi-p2437989.html"] +} diff --git a/cameras/sv3c/b05poe.md b/cameras/sv3c/b05poe.md new file mode 100644 index 00000000..28b240db --- /dev/null +++ b/cameras/sv3c/b05poe.md @@ -0,0 +1,32 @@ +# SV3C SV-B05POE + +*Also known as: SV3C 5MP PoE Bullet* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV-B05POE | +| Type | bullet | +| Connectivity | ethernet | +| Resolution | 5MP (5MP) | +| Night vision | ir | +| Power | PoE / DC 12V | +| Storage | microSD ≤ 128GB, NVR | +| Protocols | rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- 5MP +- humanoid detection +- IP66 +- RTSP +- browser view + +## Sources + +- https://www.sv3c.com/SV3C-5MP-POE-IP-Camera-5-Megapixels-Security-Camera-Outdoor-with-2-Way-Audio-Humanoid-Detection-IP66-Waterproof-Power-Over-Ethernet-Cameras-Support-Max-128G-SD-Card-Record-Browser-View-No-WiFi-p2437989.html + +--- +*Auto-generated from sv3c-b05poe.json — do not edit by hand.* diff --git a/cameras/sv3c/b05w.json b/cameras/sv3c/b05w.json new file mode 100644 index 00000000..09f64e48 --- /dev/null +++ b/cameras/sv3c/b05w.json @@ -0,0 +1,34 @@ +{ + "id": "sv3c-b05w", + "brand": "SV3C", + "model": "SV-B05W / SV-B08W", + "aliases": ["SV3C 5MP WiFi Bullet", "SV3C 8MP WiFi Bullet"], + "type": "bullet", + "connectivity": ["wifi"], + "resolution": { "megapixels": 5, "label": "5MP" }, + "night_vision": { "type": "ir" }, + "power": { "method": "DC 12V" }, + "storage": { "onboard": true, "max_microsd_gb": 128, "nvr_compatible": false, "cloud": false }, + "protocols": ["rtsp", "onvif"], + "ip_rating": "IP66", + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["5MP/8MP variants", "ONVIF", "RTSP", "motion detection", "IP66", "two-way audio"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. This is the original SV3C model — one of the few that supports ONVIF. Known for inconsistent firmware; RTSP may break after updates." + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. One of the few SV3C models with ONVIF support. Firmware updates may break ONVIF — pin your firmware version." + }, + "blue_iris": { + "profile": "Generic/ONVIF", + "notes": "Use Generic/ONVIF. Also works with Generic/RTSP at /stream0 and /stream1." + } + }, + "power_source": ["dc"], + "sources": ["https://www.sv3c.com/5MP-8MP-Outdoor-Security-Camera-SV3C-WiFi-Wireless-5-8-Megapixels-HD-Night-Vision-Surveillance-Cameras-2-Way-Audio-IP-Camera-Motion-Detection-CCTV-Weatherproof-Outside-Camera-Support-Max-128GB-SD-Card-p395185.html"] +} diff --git a/cameras/sv3c/b05w.md b/cameras/sv3c/b05w.md new file mode 100644 index 00000000..faabe2b7 --- /dev/null +++ b/cameras/sv3c/b05w.md @@ -0,0 +1,33 @@ +# SV3C SV-B05W / SV-B08W + +*Also known as: SV3C 5MP WiFi Bullet, SV3C 8MP WiFi Bullet* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV-B05W / SV-B08W | +| Type | bullet | +| Connectivity | wifi | +| Resolution | 5MP (5MP) | +| Night vision | ir | +| Power | DC 12V | +| Storage | microSD ≤ 128GB | +| Protocols | rtsp, onvif | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- 5MP/8MP variants +- ONVIF +- RTSP +- motion detection +- IP66 +- two-way audio + +## Sources + +- https://www.sv3c.com/5MP-8MP-Outdoor-Security-Camera-SV3C-WiFi-Wireless-5-8-Megapixels-HD-Night-Vision-Surveillance-Cameras-2-Way-Audio-IP-Camera-Motion-Detection-CCTV-Weatherproof-Outside-Camera-Support-Max-128GB-SD-Card-p395185.html + +--- +*Auto-generated from sv3c-b05w.json — do not edit by hand.* diff --git a/cameras/sv3c/b08poe.json b/cameras/sv3c/b08poe.json new file mode 100644 index 00000000..1da44ac9 --- /dev/null +++ b/cameras/sv3c/b08poe.json @@ -0,0 +1,38 @@ +{ + "id": "sv3c-b08poe", + "brand": "SV3C", + "model": "SV-B08POE", + "aliases": ["SV3C 4K PoE Bullet"], + "type": "bullet", + "connectivity": ["ethernet"], + "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, + "field_of_view_deg": "120 horizontal", + "night_vision": { "type": "hybrid" }, + "power": { "method": "PoE / DC 12V" }, + "storage": { "onboard": true, "max_microsd_gb": 256, "nvr_compatible": true, "cloud": false }, + "protocols": ["rtsp"], + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["4K@20fps", "human/vehicle detection", "color night vision", "RTSP", "metal shell"], + "video": { + "codecs": ["H.264"], + "max_fps": 20, + "streams": [ + {"name": "main", "resolution": "3840x2160", "fps": 20, "codec": "H.264"}, + {"name": "sub", "resolution": "unknown", "fps": 20, "codec": "H.264"} + ] + }, + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user is 'admin'. RTSP paths are /stream0 (main) and /stream1 (sub). No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1. Default user 'admin'." + } + }, + "power_source": ["poe", "dc"], + "sources": ["https://www.sv3c.com/SV3C-4K-POE-IP-Camera-Outdoor-8MP-POE-Security-Camera-with-Smart-Motion-Detection-IR-Color-Night-Vision-120-Wide-Angle-2-Way-Audio-Metal-Shell-RTSP-SD-Card-Record-Wired-p2471515.html"] +} diff --git a/cameras/sv3c/b08poe.md b/cameras/sv3c/b08poe.md new file mode 100644 index 00000000..c50286f6 --- /dev/null +++ b/cameras/sv3c/b08poe.md @@ -0,0 +1,32 @@ +# SV3C SV-B08POE + +*Also known as: SV3C 4K PoE Bullet* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV-B08POE | +| Type | bullet | +| Connectivity | ethernet | +| Resolution | 4K UHD (8MP, 3840×2160) | +| Field of view | 120 horizontal° | +| Night vision | hybrid | +| Power | PoE / DC 12V | +| Storage | microSD ≤ 256GB, NVR | +| Protocols | rtsp | +| Two-way audio | Yes | + +## Features + +- 4K@20fps +- human/vehicle detection +- color night vision +- RTSP +- metal shell + +## Sources + +- https://www.sv3c.com/SV3C-4K-POE-IP-Camera-Outdoor-8MP-POE-Security-Camera-with-Smart-Motion-Detection-IR-Color-Night-Vision-120-Wide-Angle-2-Way-Audio-Metal-Shell-RTSP-SD-Card-Record-Wired-p2471515.html + +--- +*Auto-generated from sv3c-b08poe.json — do not edit by hand.* diff --git a/cameras/sv3c/c12.json b/cameras/sv3c/c12.json new file mode 100644 index 00000000..42ea71e9 --- /dev/null +++ b/cameras/sv3c/c12.json @@ -0,0 +1,43 @@ +{ + "id": "sv3c-c12", + "brand": "SV3C", + "model": "C12", + "aliases": ["SV3C PTZ WiFi 15X Optical Zoom", "SV3C 5MP WiFi PTZ Floodlight"], + "type": "ptz", + "connectivity": ["wifi"], + "resolution": { "megapixels": 5, "label": "5MP" }, + "lens": { "count": 1, "focal_length_mm": "15x optical zoom", "varifocal": true }, + "night_vision": { "type": "color" }, + "power": { "method": "DC 12V", "consumption_w": 12 }, + "storage": { "onboard": true, "nvr_compatible": false, "cloud": false }, + "protocols": ["rtsp"], + "ip_rating": "IP66", + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": [ + "15x optical zoom", + "auto-tracking", + "floodlight color night vision (12 IR LEDs)", + "two-way audio", + "metal dome shell", + "RTSP/FTP", + "Blue Iris compatible", + "dual stream (2 channels)" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. RTSP /stream0 (main) /stream1 (sub). No ONVIF — PTZ control via app/web UI only." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Manufacturer lists Blue Iris compatibility. Use Generic/RTSP at /stream0. No ONVIF PTZ control." + } + }, + "power_source": ["dc"], + "sources": [ + "https://www.amazon.de/SV3C-%C3%9Cberwachungskamera-Optischer-Flutlicht-Nachtsicht/dp/B0BDFF5VMC", + "https://www.sv3c.com/SV3C-PTZ-WiFi-Security-Camera-Outdoor-15X-Optical-Zoom-Auto-Tracking-5MP-8MP-Floodlight-Color-Night-Vision-Wireless-IP-Cam-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-p2032033.html" + ] +} diff --git a/cameras/sv3c/c12.md b/cameras/sv3c/c12.md new file mode 100644 index 00000000..33519a4c --- /dev/null +++ b/cameras/sv3c/c12.md @@ -0,0 +1,36 @@ +# SV3C C12 + +*Also known as: SV3C PTZ WiFi 15X Optical Zoom, SV3C 5MP WiFi PTZ Floodlight* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | C12 | +| Type | ptz | +| Connectivity | wifi | +| Resolution | 5MP (5MP) | +| Lens | 1× 15x optical zoommm | +| Night vision | color | +| Power | DC 12V | +| Protocols | rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- 15x optical zoom +- auto-tracking +- floodlight color night vision (12 IR LEDs) +- two-way audio +- metal dome shell +- RTSP/FTP +- Blue Iris compatible +- dual stream (2 channels) + +## Sources + +- https://www.amazon.de/SV3C-%C3%9Cberwachungskamera-Optischer-Flutlicht-Nachtsicht/dp/B0BDFF5VMC +- https://www.sv3c.com/SV3C-PTZ-WiFi-Security-Camera-Outdoor-15X-Optical-Zoom-Auto-Tracking-5MP-8MP-Floodlight-Color-Night-Vision-Wireless-IP-Cam-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-p2032033.html + +--- +*Auto-generated from sv3c-c12.json — do not edit by hand.* diff --git a/cameras/sv3c/c25.json b/cameras/sv3c/c25.json new file mode 100644 index 00000000..cdd4cea5 --- /dev/null +++ b/cameras/sv3c/c25.json @@ -0,0 +1,100 @@ +{ + "id": "sv3c-c25", + "brand": "SV3C", + "model": "C25", + "type": "ptz", + "connectivity": [ + "wifi", + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": true + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "36x hybrid zoom (18x optical + 18x digital)", + "350° pan / 93° tilt", + "auto-tracking", + "people/vehicle/pet detection", + "color night vision (9 IR LEDs)", + "two-way audio", + "ONVIF/RTSP/FTP", + "2.4/5GHz WiFi + Ethernet", + "cloud + microSD storage" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. ONVIF supported on this model (unlike most SV3C). PTZ control via ONVIF possible." + }, + "blue_iris": { + "profile": "Generic/ONVIF", + "notes": "Use Generic/ONVIF. PTZ control supported via ONVIF." + }, + "home_assistant": { + "integration": "onvif", + "notes": "ONVIF integration works — one of the few SV3C models with ONVIF. PTZ controls exposed via ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-8MP-PTZ-Camera-Outdoor-Update-2-4-5-GHZ-WiFi-Security-IP-Cameras-Support-36X-Zoom-RTSP-PC-Web-Browser-Viewing-Humanoid-Detect-FTP-IP66-Waterproof-2-way-Audio-SD-Card-Record-p2300200.html", + "https://www.amazon.de/SV3C-%C3%BCberwachungskamera-Haustiererkennung-Auto-Tracking-Farbnachtsicht/dp/B0CXPSKK2R" + ], + "aliases": [ + "SV3C 4K 36X Zoom PTZ", + "SV3C 8MP PTZ WiFi 36X" + ], + "sensor": "IMX415 CMOS", + "lens": { + "count": 1, + "focal_length_mm": "18x optical zoom (36x hybrid)", + "varifocal": true + }, + "video": { + "codecs": [ + "H.265" + ], + "max_fps": 15, + "streams": [ + { + "name": "main", + "resolution": "3840x2160", + "fps": 15, + "codec": "H.265" + } + ] + } +} diff --git a/cameras/sv3c/c25.md b/cameras/sv3c/c25.md new file mode 100644 index 00000000..9674f664 --- /dev/null +++ b/cameras/sv3c/c25.md @@ -0,0 +1,39 @@ +# SV3C C25 + +*Also known as: SV3C 4K 36X Zoom PTZ, SV3C 8MP PTZ WiFi 36X* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | C25 | +| Type | ptz | +| Connectivity | wifi, ethernet | +| Resolution | 4K UHD (8MP, 3840×2160) | +| Sensor | IMX415 CMOS | +| Lens | 1× 18x optical zoom (36x hybrid)mm | +| Night vision | color | +| Power | DC 12V | +| Storage | microSD ≤ 128GB | +| Protocols | onvif, rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- 36x hybrid zoom (18x optical + 18x digital) +- 350° pan / 93° tilt +- auto-tracking +- people/vehicle/pet detection +- color night vision (9 IR LEDs) +- two-way audio +- ONVIF/RTSP/FTP +- 2.4/5GHz WiFi + Ethernet +- cloud + microSD storage + +## Sources + +- https://www.sv3c.com/SV3C-8MP-PTZ-Camera-Outdoor-Update-2-4-5-GHZ-WiFi-Security-IP-Cameras-Support-36X-Zoom-RTSP-PC-Web-Browser-Viewing-Humanoid-Detect-FTP-IP66-Waterproof-2-way-Audio-SD-Card-Record-p2300200.html +- https://www.amazon.de/SV3C-%C3%BCberwachungskamera-Haustiererkennung-Auto-Tracking-Farbnachtsicht/dp/B0CXPSKK2R + +--- +*Auto-generated from sv3c-c25.json — do not edit by hand.* diff --git a/cameras/sv3c/d08poe.json b/cameras/sv3c/d08poe.json new file mode 100644 index 00000000..c7efa07c --- /dev/null +++ b/cameras/sv3c/d08poe.json @@ -0,0 +1,31 @@ +{ + "id": "sv3c-d08poe", + "brand": "SV3C", + "model": "SV-D08POE", + "aliases": ["SV3C 4K PoE Dome"], + "type": "dome", + "connectivity": ["ethernet"], + "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, + "field_of_view_deg": "120 horizontal", + "night_vision": { "type": "color" }, + "power": { "method": "PoE / DC 12V" }, + "storage": { "onboard": true, "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, + "protocols": ["rtsp"], + "ip_rating": "IP66", + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["4K 8MP", "human/vehicle detection", "color night vision", "RTSP", "24/7 recording"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. RTSP /stream0 (main) /stream1 (sub). No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": ["poe", "dc"], + "sources": ["https://www.sv3c.com/SV3C-4K-POE-Camera-Outdoor-IP-Dome-Wired-Security-Indoor-Camera-with-Human-Vehicle-Detection-8MP-HD-Color-Night-Vision-Two-Way-Audio-Waterproof-24-7-Recording-RTSP-Up-to-512GB-SD-Card-p2471510.html"] +} diff --git a/cameras/sv3c/d08poe.md b/cameras/sv3c/d08poe.md new file mode 100644 index 00000000..8ce296e2 --- /dev/null +++ b/cameras/sv3c/d08poe.md @@ -0,0 +1,33 @@ +# SV3C SV-D08POE + +*Also known as: SV3C 4K PoE Dome* + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV-D08POE | +| Type | dome | +| Connectivity | ethernet | +| Resolution | 4K UHD (8MP, 3840×2160) | +| Field of view | 120 horizontal° | +| Night vision | color | +| Power | PoE / DC 12V | +| Storage | microSD ≤ 512GB, NVR | +| Protocols | rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- 4K 8MP +- human/vehicle detection +- color night vision +- RTSP +- 24/7 recording + +## Sources + +- https://www.sv3c.com/SV3C-4K-POE-Camera-Outdoor-IP-Dome-Wired-Security-Indoor-Camera-with-Human-Vehicle-Detection-8MP-HD-Color-Night-Vision-Two-Way-Audio-Waterproof-24-7-Recording-RTSP-Up-to-512GB-SD-Card-p2471510.html + +--- +*Auto-generated from sv3c-d08poe.json — do not edit by hand.* diff --git a/cameras/sv3c/ptz-1080p-wifi-4x.json b/cameras/sv3c/ptz-1080p-wifi-4x.json new file mode 100644 index 00000000..3d69356a --- /dev/null +++ b/cameras/sv3c/ptz-1080p-wifi-4x.json @@ -0,0 +1,24 @@ +{ + "id": "sv3c-ptz-1080p-wifi-4x", + "brand": "SV3C", + "model": "SV3C 1080P WiFi PTZ 4X", + "type": "ptz", + "connectivity": ["wifi"], + "resolution": { "megapixels": 2, "max_width": 1920, "max_height": 1080, "label": "1080p FHD" }, + "night_vision": { "type": "ir" }, + "power": { "method": "DC 12V" }, + "storage": { "onboard": true, "nvr_compatible": false, "cloud": false }, + "protocols": ["rtsp"], + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["1080P WiFi PTZ", "4x digital zoom", "AI human detection", "RTSP", "CamHi app"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 640, "height": 480, "fps": 5}, + "notes": "Default user 'admin'. Budget 1080P PTZ. No ONVIF." + } + }, + "power_source": ["dc"], + "sources": ["https://www.sv3c.com/1080P-Wifi-Surveillance-Camera-SV3C-Wireless-Home-Security-PTZ-Camera-IP-CCTV-4X-Digital-ZOOM-AI-Human-Detect-CamHi-p2058778.html"] +} diff --git a/cameras/sv3c/ptz-1080p-wifi-4x.md b/cameras/sv3c/ptz-1080p-wifi-4x.md new file mode 100644 index 00000000..53725b97 --- /dev/null +++ b/cameras/sv3c/ptz-1080p-wifi-4x.md @@ -0,0 +1,28 @@ +# SV3C SV3C 1080P WiFi PTZ 4X + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV3C 1080P WiFi PTZ 4X | +| Type | ptz | +| Connectivity | wifi | +| Resolution | 1080p FHD (2MP, 1920×1080) | +| Night vision | ir | +| Power | DC 12V | +| Protocols | rtsp | +| Two-way audio | Yes | + +## Features + +- 1080P WiFi PTZ +- 4x digital zoom +- AI human detection +- RTSP +- CamHi app + +## Sources + +- https://www.sv3c.com/1080P-Wifi-Surveillance-Camera-SV3C-Wireless-Home-Security-PTZ-Camera-IP-CCTV-4X-Digital-ZOOM-AI-Human-Detect-CamHi-p2058778.html + +--- +*Auto-generated from sv3c-ptz-1080p-wifi-4x.json — do not edit by hand.* diff --git a/cameras/sv3c/ptz-4k-dual-network.json b/cameras/sv3c/ptz-4k-dual-network.json new file mode 100644 index 00000000..ab31939e --- /dev/null +++ b/cameras/sv3c/ptz-4k-dual-network.json @@ -0,0 +1,68 @@ +{ + "id": "sv3c-ptz-4k-dual-network", + "brand": "SV3C", + "model": "SV3C 4K PTZ PoE+WiFi Dual Network", + "type": "ptz", + "connectivity": [ + "ethernet", + "wifi" + ], + "resolution": { + "megapixels": 8, + "label": "4K UHD" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "pan/tilt/zoom", + "4K 8MP", + "dual network (PoE + WiFi)", + "auto-tracking", + "human/vehicle detection", + "color night vision", + "RTSP", + "24/7 recording", + "CamHiPro app" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. Supports both PoE and WiFi simultaneously. No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-PTZ-POE-Wired-WiFi-Security-Camera-Outdoor-Dual-Network-Support-Auto-Tracking-Security-Cam-Color-Night-Vision-Human-Vehicle-Detection-2-Way-Audio-Waterproof-24-7-Record-CamHiPro-p2707179.html" + ] +} diff --git a/cameras/sv3c/ptz-4k-dual-network.md b/cameras/sv3c/ptz-4k-dual-network.md new file mode 100644 index 00000000..11110634 --- /dev/null +++ b/cameras/sv3c/ptz-4k-dual-network.md @@ -0,0 +1,34 @@ +# SV3C SV3C 4K PTZ PoE+WiFi Dual Network + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV3C 4K PTZ PoE+WiFi Dual Network | +| Type | ptz | +| Connectivity | ethernet, wifi | +| Resolution | 4K UHD (8MP) | +| Night vision | color | +| Power | PoE / DC 12V | +| Storage | NVR | +| Protocols | rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- pan/tilt/zoom +- 4K 8MP +- dual network (PoE + WiFi) +- auto-tracking +- human/vehicle detection +- color night vision +- RTSP +- 24/7 recording +- CamHiPro app + +## Sources + +- https://www.sv3c.com/SV3C-4K-PTZ-POE-Wired-WiFi-Security-Camera-Outdoor-Dual-Network-Support-Auto-Tracking-Security-Cam-Color-Night-Vision-Human-Vehicle-Detection-2-Way-Audio-Waterproof-24-7-Record-CamHiPro-p2707179.html + +--- +*Auto-generated from sv3c-ptz-4k-dual-network.json — do not edit by hand.* diff --git a/cameras/sv3c/ptz-5mp-wifi-5x.json b/cameras/sv3c/ptz-5mp-wifi-5x.json new file mode 100644 index 00000000..d465f4e8 --- /dev/null +++ b/cameras/sv3c/ptz-5mp-wifi-5x.json @@ -0,0 +1,25 @@ +{ + "id": "sv3c-ptz-5mp-wifi-5x", + "brand": "SV3C", + "model": "SV3C 5MP WiFi PTZ 5X Spotlight", + "type": "ptz", + "connectivity": ["wifi"], + "resolution": { "megapixels": 5, "label": "5MP" }, + "night_vision": { "type": "color" }, + "power": { "method": "DC 12V" }, + "storage": { "onboard": true, "max_microsd_gb": 128, "nvr_compatible": false, "cloud": false }, + "protocols": ["rtsp"], + "ip_rating": "IP66", + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["5MP WiFi PTZ", "5x optical zoom", "auto-tracking", "spotlight color night vision", "IP66", "RTSP"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. No ONVIF." + } + }, + "power_source": ["dc"], + "sources": ["https://www.sv3c.com/New-Auto-Track-PTZ-WiFi-Camera-Outdoor-Wireless-5MP-5X-Zoom-Spotlight-Color-Night-Vision-Camera-IP66-Waterproof-Playback-p1737238.html"] +} diff --git a/cameras/sv3c/ptz-5mp-wifi-5x.md b/cameras/sv3c/ptz-5mp-wifi-5x.md new file mode 100644 index 00000000..1e7ae854 --- /dev/null +++ b/cameras/sv3c/ptz-5mp-wifi-5x.md @@ -0,0 +1,31 @@ +# SV3C SV3C 5MP WiFi PTZ 5X Spotlight + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV3C 5MP WiFi PTZ 5X Spotlight | +| Type | ptz | +| Connectivity | wifi | +| Resolution | 5MP (5MP) | +| Night vision | color | +| Power | DC 12V | +| Storage | microSD ≤ 128GB | +| Protocols | rtsp | +| IP rating | IP66 | +| Two-way audio | Yes | + +## Features + +- 5MP WiFi PTZ +- 5x optical zoom +- auto-tracking +- spotlight color night vision +- IP66 +- RTSP + +## Sources + +- https://www.sv3c.com/New-Auto-Track-PTZ-WiFi-Camera-Outdoor-Wireless-5MP-5X-Zoom-Spotlight-Color-Night-Vision-Camera-IP66-Waterproof-Playback-p1737238.html + +--- +*Auto-generated from sv3c-ptz-5mp-wifi-5x.json — do not edit by hand.* diff --git a/cameras/sv3c/ptz-poe-15x.json b/cameras/sv3c/ptz-poe-15x.json new file mode 100644 index 00000000..d9181349 --- /dev/null +++ b/cameras/sv3c/ptz-poe-15x.json @@ -0,0 +1,28 @@ +{ + "id": "sv3c-ptz-poe-15x", + "brand": "SV3C", + "model": "SV3C 5MP/8MP PoE PTZ 15X", + "type": "ptz", + "connectivity": ["ethernet"], + "resolution": { "megapixels": 5, "label": "5MP" }, + "night_vision": { "type": "color" }, + "power": { "method": "PoE / DC 12V" }, + "storage": { "onboard": true, "nvr_compatible": true, "cloud": false }, + "protocols": ["rtsp"], + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["15x optical zoom", "auto-tracking", "floodlight color night vision", "RTSP", "FTP", "Blue Iris compatible", "metal shell"], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": {"width": 1280, "height": 720, "fps": 5}, + "notes": "Default user 'admin'. No ONVIF. Blue Iris compatible per manufacturer." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Manufacturer explicitly lists Blue Iris compatibility. Use Generic/RTSP at /stream0." + } + }, + "power_source": ["poe", "dc"], + "sources": ["https://www.sv3c.com/SV3C-5MP-8MP-POE-PTZ-Security-Camera-Outdoor-15X-Optical-Zoom-5MP-4k-Auto-Tracking-Floodlight-Color-Night-Vision-IP-Camera-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-Wired-p2302126.html"] +} diff --git a/cameras/sv3c/ptz-poe-15x.md b/cameras/sv3c/ptz-poe-15x.md new file mode 100644 index 00000000..1b098e84 --- /dev/null +++ b/cameras/sv3c/ptz-poe-15x.md @@ -0,0 +1,31 @@ +# SV3C SV3C 5MP/8MP PoE PTZ 15X + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV3C 5MP/8MP PoE PTZ 15X | +| Type | ptz | +| Connectivity | ethernet | +| Resolution | 5MP (5MP) | +| Night vision | color | +| Power | PoE / DC 12V | +| Storage | NVR | +| Protocols | rtsp | +| Two-way audio | Yes | + +## Features + +- 15x optical zoom +- auto-tracking +- floodlight color night vision +- RTSP +- FTP +- Blue Iris compatible +- metal shell + +## Sources + +- https://www.sv3c.com/SV3C-5MP-8MP-POE-PTZ-Security-Camera-Outdoor-15X-Optical-Zoom-5MP-4k-Auto-Tracking-Floodlight-Color-Night-Vision-IP-Camera-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-Wired-p2302126.html + +--- +*Auto-generated from sv3c-ptz-poe-15x.json — do not edit by hand.* diff --git a/cameras/sv3c/ptz-wifi-track.json b/cameras/sv3c/ptz-wifi-track.json new file mode 100644 index 00000000..94999db4 --- /dev/null +++ b/cameras/sv3c/ptz-wifi-track.json @@ -0,0 +1,65 @@ +{ + "id": "sv3c-ptz-wifi-track", + "brand": "SV3C", + "model": "SV3C 5MP/8MP WiFi PTZ Motion Track", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "video": { + "codecs": [ + "H.265", + "H.264" + ] + }, + "features": [ + "pan/tilt/zoom", + "5MP/8MP variants", + "H.265+H.264", + "motion tracking", + "spotlight full-color night vision", + "metal shell", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. H.265 main stream available. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-8MP-WiFi-IP-Camera-Outdoor-Metal-Motion-Track-PTZ-Security-Surveillance-Camera-Spotlight-Full-Color-Night-Vision-IP-Camera-p2010092.html" + ] +} diff --git a/cameras/sv3c/ptz-wifi-track.md b/cameras/sv3c/ptz-wifi-track.md new file mode 100644 index 00000000..4a26ff36 --- /dev/null +++ b/cameras/sv3c/ptz-wifi-track.md @@ -0,0 +1,30 @@ +# SV3C SV3C 5MP/8MP WiFi PTZ Motion Track + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV3C 5MP/8MP WiFi PTZ Motion Track | +| Type | ptz | +| Connectivity | wifi | +| Resolution | 5MP (5MP) | +| Night vision | color | +| Power | DC 12V | +| Protocols | rtsp | +| Two-way audio | Yes | + +## Features + +- pan/tilt/zoom +- 5MP/8MP variants +- H.265+H.264 +- motion tracking +- spotlight full-color night vision +- metal shell +- RTSP + +## Sources + +- https://www.sv3c.com/SV3C-5MP-8MP-WiFi-IP-Camera-Outdoor-Metal-Motion-Track-PTZ-Security-Surveillance-Camera-Spotlight-Full-Color-Night-Vision-IP-Camera-p2010092.html + +--- +*Auto-generated from sv3c-ptz-wifi-track.json — do not edit by hand.* diff --git a/cameras/sv3c/solar-dual-lens-2k.json b/cameras/sv3c/solar-dual-lens-2k.json new file mode 100644 index 00000000..5c00e941 --- /dev/null +++ b/cameras/sv3c/solar-dual-lens-2k.json @@ -0,0 +1,16 @@ +{ + "id": "sv3c-solar-dual-lens-2k", + "brand": "SV3C", + "model": "SV3C 2K Solar Dual-Lens Kit", + "type": "dual-lens", + "connectivity": ["wifi"], + "resolution": { "megapixels": 4, "label": "2K QHD" }, + "field_of_view_deg": "106 wide / 46 tele", + "night_vision": { "type": "color" }, + "power": { "method": "Solar panel / rechargeable battery" }, + "storage": { "onboard": true, "max_microsd_gb": 64, "nvr_compatible": false, "cloud": false }, + "audio": { "microphone": true, "speaker": true, "two_way": true }, + "features": ["2K dual-lens", "solar powered", "360° pan/tilt", "auto-tracking", "color night vision", "no subscription", "4-camera kit"], + "power_source": ["battery", "solar"], + "sources": ["https://www.sv3c.com/SV3C-Security-Cameras-Wireless-Outdoor-2K-Dual-Lens-Camera-for-Home-Security-with-Solar-Powered-No-Subscription-Fees-360-Pan-Tilt-Auto-Tracking-Color-Night-Vision-2-Way-Audio-4-Camera-Kit-p2708922.html"] +} diff --git a/cameras/sv3c/solar-dual-lens-2k.md b/cameras/sv3c/solar-dual-lens-2k.md new file mode 100644 index 00000000..228c7da2 --- /dev/null +++ b/cameras/sv3c/solar-dual-lens-2k.md @@ -0,0 +1,31 @@ +# SV3C SV3C 2K Solar Dual-Lens Kit + +| Field | Spec | +|-------|------| +| Brand | SV3C | +| Model | SV3C 2K Solar Dual-Lens Kit | +| Type | dual-lens | +| Connectivity | wifi | +| Resolution | 2K QHD (4MP) | +| Field of view | 106 wide / 46 tele° | +| Night vision | color | +| Power | Solar panel / rechargeable battery | +| Storage | microSD ≤ 64GB | +| Two-way audio | Yes | + +## Features + +- 2K dual-lens +- solar powered +- 360° pan/tilt +- auto-tracking +- color night vision +- no subscription +- 4-camera kit + +## Sources + +- https://www.sv3c.com/SV3C-Security-Cameras-Wireless-Outdoor-2K-Dual-Lens-Camera-for-Home-Security-with-Solar-Powered-No-Subscription-Fees-360-Pan-Tilt-Auto-Tracking-Color-Night-Vision-2-Way-Audio-4-Camera-Kit-p2708922.html + +--- +*Auto-generated from sv3c-solar-dual-lens-2k.json — do not edit by hand.* diff --git a/cameras/tapo/c120.json b/cameras/tapo/c120.json index 087eec98..94f4d153 100644 --- a/cameras/tapo/c120.json +++ b/cameras/tapo/c120.json @@ -8,7 +8,7 @@ "ethernet" ], "resolution": { - "megapixels": 2, + "megapixels": 3.7, "max_width": 2560, "max_height": 1440, "label": "2K QHD" diff --git a/cameras/tapo/c120.md b/cameras/tapo/c120.md index 54d72ddf..82b7fdc8 100644 --- a/cameras/tapo/c120.md +++ b/cameras/tapo/c120.md @@ -6,7 +6,7 @@ | Model | Tapo C120 | | Type | bullet | | Connectivity | wifi, ethernet | -| Resolution | 2K QHD (2MP, 2560×1440) | +| Resolution | 2K QHD (3.7MP, 2560×1440) | | Lens | 1× 2.8mmmm F2.0 | | Field of view | 130 horizontal° | | Night vision | color (9m) | diff --git a/cameras/tapo/tc82-floodlight.json b/cameras/tapo/tc82-floodlight.json index 3d4cadac..47c07edd 100644 --- a/cameras/tapo/tc82-floodlight.json +++ b/cameras/tapo/tc82-floodlight.json @@ -3,7 +3,8 @@ "brand": "Tapo", "model": "TC82", "aliases": [ - "TP-Link Tapo TC82 2K Floodlight Camera" + "TP-Link Tapo TC82 2K Floodlight Camera", + "tapo-tc82" ], "type": "bullet", "connectivity": [ diff --git a/cameras/tapo/tc82-floodlight.md b/cameras/tapo/tc82-floodlight.md index fce22916..446a5b15 100644 --- a/cameras/tapo/tc82-floodlight.md +++ b/cameras/tapo/tc82-floodlight.md @@ -1,6 +1,6 @@ # Tapo TC82 -*Also known as: TP-Link Tapo TC82 2K Floodlight Camera* +*Also known as: TP-Link Tapo TC82 2K Floodlight Camera, tapo-tc82* | Field | Spec | |-------|------| diff --git a/cameras/tapo/tc82.json b/cameras/tapo/tc82.json deleted file mode 100644 index 7daf890d..00000000 --- a/cameras/tapo/tc82.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "id": "tapo-tc82", - "brand": "Tapo", - "model": "TC82", - "aliases": [ - "Smart Outdoor Camera with Floodlight" - ], - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2023, - "resolution": { - "megapixels": 4, - "max_width": 2560, - "max_height": 1440, - "label": "2K QHD" - }, - "lens": { - "count": 1, - "focal_length_mm": "2.8mm", - "aperture": "F1.6", - "varifocal": false - }, - "field_of_view_deg": "116 horizontal", - "night_vision": { - "type": "color", - "range_m": 15 - }, - "power": { - "method": "Hardwired (AC)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "2K floodlight security camera", - "3000-lumen floodlight", - "AI person/pet/vehicle detection", - "color night vision", - "IP66", - "built-in siren", - "activity zones", - "no subscription" - ], - "sources": [ - "https://www.tapo.com/" - ], - "power_source": [ - "ac-mains" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/stream1", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/stream2" - }, - "home_assistant": { - "integration": "tapo", - "notes": "Native TP-Link Tapo integration. Requires Tapo cloud account credentials." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP streams: /stream1 (main), /stream2 (sub). Must enable ONVIF in Tapo app." - } - } -} diff --git a/cameras/tapo/tc82.md b/cameras/tapo/tc82.md deleted file mode 100644 index f9f50dae..00000000 --- a/cameras/tapo/tc82.md +++ /dev/null @@ -1,38 +0,0 @@ -# Tapo TC82 - -*Also known as: Smart Outdoor Camera with Floodlight* - -| Field | Spec | -|-------|------| -| Brand | Tapo | -| Model | TC82 | -| Type | bullet | -| Connectivity | wifi | -| Resolution | 2K QHD (4MP, 2560×1440) | -| Lens | 1× 2.8mmmm F1.6 | -| Field of view | 116 horizontal° | -| Night vision | color (15m) | -| Power | Hardwired (AC) | -| Storage | microSD ≤ 256GB | -| Protocols | rtsp | -| IP rating | IP66 | -| Two-way audio | Yes | -| Released | 2023 | - -## Features - -- 2K floodlight security camera -- 3000-lumen floodlight -- AI person/pet/vehicle detection -- color night vision -- IP66 -- built-in siren -- activity zones -- no subscription - -## Sources - -- https://www.tapo.com/ - ---- -*Auto-generated from tapo-tc82.json — do not edit by hand.* diff --git a/cameras/ubiquiti/g4-doorbell-pro.json b/cameras/ubiquiti/g4-doorbell-pro.json index 91997e9c..475f1fe3 100644 --- a/cameras/ubiquiti/g4-doorbell-pro.json +++ b/cameras/ubiquiti/g4-doorbell-pro.json @@ -63,8 +63,8 @@ "configs": { "frigate": { "detect": { - "width": 1280, - "height": 720, + "width": 720, + "height": 1280, "fps": 5 }, "rtsp_url_template": "rtsps://{ip}:7441/{camera_id}?enableSrtp" diff --git a/cameras/ubiquiti/g4-doorbell.json b/cameras/ubiquiti/g4-doorbell.json index 4e628114..437cd85c 100644 --- a/cameras/ubiquiti/g4-doorbell.json +++ b/cameras/ubiquiti/g4-doorbell.json @@ -64,8 +64,8 @@ "configs": { "frigate": { "detect": { - "width": 1280, - "height": 720, + "width": 720, + "height": 1280, "fps": 5 }, "rtsp_url_template": "rtsps://{ip}:7441/{camera_id}?enableSrtp" diff --git a/cameras/uniview/ipc2224se-df40k-wl.json b/cameras/uniview/ipc2224se-df40k-wl.json deleted file mode 100644 index b653b5bd..00000000 --- a/cameras/uniview/ipc2224se-df40k-wl.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "id": "uniview-ipc2224se-df40k-wl", - "brand": "Uniview", - "model": "IPC2224SE-DF40K-WL-I0", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2022, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "90h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Uniview 4MP LightHunter full-color dome", - "warm LED color night vision", - "NDAA", - "H.265+", - "IP67", - "IK10" - ], - "sources": [ - "https://www.uniview.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s0/live", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s1/live" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP paths: /unicast/c1/s0/live (main), /unicast/c1/s1/live (sub)." - } - } -} diff --git a/cameras/uniview/ipc2224se-df40k-wl.md b/cameras/uniview/ipc2224se-df40k-wl.md deleted file mode 100644 index 7b8497d3..00000000 --- a/cameras/uniview/ipc2224se-df40k-wl.md +++ /dev/null @@ -1,33 +0,0 @@ -# Uniview IPC2224SE-DF40K-WL-I0 - -| Field | Spec | -|-------|------| -| Brand | Uniview | -| Model | IPC2224SE-DF40K-WL-I0 | -| Type | dome | -| Connectivity | ethernet | -| Resolution | 4MP (4MP) | -| Field of view | 90h° | -| Night vision | color (30m) | -| Power | PoE / DC 12V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | No | -| Released | 2022 | - -## Features - -- Uniview 4MP LightHunter full-color dome -- warm LED color night vision -- NDAA -- H.265+ -- IP67 -- IK10 - -## Sources - -- https://www.uniview.com/ - ---- -*Auto-generated from uniview-ipc2224se-df40k-wl.json — do not edit by hand.* diff --git a/cameras/uniview/ipc2228se-df40k-wl.json b/cameras/uniview/ipc2228se-df40k-wl.json deleted file mode 100644 index 61d795e1..00000000 --- a/cameras/uniview/ipc2228se-df40k-wl.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "id": "uniview-ipc2228se-df40k-wl", - "brand": "Uniview", - "model": "IPC2228SE-DF40K-WL-I0", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "label": "4K UHD" - }, - "field_of_view_deg": "107h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Uniview 4K LightHunter full-color dome", - "warm LED color night vision", - "AI human/vehicle", - "NDAA", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.uniview.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s0/live", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s1/live" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP paths: /unicast/c1/s0/live (main), /unicast/c1/s1/live (sub)." - } - } -} diff --git a/cameras/uniview/ipc2228se-df40k-wl.md b/cameras/uniview/ipc2228se-df40k-wl.md deleted file mode 100644 index c2c5b890..00000000 --- a/cameras/uniview/ipc2228se-df40k-wl.md +++ /dev/null @@ -1,33 +0,0 @@ -# Uniview IPC2228SE-DF40K-WL-I0 - -| Field | Spec | -|-------|------| -| Brand | Uniview | -| Model | IPC2228SE-DF40K-WL-I0 | -| Type | dome | -| Connectivity | ethernet | -| Resolution | 4K UHD (8MP) | -| Field of view | 107h° | -| Night vision | color (30m) | -| Power | PoE / DC 12V | -| Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | -| IP rating | IP67 | -| Two-way audio | No | -| Released | 2023 | - -## Features - -- Uniview 4K LightHunter full-color dome -- warm LED color night vision -- AI human/vehicle -- NDAA -- H.265+ -- IP67 - -## Sources - -- https://www.uniview.com/ - ---- -*Auto-generated from uniview-ipc2228se-df40k-wl.json — do not edit by hand.* diff --git a/cameras/vivotek/sd9388-ehl.json b/cameras/vivotek/sd9388-ehl.json index e3848d4f..55739df6 100644 --- a/cameras/vivotek/sd9388-ehl.json +++ b/cameras/vivotek/sd9388-ehl.json @@ -36,6 +36,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Vivotek 4MP 32x outdoor PTZ", "100m IR", "Smart VCA AI", diff --git a/cameras/vivotek/sd9388-ehl.md b/cameras/vivotek/sd9388-ehl.md index ae8c5715..5ab0b614 100644 --- a/cameras/vivotek/sd9388-ehl.md +++ b/cameras/vivotek/sd9388-ehl.md @@ -19,6 +19,7 @@ ## Features +- pan/tilt/zoom - Vivotek 4MP 32x outdoor PTZ - 100m IR - Smart VCA AI diff --git a/cameras/wyze/battery-cam-pro.json b/cameras/wyze/battery-cam-pro.json index b0193aa2..e51c4fbd 100644 --- a/cameras/wyze/battery-cam-pro.json +++ b/cameras/wyze/battery-cam-pro.json @@ -35,7 +35,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -60,21 +61,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge (https://github.com/mrlt8/docker-wyze-bridge) for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } } diff --git a/cameras/wyze/battery-cam-pro.md b/cameras/wyze/battery-cam-pro.md index 349a3d86..d9f83386 100644 --- a/cameras/wyze/battery-cam-pro.md +++ b/cameras/wyze/battery-cam-pro.md @@ -13,7 +13,7 @@ | Night vision | color (10m) | | Power | Rechargeable battery / optional solar panel | | Storage | microSD ≤ 256GB | -| Protocols | rtsp | +| Protocols | http, p2p | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2024 | diff --git a/cameras/wyze/cam-outdoor-pro.json b/cameras/wyze/cam-outdoor-pro.json index 556e48fa..aff8b2d0 100644 --- a/cameras/wyze/cam-outdoor-pro.json +++ b/cameras/wyze/cam-outdoor-pro.json @@ -36,7 +36,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -50,8 +51,7 @@ "AI person/vehicle/animal/package", "no subscription", "solar optional", - "Alexa / Google", - "RTSP" + "Alexa / Google" ], "msrp_usd": 59, "sources": [ @@ -62,21 +62,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } } diff --git a/cameras/wyze/cam-outdoor-pro.md b/cameras/wyze/cam-outdoor-pro.md index b9f5c767..85e76bc9 100644 --- a/cameras/wyze/cam-outdoor-pro.md +++ b/cameras/wyze/cam-outdoor-pro.md @@ -12,7 +12,7 @@ | Night vision | color (12m) | | Power | Rechargeable battery / solar optional | | Storage | microSD ≤ 256GB | -| Protocols | rtsp | +| Protocols | http, p2p | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2024 | @@ -25,7 +25,6 @@ - no subscription - solar optional - Alexa / Google -- RTSP ## Sources diff --git a/cameras/wyze/cam-outdoor-v2.json b/cameras/wyze/cam-outdoor-v2.json index 5a7b9bca..b83d2fc2 100644 --- a/cameras/wyze/cam-outdoor-v2.json +++ b/cameras/wyze/cam-outdoor-v2.json @@ -38,7 +38,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -64,21 +65,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } } diff --git a/cameras/wyze/cam-outdoor-v2.md b/cameras/wyze/cam-outdoor-v2.md index c109b122..fe68bdec 100644 --- a/cameras/wyze/cam-outdoor-v2.md +++ b/cameras/wyze/cam-outdoor-v2.md @@ -15,7 +15,7 @@ | Night vision | ir (7m) | | Power | Rechargeable battery / optional solar panel / USB-C | | Storage | microSD ≤ 32GB | -| Protocols | rtsp | +| Protocols | http, p2p | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2022 | diff --git a/cameras/wyze/cam-pan-v2.json b/cameras/wyze/cam-pan-v2.json index 224c2c32..ec488434 100644 --- a/cameras/wyze/cam-pan-v2.json +++ b/cameras/wyze/cam-pan-v2.json @@ -38,7 +38,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -63,21 +64,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No native RTSP. Use docker-wyze-bridge for local RTSP proxy. Pan/tilt control available via bridge." } } } diff --git a/cameras/wyze/cam-pan-v2.md b/cameras/wyze/cam-pan-v2.md index e6c120aa..e4ca006e 100644 --- a/cameras/wyze/cam-pan-v2.md +++ b/cameras/wyze/cam-pan-v2.md @@ -15,7 +15,7 @@ | Night vision | color (9m) | | Power | USB-A (hardwired) | | Storage | microSD ≤ 256GB | -| Protocols | rtsp | +| Protocols | http, p2p | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2022 | diff --git a/cameras/wyze/cam-v2.json b/cameras/wyze/cam-v2.json index 4e7dc64f..7380aff2 100644 --- a/cameras/wyze/cam-v2.json +++ b/cameras/wyze/cam-v2.json @@ -38,7 +38,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "audio": { "microphone": true, @@ -50,8 +51,7 @@ "14-day free cloud storage", "person detection", "continuous recording (microSD)", - "Alexa / Google Home", - "RTSP firmware available" + "Alexa / Google Home" ], "msrp_usd": 26, "sources": [ @@ -61,21 +61,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "Legacy RTSP firmware was available but is discontinued. Use docker-wyze-bridge for local RTSP proxy." } } } diff --git a/cameras/wyze/cam-v2.md b/cameras/wyze/cam-v2.md index 9e9f3436..bc6da2da 100644 --- a/cameras/wyze/cam-v2.md +++ b/cameras/wyze/cam-v2.md @@ -15,7 +15,7 @@ | Night vision | ir (9m) | | Power | Micro-USB 5V | | Storage | microSD ≤ 32GB | -| Protocols | rtsp | +| Protocols | http, p2p | | Two-way audio | Yes | | Released | 2018 | @@ -26,7 +26,6 @@ - person detection - continuous recording (microSD) - Alexa / Google Home -- RTSP firmware available ## Sources diff --git a/cameras/wyze/floodlight-cam-v2.json b/cameras/wyze/floodlight-cam-v2.json index 1ea21cb5..20c0394a 100644 --- a/cameras/wyze/floodlight-cam-v2.json +++ b/cameras/wyze/floodlight-cam-v2.json @@ -35,7 +35,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -60,21 +61,9 @@ "ac-mains" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy." } } } diff --git a/cameras/wyze/floodlight-cam-v2.md b/cameras/wyze/floodlight-cam-v2.md index 411634c6..d5fc3014 100644 --- a/cameras/wyze/floodlight-cam-v2.md +++ b/cameras/wyze/floodlight-cam-v2.md @@ -13,7 +13,7 @@ | Night vision | color (12m) | | Power | Hardwired (AC mains) | | Storage | microSD ≤ 256GB | -| Protocols | rtsp | +| Protocols | http, p2p | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2023 | diff --git a/cameras/yale/sv-dafx-w.json b/cameras/yale/sv-dafx-w.json index f177dc11..d22149f0 100644 --- a/cameras/yale/sv-dafx-w.json +++ b/cameras/yale/sv-dafx-w.json @@ -40,9 +40,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -68,21 +66,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Yale cameras are primarily cloud-based (Yale Home app). RTSP support is unconfirmed. Check camera settings for ONVIF/RTSP options." } } } diff --git a/cameras/yale/sv-dafx-w.md b/cameras/yale/sv-dafx-w.md index bda6bf79..8d7843e9 100644 --- a/cameras/yale/sv-dafx-w.md +++ b/cameras/yale/sv-dafx-w.md @@ -14,7 +14,6 @@ | Night vision | ir (10m) | | Power | Mains powered (USB/AC) | | Storage | microSD ≤ 128GB, NVR | -| Protocols | rtsp | | IP rating | IP65 | | Two-way audio | Yes | | Released | 2020 | diff --git a/cameras/yale/sv-dpfx-w.json b/cameras/yale/sv-dpfx-w.json index 29a6a285..933e217f 100644 --- a/cameras/yale/sv-dpfx-w.json +++ b/cameras/yale/sv-dpfx-w.json @@ -40,9 +40,7 @@ "nvr_compatible": false, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -67,21 +65,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Yale cameras are primarily cloud-based (Yale Home app). RTSP support is unconfirmed." } } } diff --git a/cameras/yale/sv-dpfx-w.md b/cameras/yale/sv-dpfx-w.md index dd279c76..d010788e 100644 --- a/cameras/yale/sv-dpfx-w.md +++ b/cameras/yale/sv-dpfx-w.md @@ -14,7 +14,6 @@ | Night vision | color (8m) | | Power | DC 5V (USB) | | Storage | microSD ≤ 128GB | -| Protocols | rtsp | | IP rating | IP20 | | Two-way audio | Yes | | Released | 2022 | diff --git a/cameras/yale/wipc-303w.json b/cameras/yale/wipc-303w.json index 68835aca..fcd6512c 100644 --- a/cameras/yale/wipc-303w.json +++ b/cameras/yale/wipc-303w.json @@ -38,9 +38,7 @@ "nvr_compatible": false, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -64,21 +62,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Older Yale model. RTSP support is unconfirmed. May be cloud-only via Yale Home app." } } } diff --git a/cameras/yale/wipc-303w.md b/cameras/yale/wipc-303w.md index 87514507..c7cf7111 100644 --- a/cameras/yale/wipc-303w.md +++ b/cameras/yale/wipc-303w.md @@ -14,7 +14,6 @@ | Night vision | ir (8m) | | Power | DC 5V (USB) | | Storage | microSD ≤ 32GB | -| Protocols | rtsp | | IP rating | IP20 | | Two-way audio | Yes | | Released | 2019 | diff --git a/cameras/zebronics/zeb-ns-cam4000.json b/cameras/zebronics/zeb-ns-cam4000.json index ac35cd71..6e41311d 100644 --- a/cameras/zebronics/zeb-ns-cam4000.json +++ b/cameras/zebronics/zeb-ns-cam4000.json @@ -25,10 +25,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "onvif", - "rtsp" - ], + "protocols": [], "ip_rating": "IP66", "audio": { "microphone": false, @@ -38,7 +35,6 @@ "features": [ "Zebronics 4MP PoE outdoor bullet India", "30m IR", - "ONVIF/RTSP", "IP66", "₹3,499" ], @@ -50,7 +46,6 @@ ], "msrp_inr": 3499, "power_source": [ - "poe", "dc" ] } diff --git a/cameras/zebronics/zeb-ns-cam4000.md b/cameras/zebronics/zeb-ns-cam4000.md index 29448e10..843b9143 100644 --- a/cameras/zebronics/zeb-ns-cam4000.md +++ b/cameras/zebronics/zeb-ns-cam4000.md @@ -11,7 +11,6 @@ | Night vision | ir (30m) | | Power | PoE/DC12V | | Storage | microSD ≤ 256GB, NVR | -| Protocols | onvif, rtsp | | IP rating | IP66 | | Two-way audio | No | | Released | 2023 | @@ -20,7 +19,6 @@ - Zebronics 4MP PoE outdoor bullet India - 30m IR -- ONVIF/RTSP - IP66 - ₹3,499 diff --git a/data/cameras.csv b/data/cameras.csv index 6a7b4320..23f251dd 100644 --- a/data/cameras.csv +++ b/data/cameras.csv @@ -19,7 +19,7 @@ acti-a88,ACTi,A88,bullet,5MP,5,"1/2.7"" CMOS",95 horizontal,ir,IP67,false, acti-b416,ACTi,B416,bullet,4K UHD,8,"1/2.8"" CMOS",,ir,IP68,false, acti-i68,ACTi,I68,ptz,1080p FHD,2,"1/2.8"" CMOS",,ir,IP66,true, acti-kcm-5611,ACTi,KCM-5611,box,1080p FHD,2,"1/2.8"" CMOS",,ir,IP66,true, -acti-q416,ACTi,Q416,fisheye,12MP,12,"1/1.7"" CMOS",180 horizontal,ir,IP66,true, +acti-q416,ACTi,Q416,fisheye,12MP UHD,12,"1/1.7"" CMOS",180 horizontal,ir,IP66,true, acti-y31,ACTi,Y31,bullet,2MP,2,"1/3"" CMOS",,ir,IP67,, acti-y32,ACTi,Y32,bullet,5MP,5,"1/2.7"" CMOS",,ir,IP67,, acti-y35,ACTi,Y35,bullet,2MP,2,"1/3"" CMOS",,ir,IP67,, @@ -31,7 +31,6 @@ acti-z84,ACTi,Z84,dome,1080p FHD,2,"1/2.8"" CMOS",110 horizontal,ir,,true, adt-command-indoor-cam,ADT,ADT+ Indoor Camera,dome,2K QHD,4,,124 diagonal,color,IP20,true,2023 adt-command-outdoor-cam,ADT,ADT+ Outdoor Camera,bullet,2K QHD,4,,140 horizontal,color,IP65,true,2023 adt-doorbell-cam-v2,ADT,ADT+ Video Doorbell,doorbell,1080p HD,2,,150h,ir,IP44,true,2023 -adt-indoor-cam-v2,ADT,ADT+ Indoor Camera,dome,1080p HD,2,,120h,ir,IP20,true,2023 adt-plus-floodlight-cam,ADT,ADT+ Floodlight Camera,bullet,2K QHD,4,,150 horizontal,color,IP65,true,2024 ajax-dualcam,Ajax,DualCam,dome,2K dual camera,4,,105 wide + 45 tele,ir,IP55,true,2024 ajax-outdoor-cam-multisensor,Ajax,OutdoorCam,bullet,4K UHD,8,,107 horizontal,color,IP66,true,2024 @@ -63,7 +62,7 @@ annke-ac400,Annke,AC400,bullet,4MP,4,,,ir,IP67,false,2023 annke-ac500,Annke,AC500,turret,5MP 3K,5,"1/2.7"" CMOS",105 horizontal,hybrid,IP67,true,2023 annke-ac800,Annke,AC800,bullet,4K UHD,8,"1/1.8"" Progressive Scan CMOS",102 horizontal,hybrid,IP67,true,2022 annke-ac800p,Annke,AC800P,ptz,4K UHD,8,,,ir,IP67,true,2023 -annke-c1200,Annke,C1200,turret,12MP,12,"1/1.7"" CMOS",,ir,IP67,false,2024 +annke-c1200,Annke,C1200,turret,12MP UHD,12,"1/1.7"" CMOS",,ir,IP67,false,2024 annke-c500,Annke,C500,bullet,5MP 3K,5,"OmniVision 1/2.7"" CMOS",100 horizontal (2.8mm),ir,IP67,false,2021 annke-c700,Annke,C700,bullet,5MP,5,,103h,ir,IP67,false,2021 annke-c800-bullet,Annke,C800 (Bullet),bullet,4K UHD,8,"1/2.7"" CMOS",96 horizontal (4mm),ir,IP67,false,2020 @@ -106,12 +105,10 @@ arlo-pro-5s-4k-ultra,Arlo,Pro 5S 4K Ultra,dome,4K UHD HDR,8,,180 horizontal,colo arlo-pro-5s-au,Arlo,Pro 5S (Australia),dome,2K QHD,4,,160 diagonal,color,IP65,true,2024 arlo-pro-5s-ca,Arlo,Pro 5S (Canada),dome,2K QHD,4,,160 diagonal,color,IP65,true,2024 arlo-pro-5s-eu,Arlo,Pro 5S (EU),dome,2K QHD,4,,160 diagonal,color,IP65,true,2024 -arlo-pro-5s-spotlight,Arlo,Pro 5S 2K Spotlight,dome,2K QHD,4,,160 diagonal,color,IP65,true,2024 arlo-pro-5s-uk,Arlo,Pro 5S (UK),dome,2K QHD,4,,160 diagonal,color,IP65,true,2024 arlo-security-light,Arlo,Security Light,bullet,2K QHD,4,,130 diagonal,color,IP65,true,2024 arlo-solar-panel-cam,Arlo,Solar Panel Cam,bullet,2K QHD,4,,130 diagonal,color,IP65,true,2024 arlo-ultra,Arlo,Ultra,dome,4K UHD,8,,180 diagonal,color,IP65,true,2019 -arlo-ultra-2,Arlo,Ultra 2 Spotlight,dome,4K UHD,8,,180 diagonal,color,IP65,true,2021 arlo-ultra-2-spotlight,Arlo,Ultra 2 Spotlight,dome,4K UHD,8,,180 diagonal,color,IP65,true,2021 arlo-video-doorbell-hd,Arlo,Video Doorbell HD,doorbell,2K QHD,4,,180 diagonal,color,IP55,true,2023 arlo-wired-doorbell-2nd-gen,Arlo,Video Doorbell Wired (2nd Gen),doorbell,2K QHD,4,,180 diagonal,color,IP55,true,2024 @@ -151,13 +148,11 @@ axis-m3077-plve,Axis,M3077-PLVE,panoramic,6MP,6,"1/1.8"" Progressive Scan CMOS", axis-m3085-v,Axis,M3085-V,dome,1080p,2,"1/2.8"" Progressive Scan CMOS",95-50 horizontal,ir,IP42,false,2022 axis-m3086-v,Axis,M3086-V,dome,4MP,4,"1/2.8"" Progressive Scan CMOS",105 horizontal,none,IP42,false,2023 axis-m3088-v,Axis,M3088-V,dome,4K UHD,8,"1/2.7"" Progressive Scan CMOS",101 horizontal,none,IP42,false,2024 -axis-m3106-l-mk-ii,Axis,M3106-L Mk II,dome,4MP,4,"1/3"" Progressive Scan CMOS",112 horizontal,none,IK08,false,2019 -axis-m3106-l-mkii,Axis,M3106-L Mk II,dome,4MP,4,"1/3"" Progressive Scan CMOS",108 horizontal,ir,IP42,false, -axis-m3106-lve,Axis,M3106-LVE Mk II,dome,4MP,4,"1/3"" Progressive Scan CMOS",100-35 horizontal,ir,IP66,false, +axis-m3106-l-mk-ii,Axis,M3106-L Mk II,dome,4MP,4,"1/3"" Progressive Scan CMOS",112 horizontal,none,,false,2019 axis-m3106-lve-mk-ii,Axis,M3106-LVE Mk II,dome,4MP,4,"1/2.7"" Progressive Scan CMOS",107-36 horizontal,ir,IP66,false, axis-m3106-ma-mk2,Axis,M3106-MA Mk II,dome,4MP,4,,112h,ir,IP66,false,2020 axis-m3115-lve,Axis,M3115-LVE,dome,1080p,2,"1/2.9"" Progressive Scan CMOS",90 horizontal,ir,IP66,false, -axis-m3116-lve,Axis,M3116-LVE,dome,12MP,12,"1/1.7"" Progressive Scan CMOS",183 horizontal (fisheye-corrected),ir,IP66,false, +axis-m3116-lve,Axis,M3116-LVE,dome,12MP UHD,12,"1/1.7"" Progressive Scan CMOS",183 horizontal (fisheye-corrected),ir,IP66,false, axis-m4216-lv,Axis,M4216-LV,dome,4MP,4,"1/2.7"" Progressive Scan CMOS",100-35 horizontal,ir,IP42,false,2024 axis-m4216-v,Axis,M4216-V,dome,4MP,4,"1/2.7"" Progressive Scan CMOS",100-35 horizontal,none,IP42,false,2024 axis-m4317-plve,Axis,M4317-PLVE,panoramic,6MP,6,"1/1.8"" Progressive Scan CMOS",360 horizontal,ir,IP66,false,2023 @@ -183,18 +178,18 @@ axis-p3267-lv,Axis,P3267-LV,dome,4K UHD,7,"1/1.8"" Progressive Scan CMOS",100-36 axis-p3267-lve,Axis,P3267-LVE,dome,4K UHD,7,"1/1.8"" Progressive Scan CMOS",100-36 horizontal,ir,IP52,false,2023 axis-p3268-lve,Axis,P3268-LVE,dome,4K UHD,8,,95-28h,ir,IP66,false,2023 axis-p3344,Axis,P3344-V,dome,1080p HD,2,,100-33h,ir,IP66,false,2011 -axis-p3727-ple,Axis,P3727-PLE,panoramic,4x2MP multisensor,8,"4x 1/2.8"" Progressive Scan CMOS",360 (wall/ceiling mount),ir,IP66,false, +axis-p3727-ple,Axis,P3727-PLE,panoramic,4x2MP multisensor,24,"4x 1/2.8"" Progressive Scan CMOS",360 (wall/ceiling mount),ir,IP66,false, axis-p3737-ple,Axis,P3737-PLE,panoramic,4x5MP multisensor,20,"4x 1/2.8"" Progressive Scan CMOS",360 (wall/ceiling),ir,IP66,false, axis-p3818-pve,Axis,P3818-PVE,panoramic,4x5MP multisensor,20,"4x 1/2.8"" CMOS",360,none,IP66,false, -axis-p5655-e,Axis,P5655-E,ptz,1080p HD,2,,55-1.7h,none,IP66,false,2019 +axis-p5655-e,Axis,P5655-E,ptz,1080p HD,2,,55-1.7h,ir,IP66,false,2019 axis-p5676-le,Axis,P5676-LE,ptz,4MP,4,"1/2.8"" Progressive Scan CMOS",57.9-2.4 horizontal,ir,IP66,false, axis-p5676-le-mkii,Axis,P5676-LE MKII,ptz,4K UHD,8,"1/2.5"" Progressive Scan CMOS",56.5-5.1 horizontal,ir,IP66,false,2024 axis-q1656,Axis,Q1656,box,4K UHD,8,"1/1.7"" Progressive Scan CMOS",,none,IP42,false, axis-q1656-be,Axis,Q1656-BE,box,4K UHD,8,"1/1.7"" Progressive Scan CMOS",,none,IP66,false, axis-q1785-le,Axis,Q1785-LE,bullet,1080p,2,"1/2.9"" Progressive Scan CMOS",100-36 horizontal,ir,IP66,false, -axis-q1942-e,Axis,Q1942-E,bullet,640x480 thermal,0,Thermal VOx LWIR uncooled microbolometer,,none,IP66,false, +axis-q1942-e,Axis,Q1942-E,bullet,640x480 thermal,0.3,Thermal VOx LWIR uncooled microbolometer,,none,IP66,false, axis-q1952-e,Axis,Q1952-E,bullet,640x480 thermal,0.3,Uncooled microbolometer,61 horizontal,none,IP66,false,2022 -axis-q2101-e,Axis,Q2101-E Thermal,bullet,384×288 thermal,0,Uncooled microbolometer LWIR,45 horizontal (10mm),none,IP66,false,2021 +axis-q2101-e,Axis,Q2101-E Thermal,bullet,384×288 thermal,0.08,Uncooled microbolometer LWIR,45 horizontal (10mm),none,IP66,false,2021 axis-q3527-lve,Axis,Q3527-LVE,dome,5MP,5,"1/2.7"" Progressive Scan CMOS",100-35 horizontal,ir,IP66,true, axis-q3536-lve,Axis,Q3536-LVE,dome,4K UHD,8,"1/1.8"" Progressive Scan CMOS",100-35 horizontal,ir,IP66,false, axis-q3538-lve,Axis,Q3538-LVE,dome,4K UHD,8,"1/1.2"" Progressive Scan RGB CMOS",60-31 horizontal,ir,IP66,false, @@ -230,7 +225,7 @@ bosch-nbe-5702-al,Bosch,DINION 5100i 2MP Bullet (NBE-5702-AL),bullet,1080p,2,"1/ bosch-nbe-5703-al,Bosch,DINION 5100i 5MP Bullet (NBE-5703-AL),bullet,5MP,5,"1/2.7"" CMOS",96-29 horizontal,ir,IP67,true, bosch-nbe-7702-alxt,Bosch,FLEXIDOME 7000i Bullet (NBE-7702-ALXT),bullet,1080p,2,"1/2.8"" CMOS",31-8 horizontal,ir,IP67,false, bosch-nbe-7703-al,Bosch,FLEXIDOME 7000i Outdoor (NBE-7703-AL),bullet,1080p HD,2,"1/2.8"" CMOS (starlight)",35-14 horizontal (tele),none,IP66,true,2021 -bosch-nbn-9122-p,Bosch,DINION IP 12MP (NBN-9122-P),box,12MP,12,"2/3"" Progressive Scan CMOS",,none,IP31,false, +bosch-nbn-9122-p,Bosch,DINION IP 12MP (NBN-9122-P),box,12MP UHD,12,"2/3"" Progressive Scan CMOS",,none,IP31,false, bosch-ndc-8502-r-ooh,Bosch,FLEXIDOME 8000i 4K Outdoor Dome,dome,4K UHD,8,"1/1.8"" CMOS (starlight)",100-33 horizontal,ir,IP66,true,2023 bosch-nde-5503-al,Bosch,FLEXIDOME IP outdoor 5000i (NDE-5503-AL),dome,5MP,5,"1/2.9"" Progressive Scan CMOS",98-29 horizontal,ir,IP66,false, bosch-nde-5702-al,Bosch,FLEXIDOME outdoor 5100i 2MP (NDE-5702-AL),dome,1080p,2,"1/2.8"" CMOS",105-31 horizontal,ir,IP66,true, @@ -269,7 +264,7 @@ costar-cdi-5312irv,Costar,CDI-5312IRV,dome,5MP,5,"1/2.7"" CMOS",,ir,IP66,false, costar-conteraip-bullet-8mp,Costar,ConteraIP Bullet 8MP,bullet,4K UHD,8,"1/2.8"" CMOS",,ir,IP67,true, costar-conteraip-dome-5mp,Costar,ConteraIP Dome 5MP,dome,5MP,5,"1/2.7"" CMOS",,ir,IP66,true, costar-conteraip-dome-8mp,Costar,ConteraIP Dome 8MP,dome,4K UHD,8,"1/2.8"" CMOS",,ir,IP66,true, -costar-conteraip-panoramic-12mp,Costar,ConteraIP Panoramic 12MP,panoramic,12MP,12,"1/1.7"" CMOS",,ir,IP66,true, +costar-conteraip-panoramic-12mp,Costar,ConteraIP Panoramic 12MP,panoramic,12MP UHD,12,"1/1.7"" CMOS",,ir,IP66,true, cp-plus-cp-e35q,CP Plus,CP-E35Q,ptz,3MP 2K,3,"1/2.7"" CMOS",355 pan / 90 tilt,color,IP20,true,2023 cp-plus-cp-e45q-india,CP Plus,CP-E45Q,ptz,4MP,4,,60-2.5h,ir,IP66,false,2021 cp-plus-cp-unc-ba41pl3,CP Plus,CP-UNC-BA41PL3,bullet,4MP,4,,103h,color,IP67,false,2022 @@ -284,9 +279,9 @@ cp-plus-cp-unc-ta41l3c-d-lq,CP Plus,CP-UNC-TA41L3C-D-LQ,bullet,4MP,4,"1/2.7"" CM cp-plus-cp-unc-ta81pl3,CP Plus,CP-UNC-TA81PL3,turret,4K UHD,8,,107h,color,IP67,false,2022 cp-plus-cp-unc-wi41pl3,CP Plus,CP-UNC-WI41PL3,bullet,4MP,4,,107h,color,IP66,false,2023 cp-plus-cp-z43q,CP Plus,CP-Z43Q,ptz,4MP QHD,4,"1/2.7"" CMOS",360 pan / 90 tilt,color,IP66,true,2024 -cp-plus-cp-z43q-2,CP Plus,CP-Z43Q,ptz,4MP,4,,60-2.5h,ir,IP66,false,2022 dahua-dh-sd49425xb-hnr,Dahua,SD49425XB-HNR,ptz,4MP,4,"1/2.8"" STARVIS CMOS",60-2.5 horizontal,ir,IP66,false,2023 dahua-dh-sd6al245xa-hnr,Dahua,DH-SD6AL245XA-HNR,ptz,4MP,4,"1/2.8"" Starlight CMOS",,ir,IP67,true,2023 +dahua-dh-sdt7425-4p-ad3e-pv-i,Dahua,DH-SDT7425-4P-AD3E-PV-i,ptz,Dual: 4MP panoramic (3840x1080) + 4MP PTZ (2560x1440),4,"2x 1/2.8"" CMOS (panoramic + PTZ)",180 horizontal (panoramic) / 55.8-2.4 (PTZ),hybrid,IP66,true,2022 dahua-hac-hdw1509tq-a-led,Dahua,HAC-HDW1509TQ-A-LED,dome,5MP HD,5,,107h,color,IP67,false,2022 dahua-hac-hfw1509th-a-led,Dahua,HAC-HFW1509TH-A-LED,bullet,5MP HD,5,,107h,color,IP67,false,2022 dahua-hac-hfw2802e-led,Dahua,HAC-HFW2802E-LED,bullet,4K UHD,8,,107h,color,IP67,false,2023 @@ -327,7 +322,6 @@ dahua-ipc-hdw3849h-as-pv-mena,Dahua,IPC-HDW3849H-AS-PV (MENA),turret,4K UHD,8,"1 dahua-ipc-hdw3849h-as-pv-pro,Dahua,IPC-HDW3849H-AS-PV-PRO,turret,4K UHD,8,"1/1.8"" CMOS",,hybrid,IP67,true, dahua-ipc-hdw3849h-as-pv-uk,Dahua,IPC-HDW3849H-AS-PV (UK market),turret,4K UHD,8,"1/2.8"" CMOS",113 horizontal,hybrid,IP67,true,2023 dahua-ipc-hdw3849h-zas-pv,Dahua,IPC-HDW3849H-ZAS-PV,turret,4K UHD,8,"1/2.8"" CMOS",,hybrid,IP67,true, -dahua-ipc-hdw3849h-zas-pv-varifocal,Dahua,IPC-HDW3849H-ZAS-PV,turret,4K UHD,8,,110-30h,hybrid,IP67,true,2023 dahua-ipc-hdw5442t-ze,Dahua,IPC-HDW5442T-ZE,turret,4MP,4,,110-30h,ir,IP67,false,2023 dahua-ipc-hdw5442tm-ase,Dahua,IPC-HDW5442TM-ASE,turret,4MP,4,"1/1.8"" Progressive Scan CMOS",,ir,IP67,false, dahua-ipc-hdw5449h-ase-d2,Dahua,IPC-HDW5449H-ASE-D2,dome,4MP,4,"1/1.8"" CMOS",,hybrid,IP67,true,2024 @@ -335,7 +329,7 @@ dahua-ipc-hdw5842t-ze,Dahua,IPC-HDW5842T-ZE,turret,4K UHD,8,"1/2.8"" CMOS",,ir,I dahua-ipc-hdw5842t-ze-led,Dahua,IPC-HDW5842T-ZE-LED,turret,4K UHD,8,"1/1.8"" CMOS",,color,IP67,false, dahua-ipc-hdw5849t1-ze-led,Dahua,IPC-HDW5849T1-ZE-LED,turret,4K UHD,8,"1/1.2"" CMOS",110-30 horizontal,color,IP67,false,2024 dahua-ipc-hdw7842h-z4-x,Dahua,IPC-HDW7842H-Z4-X,turret,4K UHD,8,,83-15h,ir,IP67,false,2022 -dahua-ipc-hf71242f-z-x,Dahua,IPC-HF71242F-Z-X,box,12MP,12,"1/1.7"" Progressive Scan CMOS",,none,IP42,false,2024 +dahua-ipc-hf71242f-z-x,Dahua,IPC-HF71242F-Z-X,box,12MP UHD,12,"1/1.7"" Progressive Scan CMOS",,none,IP42,false,2024 dahua-ipc-hfw1239s1-led-s6,Dahua,IPC-HFW1239S1-LED-S6,bullet,1080p HD,2,,107h,color,IP67,false,2024 dahua-ipc-hfw1439s-led-s4,Dahua,IPC-HFW1439S-LED-S4,bullet,4MP,4,,107h,color,IP67,false,2022 dahua-ipc-hfw1439s1-led,Dahua,IPC-HFW1439S1-LED,bullet,4MP,4,,107h,color,IP67,false,2021 @@ -366,12 +360,10 @@ dahua-ipc-hfw3841e-zas,Dahua,IPC-HFW3841E-ZAS,bullet,4K UHD,8,,106-30h,ir,IP67,f dahua-ipc-hfw3849e-as-il,Dahua,IPC-HFW3849E-AS-IL,bullet,4K UHD,8,"1/2.7"" CMOS",,hybrid,IP67,false, dahua-ipc-hfw3849e-as-led-4k,Dahua,IPC-HFW3849E-AS-LED,bullet,4K UHD,8,"1/2.7"" CMOS",,color,IP67,false, dahua-ipc-hfw3849e-as-led-s2,Dahua,IPC-HFW3849E-AS-LED-S2,bullet,4K UHD,8,"1/2.7"" CMOS",,color,IP67,false,2024 -dahua-ipc-hfw3849e-as-led-s2-new,Dahua,IPC-HFW3849E-ZAS-LED-S2,bullet,4K UHD,8,"1/2.7"" CMOS",110-30 horizontal,color,IP67,false,2024 dahua-ipc-hfw3849e-s-il,Dahua,IPC-HFW3849E-S-IL,bullet,4K UHD,8,"1/2.7"" CMOS",,hybrid,IP67,false, +dahua-ipc-hfw3849e-zas-led-s2,Dahua,IPC-HFW3849E-ZAS-LED-S2,bullet,4K UHD,8,"1/2.7"" CMOS",110-30 horizontal,color,IP67,false,2024 dahua-ipc-hfw3849t-as-pv-pro-legacy,Dahua,IPC-HFW3849T1-AS-PV-PRO,bullet,4K UHD,8,"1/1.8"" CMOS",,hybrid,IP67,true, dahua-ipc-hfw3849t1-as-pv,Dahua,IPC-HFW3849T1-AS-PV,bullet,4K UHD,8,"1/2.8"" CMOS",,hybrid,IP67,true, -dahua-ipc-hfw3849t1-as-pv-pro,Dahua,IPC-HFW3849T1-AS-PV-PRO,bullet,4K UHD,8,,107h,hybrid,IP67,true,2024 -dahua-ipc-hfw3849t1-as-pv-s3,Dahua,IPC-HFW3849T1-AS-PV,bullet,4K UHD,8,,110h,hybrid,IP67,true,2023 dahua-ipc-hfw3849t1-zas-pv,Dahua,IPC-HFW3849T1-ZAS-PV,bullet,4K UHD,8,"1/2.8"" CMOS",,hybrid,IP67,true, dahua-ipc-hfw5442e-ze,Dahua,IPC-HFW5442E-ZE,bullet,4MP,4,"1/1.8"" Progressive Scan CMOS",,ir,IP67,false, dahua-ipc-hfw5442e-ze-s3,Dahua,IPC-HFW5442E-ZE-S3,bullet,4MP,4,,110-30h,ir,IP67,false,2023 @@ -391,11 +383,9 @@ dahua-ipc-pt8849-a180,Dahua,IPC-PT8849-A180,panoramic,4K 180° multisensor,8,,18 dahua-itc237-pw1b-irz-lr,Dahua,ITC237-PW1B-IRZ-LR,bullet,2MP LPR,2,"1/2.8"" CMOS",,ir,IP67,false,2023 dahua-sd49225xa-hnr-mena,Dahua,SD49225XA-HNR (MENA),ptz,1080p HD,2,"1/2.8"" STARVIS CMOS",60-2.5 horizontal,ir,IP66,false,2022 dahua-sd49225xb-hnr,Dahua,SD49225XB-HNR,ptz,1080p,2,"1/2.8"" CMOS",60-2.5 horizontal,ir,IP66,false, -dahua-sd49425xb-hnr,Dahua,SD49425XB-HNR 4MP 25x PTZ,ptz,4MP,4,"1/2.8"" CMOS",60.3-2.6 horizontal,ir,IP66,false, dahua-sd49825gb-hnr,Dahua,SD49825GB-HNR,ptz,4K UHD,8,"1/2.8"" CMOS",60-2.5h,ir,IP66,false,2023 dahua-sd5a432gb-hnr,Dahua,SD5A432GB-HNR,ptz,4MP,4,"1/2.8"" CMOS",,ir,IP66,false, dahua-sd6c3432xb-hnr-a-pv1,Dahua,SD6C3432XB-HNR-A-PV1,ptz,4MP,4,"1/2.8"" CMOS",,hybrid,IP66,true, -dahua-sd6c3432xb-hnr-active,Dahua,SD6C3432XB-HNR-A-PV1-new,ptz,4MP,4,"1/2.8"" CMOS",60-2h,color,IP66,false,2024 eufy-e340-eufycam-dual,Eufy,EufyCam E340 (Dual-lens),dual-lens,4K+2K dual-lens,8,,360 combined pan/tilt,color,IP67,true,2025 eufy-eufycam-2-pro,Eufy,EufyCam 2 Pro,bullet,2K QHD,4,,140 diagonal,ir,IP67,true,2020 eufy-eufycam-2c,Eufy,EufyCam 2C,bullet,1080p HD,2,,135 diagonal,ir,IP67,true,2020 @@ -473,7 +463,7 @@ geovision-gv-adr2702,GeoVision,GV-ADR2702,dome,1080p,2,"1/2.8"" Progressive Scan geovision-gv-adr4702,GeoVision,GV-ADR4702,dome,4MP,4,"1/2.7"" Progressive Scan CMOS",102 horizontal,ir,IP67,false,2022 geovision-gv-adr8802,GeoVision,GV-ADR8802,dome,4K UHD,8,"1/1.8"" Progressive Scan CMOS",112 horizontal,ir,IP67,false,2023 geovision-gv-bl2702,GeoVision,GV-BL2702,bullet,1080p,2,"1/2.8"" Progressive Scan CMOS",84 horizontal,ir,IP66,false,2020 -geovision-gv-efer3700,GeoVision,GV-EFER3700,fisheye,3MP Fisheye,3,"1/2.8"" Progressive Scan CMOS",360 horizontal,ir,IP66,false,2021 +geovision-gv-efer3700,GeoVision,GV-EFER3700,fisheye,4MP Fisheye,4,"1/2.8"" Progressive Scan CMOS",360 horizontal,ir,IP66,false,2021 geovision-gv-sd2322-ir,GeoVision,GV-SD2322-IR,ptz,1080p,2,"1/2.8"" Progressive Scan CMOS",57.6-2.8 horizontal,ir,IP66,false,2021 geovision-gv-sd4825-ir,GeoVision,GV-SD4825-IR,ptz,4MP,4,"1/2.5"" Progressive Scan CMOS",58-2.6 horizontal,ir,IP66,false,2022 geovision-gv-sd8834-ir,GeoVision,GV-SD8834-IR,ptz,4K UHD,8,"1/1.8"" Progressive Scan CMOS",54-2.1 horizontal,ir,IP66,false,2023 @@ -487,9 +477,7 @@ godrej-eve-pro-outdoor,Godrej,Eve Pro Outdoor,bullet,3MP 2K,3,CMOS,107 horizonta google-nest-cam-battery-1st-gen,Google,"Nest Cam (Battery, 1st Gen)",dome,1080p,2,"1/2.8"" CMOS",130 diagonal,ir,IP54,true,2021 google-nest-cam-battery-2,Google,Nest Cam (Battery) 2nd Gen,bullet,1080p HD,2,,130h,ir,IP54,true,2024 google-nest-cam-battery-2021,Google,"Nest Cam (Battery, 2nd Gen)",dome,1080p,2,"1/2.8"" CMOS",130 diagonal,ir,IP54,true,2021 -google-nest-cam-battery-2nd,Google,Nest Cam (Battery) 2nd Gen,bullet,1080p HD,2,,130h,ir,IP54,true,2024 google-nest-cam-floodlight-wire,Google,Nest Cam with Floodlight (Wired 2nd Gen),bullet,1080p HD,2,,130h,color,IP54,true,2024 -google-nest-cam-floodlight-wired,Google,Nest Cam with Floodlight (Wired 2nd Gen),bullet,1080p HD,2,,130h,color,IP54,true,2024 google-nest-cam-indoor-1st-gen,Google,Nest Cam Indoor (1st Gen),dome,1080p,3,"1/3"" CMOS",130 diagonal,ir,,true,2015 google-nest-cam-indoor-3rd-gen,Google,"Nest Cam Indoor (Wired, 3rd Gen)",dome,2K QHD,4,"CMOS (upgraded, wider aperture)",152 diagonal,ir,IP20,true,2025 google-nest-cam-iq-indoor,Google,Nest Cam IQ Indoor,dome,4K sensor (1080p streaming),8,"1/2.5"" 4K CMOS",130 diagonal,ir,,true,2017 @@ -498,13 +486,11 @@ google-nest-cam-outdoor-1st-gen,Google,Nest Cam Outdoor (1st Gen),bullet,1080p,3 google-nest-cam-outdoor-2nd-gen,Google,"Nest Cam Outdoor (Wired, 2nd Gen)",bullet,2K QHD,4,CMOS (new wider aperture sensor),152 diagonal,color,IP54,true,2025 google-nest-cam-outdoor-2nd-gen-eu,Google,"Nest Cam Outdoor (Wired, 2nd Gen) EU",bullet,2K QHD,4,CMOS,152 diagonal,color,IP54,true,2025 google-nest-cam-outdoor-wire,Google,Nest Cam Outdoor (Wired),bullet,1080p HD,2,,130h,ir,IP54,true,2021 -google-nest-cam-outdoor-wired,Google,Nest Cam Outdoor (Wired),bullet,1080p HD,2,,130h,ir,IP54,true,2021 google-nest-cam-ptz-indoor,Google,"Nest Cam (Wired, Indoor Pan/Tilt)",ptz,1080p HD,2,,130h,ir,IP20,true,2022 google-nest-cam-wired-2021,Google,"Nest Cam (Wired, 2nd Gen)",dome,1080p,2,"1/2.8"" CMOS",130 diagonal,ir,IP54,true,2021 google-nest-cam-with-floodlight,Google,Nest Cam with Floodlight,bullet,1080p HD,2,CMOS,145 diagonal,color,IP54,true,2022 google-nest-doorbell-3rd-gen,Google,"Nest Doorbell (Wired, 3rd Gen)",doorbell,2K HDR (2048x2048),4,CMOS,166 diagonal (wider + taller vs Gen 2),color,IP44,true,2025 google-nest-doorbell-battery,Google,Nest Doorbell (Battery),doorbell,960×1280 HD,2,,135h,ir,IP54,true,2021 -google-nest-doorbell-wired-2021,Google,"Nest Doorbell (Wired, 2nd Gen)",doorbell,1080p,2,"1/2.8"" CMOS",145 diagonal,ir,IP54,true,2021 google-nest-doorbell-wired-2nd-gen,Google,"Nest Doorbell (Wired, 2nd Gen)",doorbell,960x1280 HD,2,CMOS,145 diagonal,ir,IP44,true,2022 google-nest-doorbell-wired-2nd-gen-uk,Google,"Nest Doorbell (Wired, 2nd Gen) UK",doorbell,960x1280 HD,2,,145 diagonal,ir,IP44,true,2022 hanwha-and-l7082r,Hanwha,AND-L7082R,dome,4MP,4,"1/3"" Progressive Scan CMOS",98 horizontal,ir,IP66,false,2023 @@ -526,7 +512,7 @@ hanwha-pnv-a9300rvw,Hanwha,PNV-A9300RVW,dome,4MP,4,,107h,color,IP66,false,2024 hanwha-qnd-6082r,Hanwha,QND-6082R,dome,1080p,2,"1/2.8"" Progressive Scan CMOS",105-32 horizontal,ir,IP66,false, hanwha-qnd-6082r1,Hanwha,QND-6082R1,dome,1080p,2,"1/2.8"" Progressive Scan CMOS",105-32 horizontal,ir,IP66,false, hanwha-qnd-8020r,Hanwha,QND-8020R,dome,5MP,5,,110h,ir,IP42,false,2021 -hanwha-qnd-8080r-kr,Hanwha,QND-8080R (Korea),dome,5MP,5,"1/2.8"" CMOS",110 horizontal,ir,IK10,false,2020 +hanwha-qnd-8080r-kr,Hanwha,QND-8080R (Korea),dome,5MP,5,"1/2.8"" CMOS",110 horizontal,ir,,false,2020 hanwha-qnd-9080r,Hanwha,QND-9080R,dome,4MP,4,,108-37h,ir,IP66,false,2022 hanwha-qnd-c9083r,Hanwha,QND-C9083R,dome,4MP,4,,109-42h,color,IP66,false,2023 hanwha-qne-8021r,Hanwha,QNE-8021R,turret,5MP,5,"1/2.8"" Progressive Scan CMOS",104 horizontal,ir,IP67,false,2022 @@ -544,7 +530,7 @@ hanwha-qnv-8080r,Hanwha,QNV-8080R,dome,5MP,5,"1/2.8"" Progressive Scan CMOS",100 hanwha-qnv-8080r-mena,Hanwha,QNV-8080R (MENA),dome,5MP,5,"1/2.8"" Progressive Scan CMOS",100-31 horizontal,ir,IP66,false,2019 hanwha-qnv-8080rb,Hanwha,QNV-8080R (Bullet),bullet,5MP,5,,102-42h,ir,IP66,false,2020 hanwha-qnv-9080r,Hanwha,QNV-9080R,dome,4K UHD,8,"1/2.8"" Progressive Scan CMOS",103-30 horizontal,ir,IP66,false, -hanwha-qnv-a9402r,Hanwha,QNV-A9402R,dome,5MP,5,"1/2.8"" CMOS",110 horizontal,ir,IK10,false,2025 +hanwha-qnv-a9402r,Hanwha,QNV-A9402R,dome,5MP,5,"1/2.8"" CMOS",110 horizontal,ir,,false,2025 hanwha-qnv-a9402r-wi,Hanwha,QNV-A9402R-WI,dome,5MP,5,,110h,ir,IP42,false,2025 hanwha-qnv-c9083r,Hanwha,QNV-C9083R,dome,4MP,4,,109-42h,color,IP66,false,2023 hanwha-qpt-7230,Hanwha,QPT-7230,ptz,1080p,2,"1/2.8"" Progressive Scan CMOS",,ir,IP66,false, @@ -598,7 +584,7 @@ hikvision-ds-2cd1153g2-liuf,Hikvision,DS-2CD1153G2-LIUF,turret,5MP,5,,107h,ir,IP hikvision-ds-2cd1183g2-liuf,Hikvision,DS-2CD1183G2-LIUF,turret,4K UHD,8,,107h,ir,IP67,false,2023 hikvision-ds-2cd2023g0-i,Hikvision,DS-2CD2023G0-I,bullet,1080p HD,2,,103h,ir,IP67,false,2019 hikvision-ds-2cd2023g2-iu,Hikvision,DS-2CD2023G2-I(U),bullet,1080p HD,2,,103h,ir,IP67,false,2021 -hikvision-ds-2cd2025fwd-i,Hikvision,DS-2CD2025FWD-I,bullet,1080p HD,2,,103h,none,IP67,false,2019 +hikvision-ds-2cd2025fwd-i,Hikvision,DS-2CD2025FWD-I,bullet,1080p HD,2,,103h,ir,IP67,false,2019 hikvision-ds-2cd2027g2-lu,Hikvision,DS-2CD2027G2-LU,bullet,1080p,2,"1/2.8"" Progressive Scan CMOS",103 horizontal (2.8mm),color,IP67,false, hikvision-ds-2cd2027g2h-liu,Hikvision,DS-2CD2027G2H-LI(U),bullet,1080p,2,"1/2.8"" CMOS",103 horizontal (2.8mm),hybrid,IP67,false,2024 hikvision-ds-2cd2043g2-i,Hikvision,DS-2CD2043G2-I,bullet,4MP,4,"1/3"" Progressive Scan CMOS",103 horizontal (2.8mm) / 84 horizontal (4mm),ir,IP67,false, @@ -646,7 +632,7 @@ hikvision-ds-2cd2347g2h-liu,Hikvision,DS-2CD2347G2H-LI(U),turret,4MP,4,"1/1.8"" hikvision-ds-2cd2367g2-l,Hikvision,DS-2CD2367G2-L,dome,6MP,6,"1/1.7"" CMOS",103 horizontal (2.8mm),color,IP67,false, hikvision-ds-2cd2383g2-i,Hikvision,DS-2CD2383G2-I,turret,4K UHD,8,"1/2.8"" Progressive Scan CMOS",102 horizontal,ir,IP67,false, hikvision-ds-2cd2383g2-li,Hikvision,DS-2CD2383G2-LI,turret,4K UHD,8,"1/2.7"" CMOS",102 horizontal (2.8mm),hybrid,IP67,false, -hikvision-ds-2cd2385g1-i,Hikvision,DS-2CD2385G1-I,covert,4K UHD,8,"1/2.7"" CMOS",107 horizontal,ir,IP66,false,2020 +hikvision-ds-2cd2385g1-i,Hikvision,DS-2CD2385G1-I,turret,4K UHD,8,"1/2.7"" CMOS",107 horizontal,ir,IP66,false,2020 hikvision-ds-2cd2386g2-i,Hikvision,DS-2CD2386G2-I,dome,4K UHD,8,"1/2.8"" Progressive Scan CMOS",102 horizontal (2.8mm),ir,IP67,false, hikvision-ds-2cd2386g2-isu-sl2,Hikvision,DS-2CD2386G2-ISU/SL,dome,4K UHD,8,"1/2.8"" Progressive Scan CMOS",102 horizontal (2.8mm),ir,IP67,true, hikvision-ds-2cd2386g2-iu,Hikvision,DS-2CD2386G2-IU,dome,4K UHD,8,"1/2.8"" Progressive Scan CMOS",102 horizontal (2.8mm),ir,IP67,false, @@ -655,7 +641,7 @@ hikvision-ds-2cd2387g2-lu-au,Hikvision,DS-2CD2387G2-L(U) (Australia),turret,4K U hikvision-ds-2cd2387g2-lu-mena,Hikvision,DS-2CD2387G2-L(U)K (MENA),turret,4K UHD,8,"1/1.2"" Progressive Scan CMOS",102 horizontal (2.8mm),color,IP67,false,2022 hikvision-ds-2cd2387g2h-liu,Hikvision,DS-2CD2387G2H-LI(U),turret,4K UHD,8,"1/1.2"" CMOS",102 horizontal (2.8mm),hybrid,IP67,true,2024 hikvision-ds-2cd2427g2h-liu,Hikvision,DS-2CD2427G2H-LI(U),dome,4MP,4,"1/1.8"" CMOS",111 horizontal (2.8mm),hybrid,IP67,false,2024 -hikvision-ds-2cd2443g2-iw,Hikvision,DS-2CD2443G2-I(W),covert,4MP,4,,110h,ir,IP67,false,2022 +hikvision-ds-2cd2443g2-iw,Hikvision,DS-2CD2443G2-I(W),box,4MP,4,,110h,ir,IP67,false,2022 hikvision-ds-2cd2447g2-lu,Hikvision,DS-2CD2447G2-LU,turret,4MP,4,"1/1.8"" Progressive Scan CMOS",103 horizontal (2.8mm),color,IP67,false, hikvision-ds-2cd2526g2-is,Hikvision,DS-2CD2526G2-IS,bullet,1080p,2,"1/2.8"" Progressive Scan CMOS",103 horizontal (2.8mm),ir,IP67,true, hikvision-ds-2cd2542fwd-is,Hikvision,DS-2CD2542FWD-IS,dome,4MP,4,,103h,ir,IP67,false,2020 @@ -714,7 +700,7 @@ hikvision-ds-2cd3523g2-is,Hikvision,DS-2CD3523G2-IS,dome,1080p HD,2,,88-34h,ir,I hikvision-ds-2cd3t47g2-lzs,Hikvision,DS-2CD3T47G2-LZS,bullet,4MP,4,,103-32h,color,IP67,false,2023 hikvision-ds-2cd3t87g2-lzs,Hikvision,DS-2CD3T87G2-LZS,bullet,4K UHD,8,,103-32h,color,IP67,false,2023 hikvision-ds-2cd6365g0e-ivs,Hikvision,DS-2CD6365G0E-IVS,panoramic,6MP 360°,6,,360 fisheye,ir,IP66,false,2020 -hikvision-ds-2cd63c5g1-ivs,Hikvision,DS-2CD63C5G1-IVS,fisheye,12MP,12,"1/1.7"" Progressive Scan CMOS",360,ir,IP66,true, +hikvision-ds-2cd63c5g1-ivs,Hikvision,DS-2CD63C5G1-IVS,fisheye,12MP UHD,12,"1/1.7"" Progressive Scan CMOS",360,ir,IP66,true, hikvision-ds-2cd6944g0-ihs,Hikvision,DS-2CD6944G0-IHS,panoramic,4MP × 4 multisensor panoramic,8,,180h,none,IP66,false,2021 hikvision-ds-2cd7a87g0-xzs,Hikvision,DS-2CD7A87G0-XZS,bullet,4K UHD,8,,106-32h,color,IP67,false,2022 hikvision-ds-2ce16d8t-it3f,Hikvision,DS-2CE16D8T-IT3F,bullet,1080p HD,2,,103h,ir,IP67,false,2020 @@ -738,7 +724,6 @@ hikvision-ds-2pt3q27iwx-de,Hikvision,DS-2PT3Q27IWX-DE,dual-lens,4MP panoramic + hikvision-ds-2se4c425mwg-e,Hikvision,DS-2SE4C425MWG-E,ptz,4MP+4MP TandemVu,8,Dual CMOS,60-2.5h,color,IP66,false,2023 hikvision-ds-2se4c430mwg-e,Hikvision,DS-2SE4C430MWG-E,ptz,4MP+4MP TandemVu 30x,8,Dual CMOS,60-2h,ir,IP66,false,2023 hikvision-ds-2xs6a26g0-i,Hikvision,DS-2XS6A26G0-I/CH20S40,bullet,1080p HD,2,,103h,ir,IP67,false,2022 -hikvision-ds-2xs6a26g0-solar,Hikvision,DS-2XS6A26G0-I/CH20S40,bullet,1080p HD,2,,103h,ir,IP67,false,2022 hilook-ipc-b140h,HiLook,IPC-B140H,bullet,4MP,4,"1/2.8"" CMOS",103 horizontal,ir,IP67,false,2021 hilook-ipc-b180ha-lu,HiLook,IPC-B180HA-LU,bullet,4K UHD,8,"1/2.7"" CMOS",107 horizontal,hybrid,IP67,false,2023 hilook-ipc-b240h,HiLook,IPC-B240H,bullet,4MP,4,"1/2.8"" CMOS",103 horizontal,ir,IP67,false,2023 @@ -768,11 +753,11 @@ honeywell-hcc-ip-3mp-dome,Honeywell,CALIPD-1AI 3MP IP Dome,dome,4MP,4,"1/2.7"" C honeywell-hcc-ip-4mp-bullet,Honeywell,CALIPB-1AI 4MP IP Bullet,bullet,4MP,4,"1/2.7"" CMOS",100 horizontal,ir,IP67,false,2025 honeywell-hcc-ip-ptz-25x,Honeywell,HNMPTZ25X 4MP 25x PoE PTZ,ptz,4MP,4,"1/2.8"" CMOS",60-2.5 horizontal,ir,IP66,false,2023 honeywell-pro-320pt,Honeywell,Home Pro 3200PT,ptz,1080p HD,2,CMOS,355 pan / 90 tilt,ir,IP20,true,2022 -i-pro-wv-s2236l,i-PRO,WV-S2236L,dome,1080p HD,2,"1/3"" CMOS",100-31 horizontal,color,IK10,false,2021 +i-pro-wv-s2236l,i-PRO,WV-S2236L,dome,1080p HD,2,"1/3"" CMOS",100-31 horizontal,color,,false,2021 i-pro-wv-s8530n,i-PRO,WV-S8530N,dome,4K UHD,8,"1/1.7"" CMOS",92-31 horizontal,color,IP66,false,2022 i-pro-wv-x2251l,i-PRO,WV-X2251L,bullet,4K UHD,8,"1/2.3"" CMOS",99-42 horizontal,ir,IP66,false,2023 -idis-dc-b8251wx,IDIS,DC-B8251WX,dome,4K UHD,8,"1/1.8"" CMOS",108-37 horizontal,ir,IK10,false,2024 -idis-dc-d4516wrx,IDIS,DC-D4516WRX,dome,5MP,5,"1/2.8"" CMOS",101 horizontal,ir,IK10,false,2022 +idis-dc-b8251wx,IDIS,DC-B8251WX,dome,4K UHD,8,"1/1.8"" CMOS",108-37 horizontal,ir,,false,2024 +idis-dc-d4516wrx,IDIS,DC-D4516WRX,dome,5MP,5,"1/2.8"" CMOS",101 horizontal,ir,,false,2022 idis-dc-t4516hrx,IDIS,DC-T4516HRX,bullet,5MP,5,"1/2.8"" CMOS",100-42 horizontal,ir,IP66,false,2022 imou-bullet-2-4mp,IMOU,Bullet 2 4MP,bullet,4MP,4,,107h,ir,IP67,false,2023 imou-bullet-2e-5mp,IMOU,Bullet 2E 5MP,bullet,5MP 3K,5,"1/2.7"" CMOS",102 horizontal,color,IP67,false,2023 @@ -895,7 +880,7 @@ mobotix-d71,Mobotix,D71,dome,4K UHD or 4MP ULL,8,"1/2"" 4K UHD or 4MP ULL CMOS ( mobotix-m73,Mobotix,M73,dome,Up to 12MP (sensor-dependent),12,Interchangeable: 4K UHD / 12MP / 4MP ULL / hemispheric sensor modules,,hybrid,IP66,true, mobotix-m73-6mp,Mobotix,M73 6MP,dome,6MP,6,"1/1.8"" CMOS",,color,IP66,true,2023 mobotix-p71,Mobotix,P71,ptz,4K UHD,8,"1/2.5"" CMOS",60-2.3 horizontal,ir,IP66,false, -mobotix-q71,Mobotix,Q71,fisheye,12MP,12,"1/1.7"" 12MP CMOS",360 (ceiling) / 180 (wall),hybrid,IP66,true, +mobotix-q71,Mobotix,Q71,fisheye,12MP UHD,12,"1/1.7"" 12MP CMOS",360 (ceiling) / 180 (wall),hybrid,IP66,true, mobotix-s74,Mobotix,S74,dome,Up to 12MP (sensor-dependent),12,Interchangeable: 4K / 12MP / hemispheric modules,,hybrid,IP42,true, mobotix-s74-dual,Mobotix,S74 Dual Sensor,dual-lens,2x6MP dual sensor,12,"2x 1/1.8"" CMOS",,color,IP66,true,2022 mobotix-v71,Mobotix,V71,box,4K UHD,4,,100h,none,IP30,false,2022 @@ -943,7 +928,7 @@ reolink-argus-pt,Reolink,Argus PT,ptz,2K QHD,4,,355 pan/140 tilt,ir,IP65,true,20 reolink-argus-pt-2k,Reolink,Argus PT 2K,ptz,2K QHD,4,,355 pan/90 tilt,color,IP65,true,2023 reolink-argus-pt-ultra,Reolink,Argus PT Ultra,ptz,4K UHD,8,"1/2.7"" CMOS",360 pan / 90 tilt,color,IP66,true,2024 reolink-argus-track,Reolink,Argus Track,ptz,4K UHD,8,"1/2.7"" CMOS",87 horizontal,hybrid,IP65,true,2024 -reolink-b1200,Reolink,B1200,bullet,12MP,12,,80 horizontal,ir,IP67,false,2022 +reolink-b1200,Reolink,B1200,bullet,12MP UHD,12,,80 horizontal,ir,IP67,false,2022 reolink-b400,Reolink,B400,bullet,4MP,4,,80 horizontal,ir,IP67,false,2020 reolink-b500,Reolink,B500,bullet,5MP,5,,80 horizontal,ir,IP67,false,2021 reolink-b800,Reolink,B800,bullet,4K UHD,8,,80 horizontal,ir,IP67,false,2021 @@ -951,7 +936,7 @@ reolink-cx410,Reolink,CX410,bullet,2K QHD,4,"1/1.8"" CMOS",89 horizontal,color,I reolink-cx810,Reolink,CX810,bullet,4K UHD,8,"1/1.8"" CMOS",93 horizontal,color,IP67,true,2024 reolink-cx810-wifi,Reolink,CX810W,bullet,4K UHD,8,"1/1.8"" CMOS",93 horizontal,color,IP67,true,2024 reolink-cx820,Reolink,CX820,dome,4K UHD,8,"1/1.8"" CMOS",87 horizontal,color,IP67,true,2024 -reolink-d1200,Reolink,D1200,dome,12MP,12,,80 horizontal,ir,IP67,false,2022 +reolink-d1200,Reolink,D1200,dome,12MP UHD,12,,80 horizontal,ir,IP67,false,2022 reolink-d400,Reolink,D400,dome,4MP,4,,80 horizontal,ir,IP67,false,2020 reolink-d500,Reolink,D500,dome,5MP,5,,80 horizontal,ir,IP67,false,2021 reolink-d800,Reolink,D800,dome,4K UHD,8,,80 horizontal,ir,IP67,false,2021 @@ -966,7 +951,6 @@ reolink-duo-3v-poe,Reolink,Duo 3V PoE,dual-lens,16MP,16,"Dual 1/2.7"" CMOS (4K e reolink-duo-4g,Reolink,Duo 4G,bullet,2×4MP 180° dual-lens,8,,180 horizontal,ir,IP65,true,2022 reolink-duo-floodlight-poe,Reolink,Duo Floodlight PoE,dual-lens,4K UHD,8,"Dual 1/2.7"" CMOS",180 horizontal,hybrid,IP66,true,2023 reolink-e1-indoor,Reolink,E1,ptz,1080p HD,2,,355 pan/50 tilt,ir,IP20,true,2019 -reolink-e1-outdoor,Reolink,E1 Outdoor,ptz,5MP Super HD,5,"1/2.7"" CMOS",90-50 horizontal,color,IP65,true,2021 reolink-e1-outdoor-cx,Reolink,E1 Outdoor CX,bullet,4K UHD,8,,110 horizontal,color,IP67,false,2024 reolink-e1-outdoor-poe,Reolink,E1 Outdoor PoE,ptz,4K UHD,8,"1/2.7"" CMOS",85 horizontal,ir,IP65,true,2022 reolink-e1-outdoor-pro,Reolink,E1 Outdoor Pro,ptz,4K UHD,8,"1/2.8"" CMOS",94-50 horizontal,color,IP65,true,2023 @@ -982,7 +966,7 @@ reolink-go-4g,Reolink,Go,bullet,1080p HD,2,,110 horizontal,ir,IP65,false,2019 reolink-go-pt,Reolink,Go PT,ptz,2K QHD,4,,355 pan/90 tilt,ir,IP64,true,2021 reolink-go-pt-plus,Reolink,Go PT Plus,ptz,2K QHD,4,,355 pan/90 tilt,color,IP65,true,2022 reolink-go-pt-ultra,Reolink,Go PT Ultra,ptz,4K UHD,8,,355 pan/90 tilt,color,IP65,true,2023 -reolink-home-hub,Reolink,Home Hub,covert,N/A (hub device),0,,N/A,none,IP20,false,2024 +reolink-home-hub,Reolink,Home Hub,box,N/A (hub device),0,,N/A,none,IP20,false,2024 reolink-keen-ranger-pt,Reolink,Keen Ranger PT,ptz,2K QHD,4,,355 pan/90 tilt,ir,IP65,false,2023 reolink-lumus,Reolink,Lumus,bullet,2K QHD,4,,105 horizontal,color,IP67,true,2021 reolink-omvi-3i-poe,Reolink,OMVI 3i PoE,panoramic,18MP (10MP panoramic + 8MP PT),18,Triple CMOS (2x5MP panoramic + 4K PT),360 panoramic + PT tracking,hybrid,IP67,true,2025 @@ -992,11 +976,11 @@ reolink-p340,Reolink,P340,panoramic,6MP 360°,6,,360 fisheye,ir,IP67,false,2023 reolink-p430,Reolink,P430,bullet,4K UHD,8,"1/2.8"" CMOS",105-31 horizontal,color,IP67,true,2023 reolink-p830,Reolink,P830,ptz,4K UHD,8,"1/2.7"" CMOS",88 horizontal,color,IP65,true,2023 reolink-reolink-go-plus,Reolink,Go Plus,bullet,4MP QHD,4,CMOS,119 horizontal,color,IP65,true,2022 -reolink-rlc-1210a,Reolink,RLC-1210A,bullet,12MP,12,,80 horizontal,ir,IP67,false,2022 -reolink-rlc-1212a-dome,Reolink,RLC-1212A (dome),dome,12MP,12,"1/2.3"" CMOS",93 horizontal,color,IP67,true,2023 -reolink-rlc-1220a,Reolink,RLC-1220A,dome,12MP,12,,80 horizontal,ir,IP67,false,2022 -reolink-rlc-1224a,Reolink,RLC-1224A,dome,12MP,12,"1/2.3"" CMOS",97 horizontal,color,IP67,true,2024 -reolink-rlc-1240a,Reolink,RLC-1240A,turret,12MP,12,"1/2.3"" CMOS",145 horizontal,color,IP66,true,2024 +reolink-rlc-1210a,Reolink,RLC-1210A,bullet,12MP UHD,12,,80 horizontal,ir,IP67,false,2022 +reolink-rlc-1212a-dome,Reolink,RLC-1212A (dome),dome,12MP UHD,12,"1/2.3"" CMOS",93 horizontal,color,IP67,true,2023 +reolink-rlc-1220a,Reolink,RLC-1220A,dome,12MP UHD,12,,80 horizontal,ir,IP67,false,2022 +reolink-rlc-1224a,Reolink,RLC-1224A,dome,12MP UHD,12,"1/2.3"" CMOS",97 horizontal,color,IP67,true,2024 +reolink-rlc-1240a,Reolink,RLC-1240A,turret,12MP UHD,12,"1/2.3"" CMOS",145 horizontal,color,IP66,true,2024 reolink-rlc-410,Reolink,RLC-410,bullet,5MP,5,,80 horizontal,ir,IP66,false,2018 reolink-rlc-410s,Reolink,RLC-410S,bullet,1440p Super HD,4,"1/2.7"" CMOS",80 horizontal,ir,IP66,false,2018 reolink-rlc-410w,Reolink,RLC-410W,bullet,4MP,4,"1/2.7"" CMOS",80 horizontal / 42 vertical,ir,IP66,false,2019 @@ -1032,7 +1016,6 @@ reolink-rlc-823a-canada,Reolink,RLC-823A (Canada),bullet,4K UHD,8,CMOS,110 horiz reolink-rlc-823a-ch,Reolink,RLC-823A (Switzerland),bullet,4K UHD,8,CMOS,110 horizontal,color,IP67,true,2023 reolink-rlc-823a-eu,Reolink,RLC-823A (EU),bullet,4K UHD,8,CMOS,110 horizontal,color,IP67,true,2023 reolink-rlc-823a-mena,Reolink,RLC-823A (MENA),bullet,4K UHD,8,CMOS,110 horizontal,color,IP67,true,2023 -reolink-rlc-823a-ptz-4k,Reolink,RLC-830A,ptz,4K UHD,8,"1/2.7"" CMOS",87 horizontal,hybrid,IP66,true,2022 reolink-rlc-823a-v2,Reolink,RLC-823A v2,bullet,4K UHD,8,"1/2.7"" CMOS",110 horizontal,color,IP67,true,2024 reolink-rlc-823s1,Reolink,RLC-823S1,ptz,4K UHD,8,"1/2.8"" CMOS",110-27 horizontal,hybrid,IP66,true,2024 reolink-rlc-823s1w,Reolink,RLC-823S1W,ptz,4K UHD,8,"1/2.8"" CMOS",110-27 horizontal,hybrid,IP66,true,2024 @@ -1041,7 +1024,6 @@ reolink-rlc-824a,Reolink,RLC-824A,bullet,4K UHD,8,"1/2.8"" CMOS",94-42 horizonta reolink-rlc-830a,Reolink,RLC-830A,ptz,4K UHD,8,"1/2.7"" CMOS",87 horizontal,hybrid,IP66,true,2022 reolink-rlc-833a,Reolink,RLC-833A,turret,4K UHD,8,"1/2.8"" CMOS",110-41 horizontal,hybrid,IP67,true,2022 reolink-rlc-833wa,Reolink,RLC-833WA,turret,4K UHD,8,"1/2.8"" CMOS",110 horizontal,hybrid,IP67,true,2023 -reolink-rlc-840a,Reolink,RLC-840A,turret,4K UHD,8,"1/2.8"" CMOS",125 horizontal,hybrid,IP67,true,2023 reolink-rlc-840a-v2,Reolink,RLC-840A,turret,4K UHD,8,"1/2.7"" CMOS",125 horizontal,hybrid,IP67,true,2022 reolink-rlc-840wa,Reolink,RLC-840WA,turret,4K UHD,8,"1/2.8"" CMOS",125 horizontal,hybrid,IP67,true,2024 reolink-rlc-842a,Reolink,RLC-842A,turret,4K UHD,8,"1/2.8"" CMOS",128 horizontal,ir,IP66,false,2021 @@ -1092,10 +1074,8 @@ simplisafe-indoor-cam-v2,SimpliSafe,Indoor Camera Gen 2,dome,1080p HD,2,,120h,ir simplisafe-outdoor-cam,SimpliSafe,Outdoor Camera,bullet,2K QHD,4,,140 horizontal,color,IP65,true,2022 simplisafe-outdoor-cam-v2,SimpliSafe,Outdoor Security Camera Gen 2,bullet,2K QHD,4,,140 horizontal,color,IP65,true,2024 simplisafe-smart-alarm-indoor-cam,SimpliSafe,Smart Alarm Wireless Indoor Camera,dome,2K QHD,4,,125 diagonal,ir,IP20,true,2022 -somfy-indoor-cam,Somfy,Indoor Camera,dome,1080p HD,2,,130h,ir,IP20,true,2020 somfy-indoor-camera,Somfy,Indoor Camera,dome,1080p HD,2,CMOS,130 diagonal,ir,IP20,true,2020 somfy-one-plus,Somfy,Somfy One+,covert,1080p HD,2,,130 diagonal,ir,IP20,true,2019 -somfy-outdoor-cam,Somfy,Outdoor Camera,bullet,1080p HD,2,,130h,ir,IP55,true,2021 somfy-outdoor-camera,Somfy,Outdoor Camera,bullet,1080p HD,2,CMOS,120 diagonal,color,IP55,true,2021 steinel-l-620-cam,Steinel,L 620 CAM,bullet,1080p HD,2,CMOS,180 horizontal (pivoting camera),ir,IP44,true,2021 steinel-l-620-cam-sc,Steinel,L 620 CAM SC,bullet,2K QHD,4,CMOS,180 horizontal,color,IP44,true,2024 @@ -1112,6 +1092,19 @@ sunell-sn-ips5780dcan-z25,Sunell,SN-IPS5780DCAN-Z25,ptz,4K UHD,8,"1/2.8"" CMOS", sunell-sn-ipv5720dcan-b,Sunell,SN-IPV5720DCAN-B,turret,1080p Full HD,2,"1/2.8"" CMOS",108 horizontal,ir,IP66,false,2020 sunell-sn-ipv5740dcan-z,Sunell,SN-IPV5740DCAN-Z,turret,4MP QHD,4,"1/3"" CMOS",100-30 horizontal,ir,IP66,true,2021 sunell-sn-ipv5780dcan-b,Sunell,SN-IPV5780DCAN-B,turret,4K UHD,8,"1/2.8"" CMOS",105 horizontal,hybrid,IP66,true,2022 +sv3c-b04poe,SV3C,SV-B04POE,bullet,2K QHD,4,,,ir,IP66,false, +sv3c-b05poe,SV3C,SV-B05POE,bullet,5MP,5,,,ir,IP66,true, +sv3c-b05w,SV3C,SV-B05W / SV-B08W,bullet,5MP,5,,,ir,IP66,true, +sv3c-b08poe,SV3C,SV-B08POE,bullet,4K UHD,8,,120 horizontal,hybrid,,true, +sv3c-c12,SV3C,C12,ptz,5MP,5,,,color,IP66,true, +sv3c-c25,SV3C,C25,ptz,4K UHD,8,IMX415 CMOS,,color,IP66,true, +sv3c-d08poe,SV3C,SV-D08POE,dome,4K UHD,8,,120 horizontal,color,IP66,true, +sv3c-ptz-1080p-wifi-4x,SV3C,SV3C 1080P WiFi PTZ 4X,ptz,1080p FHD,2,,,ir,,true, +sv3c-ptz-4k-dual-network,SV3C,SV3C 4K PTZ PoE+WiFi Dual Network,ptz,4K UHD,8,,,color,IP66,true, +sv3c-ptz-5mp-wifi-5x,SV3C,SV3C 5MP WiFi PTZ 5X Spotlight,ptz,5MP,5,,,color,IP66,true, +sv3c-ptz-poe-15x,SV3C,SV3C 5MP/8MP PoE PTZ 15X,ptz,5MP,5,,,color,,true, +sv3c-ptz-wifi-track,SV3C,SV3C 5MP/8MP WiFi PTZ Motion Track,ptz,5MP,5,,,color,,true, +sv3c-solar-dual-lens-2k,SV3C,SV3C 2K Solar Dual-Lens Kit,dual-lens,2K QHD,4,,106 wide / 46 tele,color,,true, swann-4k-bullet,Swann,4K Bullet,bullet,4K UHD,8,"1/2.8"" CMOS",100 horizontal,ir,IP67,false,2023 swann-4k-dome,Swann,4K Dome,dome,4K UHD,8,"1/2.8"" CMOS",100 horizontal,ir,IP66,false,2023 swann-buddy-doorbell,Swann,Buddy Video Doorbell,doorbell,1080p HD,2,,140h,ir,IP44,true,2023 @@ -1143,7 +1136,7 @@ synology-tc800w,Synology,TC800W,dome,4K UHD,8,,107h,ir,IP67,false,2024 tapo-c100,Tapo,Tapo C100,dome,1080p,2,,105 horizontal,color,IP20,true,2020 tapo-c100-global,Tapo,C100,dome,1080p HD,2,CMOS,130 horizontal,ir,IP20,true,2020 tapo-c110,Tapo,Tapo C110,dome,3MP 1296p,3,,127 horizontal,color,IP20,true,2022 -tapo-c120,Tapo,Tapo C120,bullet,2K QHD,2,,130 horizontal,color,IP44,true,2023 +tapo-c120,Tapo,Tapo C120,bullet,2K QHD,3.7,,130 horizontal,color,IP44,true,2023 tapo-c120-indoor,Tapo,C120,dome,4MP QHD,4,CMOS,130 horizontal,color,IP20,true,2024 tapo-c121,Tapo,Tapo C121,dome,2K QHD,4,,,ir,,true,2024 tapo-c125,Tapo,Tapo C125,dome,5MP 2K+,5,,114 horizontal,color,IP20,true,2023 @@ -1200,7 +1193,6 @@ tapo-d230s1,Tapo,D230S1,doorbell,2K QHD,5,,160 diagonal,color,IP64,true,2024 tapo-d235,Tapo,D235,doorbell,3K 5MP,5,,160 diagonal,color,IP44,true,2024 tapo-tc40,Tapo,TC40,bullet,2K QHD,4,,105 horizontal,color,IP66,true,2021 tapo-tc55,Tapo,Tapo TC55,ptz,2K QHD,4,,,hybrid,IP65,true,2024 -tapo-tc82,Tapo,TC82,bullet,2K QHD,4,,116 horizontal,color,IP66,true,2023 tapo-tc82-global,Tapo,TC82,bullet,2K QHD,4,CMOS,118 horizontal,color,IP44,true,2023 tapo-tc85,Tapo,TC85,ptz,2K QHD,4,,360 pan / 140 tilt,color,IP65,true,2023 tiandy-tc-c32fn,Tiandy,TC-C32FN,dome,1080p,2,"1/2.8"" CMOS",108 horizontal,ir,IP66,false,2021 @@ -1262,9 +1254,7 @@ ubiquiti-g5-turret,Ubiquiti,UniFi Protect G5 Turret,turret,4MP QHD,4,"1/3"" CMOS ubiquiti-g5-turret-ultra,Ubiquiti,UniFi Protect G5 Turret Ultra,turret,2K,5,"1/2.7"" CMOS (5MP)",88 horizontal,ir,IP66,false,2024 ubiquiti-g6-ptz,Ubiquiti,UniFi Protect G6 PTZ,ptz,4K UHD,8,"1/2"" CMOS",51-2.4 horizontal,ir,IP66,false,2024 uniview-ipc2122le-adf40kmc-wl,Uniview,IPC2122LE-ADF40KMC-WL,bullet,1080p,2,"1/2.8"" CMOS",97 horizontal,color,IP67,false, -uniview-ipc2224se-df40k-wl,Uniview,IPC2224SE-DF40K-WL-I0,dome,4MP,4,,90h,color,IP67,false,2022 uniview-ipc2224se-df40k-wl-i0,Uniview,IPC2224SE-DF40K-WL-I0,bullet,4MP,4,"1/2.8"" Progressive Scan CMOS",83 horizontal,color,IP67,false, -uniview-ipc2228se-df40k-wl,Uniview,IPC2228SE-DF40K-WL-I0,dome,4K UHD,8,,107h,color,IP67,false,2023 uniview-ipc2228se-df40k-wl-i0,Uniview,IPC2228SE-DF40K-WL-I0,bullet,4K UHD,8,"1/1.8"" Progressive Scan CMOS",89 horizontal,color,IP67,false, uniview-ipc3234sa-df28k-wl,Uniview,IPC3234SA-DF28K-WL,turret,4MP,4,"1/1.8"" CMOS",101 horizontal,color,IP67,true, uniview-ipc3235sa-df28k-wl,Uniview,IPC3235SA-DF28K-WL,dome,5MP,5,,106h,color,IP67,true,2022 diff --git a/data/cameras.json b/data/cameras.json index ac433fe9..15b3ab8a 100644 --- a/data/cameras.json +++ b/data/cameras.json @@ -551,9 +551,7 @@ "nvr_compatible": false, "cloud": false }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -580,22 +578,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" - }, "home_assistant": { "integration": "onvif", - "notes": "Use ONVIF integration." - }, - "blue_iris": { - "profile": "Hikvision", - "notes": "Select 'Hikvision' profile. Most ABUS IP cameras use Hikvision protocol." + "notes": "Battery/solar ABUS camera. RTSP/ONVIF support unconfirmed for this battery model. May be app-only." } } }, @@ -1199,6 +1184,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "ABUS 1080p 12x PTZ outdoor", "50m IR", "H.265", @@ -1623,7 +1609,8 @@ "profile": "ACTi", "notes": "Select 'ACTi' profile. Default RTSP port is 7070." } - } + }, + "status": "discontinued" }, { "id": "acti-q416", @@ -1637,7 +1624,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "lens": { @@ -2181,6 +2168,9 @@ ], "power_source": [ "usb" + ], + "markets": [ + "US" ] }, { @@ -2298,58 +2288,6 @@ "ac-mains" ] }, - { - "id": "adt-indoor-cam-v2", - "brand": "ADT", - "model": "ADT+ Indoor Camera", - "type": "dome", - "connectivity": [ - "wifi" - ], - "release_year": 2023, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "120h", - "night_vision": { - "type": "ir", - "range_m": 5 - }, - "power": { - "method": "DC 5V USB-C" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP20", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "ADT+ 1080p indoor WiFi camera", - "person detection", - "two-way audio", - "ADT professional monitoring integration", - "Google Home" - ], - "sources": [ - "https://www.adt.com/" - ], - "markets": [ - "US" - ], - "power_source": [ - "usb" - ] - }, { "id": "adt-plus-floodlight-cam", "brand": "ADT", @@ -4249,6 +4187,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Amcrest 4K 25x PTZ PoE outdoor", "100m IR", "AI auto-tracking", @@ -4798,7 +4737,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "lens": { @@ -6304,9 +6243,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -6318,7 +6255,6 @@ "Zigbee 3.0 hub built-in", "on-device AI face/person", "IR remote emitter", - "RTSP Home Assistant", "Alexa / Google", "Matter compatible" ], @@ -6330,21 +6266,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit Secure Video only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } }, @@ -6394,10 +6318,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp", - "onvif" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -6409,7 +6330,6 @@ "multi-protocol smart home hub (Zigbee 3.0 + Thread + Matter Controller + Aqara Zigbee hub)", "HomeKit Secure Video (end-to-end encrypted)", "Alexa / Google Home / SmartThings", - "RTSP local streaming (Home Assistant)", "on-device AI: face/vehicle/pet/package + audio (alarm/baby cry)", "eMMC + iCloud + NAS/SMB backup", "first shown IFA 2024 Berlin", @@ -6420,25 +6340,12 @@ "https://eu.aqara.com/en-eu/products/aqara-camera-hub-g5-pro" ], "power_source": [ - "poe", "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit/Matter only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } }, @@ -6487,10 +6394,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp", - "onvif" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -6502,7 +6406,6 @@ "Zigbee 3.0 + Thread Border Router + Matter Controller (smart home hub)", "HomeKit Secure Video (E2E encrypted)", "Alexa / Google / SmartThings", - "RTSP local streaming (Home Assistant)", "on-device AI (face/vehicle/pet/audio)", "eMMC + iCloud + NAS/SMB backup", "PoE or WiFi versions", @@ -6516,25 +6419,12 @@ "https://www.digitec.ch/" ], "power_source": [ - "poe", "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit/Matter only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } }, @@ -6655,6 +6545,9 @@ "msrp_usd": 99.99, "sources": [ "https://us.arlo.com/products/arlo-essential-indoor-camera" + ], + "power_source": [ + "dc" ] }, { @@ -7539,7 +7432,8 @@ "brand": "Arlo", "model": "Pro 5S 2K Spotlight", "aliases": [ - "VMC4460P" + "VMC4460P", + "arlo-pro-5s-spotlight" ], "type": "bullet", "connectivity": [ @@ -7868,69 +7762,6 @@ "usb" ] }, - { - "id": "arlo-pro-5s-spotlight", - "brand": "Arlo", - "model": "Pro 5S 2K Spotlight", - "aliases": [ - "VMC4060P" - ], - "release_year": 2024, - "type": "dome", - "connectivity": [ - "wifi" - ], - "resolution": { - "megapixels": 4, - "max_width": 2560, - "max_height": 1440, - "label": "2K QHD" - }, - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "160 diagonal", - "night_vision": { - "type": "color", - "range_m": 7 - }, - "power": { - "method": "Rechargeable removable battery / solar panel optional / USB-C" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "2K QHD + HDR", - "integrated spotlight", - "color night vision", - "person/vehicle/animal/package detection", - "dual-band WiFi direct (no hub required)", - "Apple HomeKit / Google / Alexa", - "Arlo Secure plan for cloud" - ], - "msrp_usd": 179.99, - "sources": [ - "https://www.arlo.com/cameras/pro/arlo-pro-5.html" - ], - "power_source": [ - "battery", - "solar", - "usb" - ] - }, { "id": "arlo-pro-5s-uk", "brand": "Arlo", @@ -8186,76 +8017,13 @@ "battery" ] }, - { - "id": "arlo-ultra-2", - "brand": "Arlo", - "model": "Ultra 2 Spotlight", - "aliases": [ - "VMC5040", - "XL VMC5040B" - ], - "type": "dome", - "connectivity": [ - "wifi" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "180 diagonal", - "night_vision": { - "type": "color", - "range_m": 10 - }, - "power": { - "method": "Rechargeable removable battery / solar panel optional" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "4K UHD", - "180deg HDR", - "integrated spotlight", - "color night vision", - "auto-zoom and tracking", - "noise-cancelling two-way audio", - "Apple HomeKit / Google / Alexa", - "Arlo Secure plan for cloud storage" - ], - "release_year": 2021, - "msrp_usd": 299.99, - "sources": [ - "https://www.arlo.com/cameras/ultra/arlo-ultra-2.html" - ], - "power_source": [ - "battery", - "solar" - ] - }, { "id": "arlo-ultra-2-spotlight", "brand": "Arlo", "model": "Ultra 2 Spotlight", "aliases": [ - "Arlo Ultra 2 4K Spotlight Camera" + "Arlo Ultra 2 4K Spotlight Camera", + "arlo-ultra-2" ], "type": "dome", "connectivity": [ @@ -10700,8 +10468,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -10779,8 +10546,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -11338,7 +11104,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK08", "audio": { "microphone": true, "speaker": false, @@ -11381,11 +11146,11 @@ } }, { - "id": "axis-m3106-l-mkii", + "id": "axis-m3106-lve-mk-ii", "brand": "Axis", - "model": "M3106-L Mk II", + "model": "M3106-LVE Mk II", "aliases": [ - "0890-001" + "Axis M3106-LVE Mk II 4MP Outdoor Dome" ], "type": "dome", "connectivity": [ @@ -11397,17 +11162,17 @@ "max_height": 1520, "label": "4MP" }, - "sensor": "1/3\" Progressive Scan CMOS", + "sensor": "1/2.7\" Progressive Scan CMOS", "lens": { "count": 1, - "focal_length_mm": "3 (fixed)", + "focal_length_mm": "3-9 (motorized varifocal)", "aperture": "F1.8", - "varifocal": false + "varifocal": true }, - "field_of_view_deg": "108 horizontal", + "field_of_view_deg": "107-36 horizontal", "night_vision": { "type": "ir", - "range_m": 10 + "range_m": 30 }, "power": { "method": "PoE (802.3af)" @@ -11419,189 +11184,25 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], - "ip_rating": "IP42", + "ip_rating": "IP66", "audio": { "microphone": false, "speaker": false, "two_way": false }, "features": [ - "Lightfinder", - "HDTV 1080p at 30fps", - "ARTPEC-6 SoC", - "corridor format", - "WDR", - "indoor use", - "compact dome" + "Forensic WDR", + "OptimizedIR", + "H.265 Zipstream", + "remote zoom and focus", + "AXIS Video Motion Detection", + "IK10", + "affordable mid-range outdoor dome" ], "sources": [ - "https://www.axis.com/products/axis-m3106-l-mk-ii" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=1920x1080", - "best_substream": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=640x480" - }, - "home_assistant": { - "integration": "axis", - "notes": "Native Axis integration with auto-discovery via Zeroconf." - }, - "blue_iris": { - "profile": "Axis", - "notes": "Select 'Axis' profile. Auto-discovery via ONVIF usually works." - } - } - }, - { - "id": "axis-m3106-lve", - "brand": "Axis", - "model": "M3106-LVE Mk II", - "aliases": [ - "0890-001" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/3\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "3-9 (varifocal)", - "aperture": "F1.6", - "varifocal": true - }, - "field_of_view_deg": "100-35 horizontal", - "night_vision": { - "type": "ir", - "range_m": 15 - }, - "power": { - "method": "PoE (802.3af)" - }, - "storage": { - "onboard": true, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Lightfinder", - "HDTV 4MP", - "corridor format", - "Zipstream", - "WDR", - "IK10" - ], - "sources": [ - "https://www.axis.com/products/axis-m3106-lve-mk-ii" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=1920x1080", - "best_substream": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=640x480" - }, - "home_assistant": { - "integration": "axis", - "notes": "Native Axis integration with auto-discovery via Zeroconf." - }, - "blue_iris": { - "profile": "Axis", - "notes": "Select 'Axis' profile. Auto-discovery via ONVIF usually works." - } - } - }, - { - "id": "axis-m3106-lve-mk-ii", - "brand": "Axis", - "model": "M3106-LVE Mk II", - "aliases": [ - "Axis M3106-LVE Mk II 4MP Outdoor Dome" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/2.7\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "3-9 (motorized varifocal)", - "aperture": "F1.8", - "varifocal": true - }, - "field_of_view_deg": "107-36 horizontal", - "night_vision": { - "type": "ir", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af)" - }, - "storage": { - "onboard": true, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Forensic WDR", - "OptimizedIR", - "H.265 Zipstream", - "remote zoom and focus", - "AXIS Video Motion Detection", - "IK10", - "affordable mid-range outdoor dome" - ], - "sources": [ - "https://www.axis.com/products/axis-m3106-lve-mk-ii" + "https://www.axis.com/products/axis-m3106-lve-mk-ii" ], "power_source": [ "poe" @@ -11732,8 +11333,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -11787,7 +11387,7 @@ "megapixels": 12, "max_width": 3584, "max_height": 2688, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -11811,8 +11411,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -12230,8 +11829,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP31", "audio": { @@ -12542,8 +12140,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -12862,8 +12459,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -13030,8 +12626,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP42", "audio": { @@ -13363,8 +12958,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -13900,7 +13494,7 @@ "ethernet" ], "resolution": { - "megapixels": 8, + "megapixels": 24, "max_width": 8000, "max_height": 3000, "label": "4x2MP multisensor" @@ -14145,8 +13739,7 @@ }, "field_of_view_deg": "55-1.7h", "night_vision": { - "type": "none", - "range_m": 0 + "type": "ir" }, "power": { "method": "PoE (802.3bt)" @@ -14168,6 +13761,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Axis P5655-E 32x outdoor PTZ", "OptimizedIR", "Lightfinder 2.0", @@ -14408,8 +14002,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP42", "audio": { @@ -14568,8 +14161,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -14625,7 +14217,7 @@ "ethernet" ], "resolution": { - "megapixels": 0, + "megapixels": 0.3, "max_width": 640, "max_height": 480, "label": "640x480 thermal" @@ -14785,7 +14377,7 @@ ], "release_year": 2021, "resolution": { - "megapixels": 0, + "megapixels": 0.08, "max_width": 384, "max_height": 288, "label": "384×288 thermal" @@ -14891,8 +14483,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -14971,8 +14562,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -15533,8 +15123,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -17128,8 +16717,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -17211,8 +16799,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -17437,7 +17024,7 @@ "megapixels": 12, "max_width": 4096, "max_height": 3072, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "2/3\" Progressive Scan CMOS", "lens": { @@ -17625,8 +17212,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -17709,8 +17295,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -17791,8 +17376,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -18278,8 +17862,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP54", "audio": { @@ -18361,8 +17944,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP54", "audio": { @@ -19501,7 +19083,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -19551,7 +19134,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -19602,7 +19186,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -19653,7 +19238,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -19705,7 +19291,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -19762,7 +19349,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -20312,7 +19900,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "night_vision": { @@ -20501,6 +20089,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "CP Plus 4MP 25x AI PTZ India", "100m IR", "SMD Plus AI", @@ -21515,82 +21104,6 @@ } } }, - { - "id": "cp-plus-cp-z43q-2", - "brand": "CP Plus", - "model": "CP-Z43Q", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "release_year": 2022, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "60-2.5h", - "night_vision": { - "type": "ir", - "range_m": 60 - }, - "power": { - "method": "PoE (802.3at)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "CP Plus 4MP 36x PTZ India", - "60m IR", - "auto-tracking", - "H.265", - "IP66", - "popular India large premises" - ], - "sources": [ - "https://www.cpplus.in/" - ], - "lens": { - "count": 1, - "focal_length_mm": "4.7-170 (36x optical)", - "varifocal": true - }, - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Uses Dahua protocol. ONVIF integration works." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. CP Plus uses Dahua protocol." - } - } - }, { "id": "dahua-dh-sd49425xb-hnr", "brand": "Dahua", @@ -21641,6 +21154,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "WizMind 4MP 25x Starlight PTZ", "face detection", "perimeter protection", @@ -21663,7 +21177,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -21748,7 +21263,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -21760,13 +21276,140 @@ } } }, + { + "id": "dahua-dh-sdt7425-4p-ad3e-pv-i", + "brand": "Dahua", + "model": "DH-SDT7425-4P-AD3E-PV-i", + "type": "ptz", + "connectivity": [ + "ethernet" + ], + "release_year": 2022, + "status": "discontinued", + "markets": [ + "CN" + ], + "resolution": { + "megapixels": 4, + "max_width": 3840, + "max_height": 1080, + "label": "Dual: 4MP panoramic (3840x1080) + 4MP PTZ (2560x1440)" + }, + "lens": { + "count": 2, + "focal_length_mm": "panoramic: 2.8 fixed / PTZ: 4.8-120 (25x optical)", + "aperture": "F1.0 (panoramic) / F1.6-3.6 (PTZ)", + "varifocal": true + }, + "night_vision": { + "type": "hybrid", + "range_m": 150 + }, + "power": { + "method": "DC 36V/2.23A (±25%)", + "consumption_w": 35, + "voltage": "DC 36V" + }, + "storage": { + "onboard": false, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "dual-channel: 180° panoramic 4MP stitched + 4MP PTZ 25x zoom", + "starlight 0.001 lux color @F1.0", + "150m IR (PTZ) + 30m white light (panoramic)", + "auto-tracking (single-ball tracking)", + "face detection with attributes (6 attributes, 8 expressions)", + "9 IVS rules: tripwire, intrusion, loitering, parking, crowd", + "human/vehicle classification", + "active deterrence: white light strobe + 110dB speaker, 22 voice alerts", + "300 presets, 8 cruise paths", + "2 alarm in / 1 alarm out", + "8000V lightning protection", + "electronic defog", + "GB/T28181, GA/T 1400 (CN standards)", + "China market model" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "detect": { + "width": 1280, + "height": 360, + "fps": 5 + }, + "notes": "Dual-channel — configure as TWO Frigate cameras: panoramic = channel=1 (3840x1080, 32:9 — set detect to 1280x360 to match), PTZ = channel=2 (2560x1440, rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=2&subtype=0, detect 1280x720). For ONVIF autotracking on the PTZ channel add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. ONVIF PTZ confirmed working — Channel 2 profiles have both VideoEncoderConfiguration and PTZConfiguration (no split-profile issue, unlike SDT4E series). Verified in frigate#22135. Note: powered by DC 36V, not PoE." + }, + "home_assistant": { + "integration": "onvif", + "notes": "ONVIF integration works including PTZ control. Default port 80. CN firmware." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Dual-channel camera — add each channel as a separate camera." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://github.com/ch-bas/cctv-camera-database/issues/11", + "https://github.com/blakeblackshear/frigate/discussions/22135", + "https://www.jiankongqicai.com/news/64.html" + ], + "sensor": "2x 1/2.8\" CMOS (panoramic + PTZ)", + "field_of_view_deg": "180 horizontal (panoramic) / 55.8-2.4 (PTZ)", + "ip_rating": "IP66", + "operating_temp_c": "-40 to +65", + "video": { + "codecs": [ + "Smart H.265", + "H.265", + "Smart H.264", + "H.264", + "MJPEG" + ], + "max_fps": 25, + "streams": [ + { + "name": "panoramic main", + "resolution": "3840x1080", + "fps": 25, + "codec": "H.265" + }, + { + "name": "panoramic sub", + "resolution": "960x268", + "fps": 25, + "codec": "H.264" + }, + { + "name": "PTZ main", + "resolution": "2560x1440", + "fps": 25, + "codec": "H.265" + } + ] + } + }, { "id": "dahua-hac-hdw1509tq-a-led", "brand": "Dahua", "model": "HAC-HDW1509TQ-A-LED", "type": "dome", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -21786,9 +21429,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -21815,7 +21456,7 @@ "model": "HAC-HFW1509TH-A-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -21835,9 +21476,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -21864,7 +21503,7 @@ "model": "HAC-HFW2802E-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2023, "resolution": { @@ -21884,9 +21523,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -21911,7 +21548,7 @@ "model": "HAC-HFW2849E-A-NI-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2023, "resolution": { @@ -21931,9 +21568,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -24751,7 +24386,8 @@ "brand": "Dahua", "model": "IPC-HDW3849H-ZAS-PV", "aliases": [ - "WizSense TiOC 8MP Varifocal Turret" + "WizSense TiOC 8MP Varifocal Turret", + "dahua-ipc-hdw3849h-zas-pv-varifocal" ], "type": "turret", "connectivity": [ @@ -24828,21 +24464,21 @@ } }, { - "id": "dahua-ipc-hdw3849h-zas-pv-varifocal", + "id": "dahua-ipc-hdw5442t-ze", "brand": "Dahua", - "model": "IPC-HDW3849H-ZAS-PV", + "model": "IPC-HDW5442T-ZE", "type": "turret", "connectivity": [ "ethernet" ], "release_year": 2023, "resolution": { - "megapixels": 8, - "label": "4K UHD" + "megapixels": 4, + "label": "4MP" }, "field_of_view_deg": "110-30h", "night_vision": { - "type": "hybrid", + "type": "ir", "range_m": 40 }, "power": { @@ -24861,16 +24497,18 @@ "ip_rating": "IP67", "audio": { "microphone": true, - "speaker": true, - "two_way": true + "speaker": false, + "two_way": false }, "features": [ - "TiOC 2.0 4K 5× varifocal eyeball", - "full-color active deterrence", - "WizSense AI", - "two-way audio", + "WizMind 5 Series 4MP varifocal eyeball", + "Deeplight", + "2.7-12mm motorized", + "40m IR", + "IVS analytics", "H.265+", - "IP67" + "IP67", + "IK10" ], "sources": [ "https://www.dahuasecurity.com/" @@ -24900,29 +24538,38 @@ } }, { - "id": "dahua-ipc-hdw5442t-ze", + "id": "dahua-ipc-hdw5442tm-ase", "brand": "Dahua", - "model": "IPC-HDW5442T-ZE", + "model": "IPC-HDW5442TM-ASE", + "aliases": [ + "WizMind 4MP AI Eyeball" + ], "type": "turret", "connectivity": [ "ethernet" ], - "release_year": 2023, "resolution": { "megapixels": 4, + "max_width": 2688, + "max_height": 1520, "label": "4MP" }, - "field_of_view_deg": "110-30h", + "sensor": "1/1.8\" Progressive Scan CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 / 3.6 (fixed options)", + "varifocal": false + }, "night_vision": { "type": "ir", - "range_m": 40 + "range_m": 50 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -24937,182 +24584,99 @@ "two_way": false }, "features": [ - "WizMind 5 Series 4MP varifocal eyeball", - "Deeplight", - "2.7-12mm motorized", - "40m IR", - "IVS analytics", + "WizMind AI face detection", + "SMD 3.0", + "video metadata", + "object detection", + "H.265+ codec", + "built-in mic", + "ePoE long-distance" + ], + "sources": [ + "https://www.sourcesecurity.com/dahua-technology-ipc-hdw5442tm-ase-ip-camera-technical-details.html" + ], + "power_source": [ + "poe", + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. Default ONVIF port 80." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Supports both main and sub streams." + } + } + }, + { + "id": "dahua-ipc-hdw5449h-ase-d2", + "brand": "Dahua", + "model": "IPC-HDW5449H-ASE-D2", + "aliases": [ + "WizMind 4MP Deep Learning Dome" + ], + "type": "dome", + "connectivity": [ + "ethernet" + ], + "release_year": 2024, + "resolution": { + "megapixels": 4, + "max_width": 2688, + "max_height": 1520, + "label": "4MP" + }, + "sensor": "1/1.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 (fixed)", + "varifocal": false + }, + "night_vision": { + "type": "hybrid", + "range_m": 30 + }, + "power": { + "method": "PoE (802.3at) / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 256, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP67", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "WizMind 4MP deep learning dome D2 gen", + "AI face detection and recognition", + "people counting", + "perimeter protection", + "smart dual illumination", + "1/1.8\" large sensor", "H.265+", "IP67", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hdw5442tm-ase", - "brand": "Dahua", - "model": "IPC-HDW5442TM-ASE", - "aliases": [ - "WizMind 4MP AI Eyeball" - ], - "type": "turret", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/1.8\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 / 3.6 (fixed options)", - "varifocal": false - }, - "night_vision": { - "type": "ir", - "range_m": 50 - }, - "power": { - "method": "PoE / ePoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind AI face detection", - "SMD 3.0", - "video metadata", - "object detection", - "H.265+ codec", - "built-in mic", - "ePoE long-distance" - ], - "sources": [ - "https://www.sourcesecurity.com/dahua-technology-ipc-hdw5442tm-ase-ip-camera-technical-details.html" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hdw5449h-ase-d2", - "brand": "Dahua", - "model": "IPC-HDW5449H-ASE-D2", - "aliases": [ - "WizMind 4MP Deep Learning Dome" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2024, - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/1.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "varifocal": false - }, - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3at) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "WizMind 4MP deep learning dome D2 gen", - "AI face detection and recognition", - "people counting", - "perimeter protection", - "smart dual illumination", - "1/1.8\" large sensor", - "H.265+", - "IP67", - "IK10", - "alarm I/O" + "IK10", + "alarm I/O" ], "sources": [ "https://www.dahuasecurity.com/" @@ -25450,7 +25014,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Dual-lens WizMind camera — check whether second lens exposes a separate channel (channel=2)." }, "home_assistant": { "integration": "onvif", @@ -25478,7 +25043,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -27870,7 +27435,88 @@ } }, { - "id": "dahua-ipc-hfw3849e-as-led-s2-new", + "id": "dahua-ipc-hfw3849e-s-il", + "brand": "Dahua", + "model": "IPC-HFW3849E-S-IL", + "aliases": [ + "WizSense 8MP Dual-Light Fixed Bullet S5" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/2.7\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 / 3.6 (fixed)", + "varifocal": false + }, + "night_vision": { + "type": "hybrid", + "range_m": 30 + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 256, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP67", + "audio": { + "microphone": true, + "speaker": false, + "two_way": false + }, + "features": [ + "smart dual illumination", + "WizSense AI", + "H.265+", + "built-in mic", + "ePoE support", + "budget-friendly" + ], + "sources": [ + "https://www.dahuasecurity.com" + ], + "power_source": [ + "poe", + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. Default ONVIF port 80." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Supports both main and sub streams." + } + } + }, + { + "id": "dahua-ipc-hfw3849e-zas-led-s2", "brand": "Dahua", "model": "IPC-HFW3849E-ZAS-LED-S2", "type": "bullet", @@ -27951,11 +27597,12 @@ } }, { - "id": "dahua-ipc-hfw3849e-s-il", + "id": "dahua-ipc-hfw3849t-as-pv-pro-legacy", "brand": "Dahua", - "model": "IPC-HFW3849E-S-IL", + "model": "IPC-HFW3849T1-AS-PV-PRO", "aliases": [ - "WizSense 8MP Dual-Light Fixed Bullet S5" + "WizColor TiOC PRO 8MP Bullet", + "dahua-ipc-hfw3849t1-as-pv-pro" ], "type": "bullet", "connectivity": [ @@ -27967,10 +27614,11 @@ "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.7\" CMOS", + "sensor": "1/1.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8 / 3.6 (fixed)", + "focal_length_mm": "2.8 (fixed)", + "aperture": "F1.0", "varifocal": false }, "night_vision": { @@ -27982,7 +27630,7 @@ }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -27993,19 +27641,21 @@ "ip_rating": "IP67", "audio": { "microphone": true, - "speaker": false, - "two_way": false + "speaker": true, + "two_way": true }, "features": [ - "smart dual illumination", + "TiOC PRO WizColor 24/7 color", + "1/1.8\" large sensor F1.0", "WizSense AI", - "H.265+", - "built-in mic", - "ePoE support", - "budget-friendly" + "SMD 4.0", + "AcuPick", + "active deterrence red/blue lights", + "built-in dual mic & speaker", + "H.265" ], "sources": [ - "https://www.dahuasecurity.com" + "https://www.dahuasecurity.com/products/discontinued-products/network-cameras/ipc-hfw3849h-as-pv=s5" ], "power_source": [ "poe", @@ -28032,11 +27682,13 @@ } }, { - "id": "dahua-ipc-hfw3849t-as-pv-pro-legacy", + "id": "dahua-ipc-hfw3849t1-as-pv", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV-PRO", + "model": "IPC-HFW3849T1-AS-PV", "aliases": [ - "WizColor TiOC PRO 8MP Bullet" + "DH-IPC-HFW3849T1-AS-PV", + "WizSense TiOC 8MP Bullet", + "dahua-ipc-hfw3849t1-as-pv-s3" ], "type": "bullet", "connectivity": [ @@ -28048,11 +27700,10 @@ "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/1.8\" CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", - "aperture": "F1.0", "varifocal": false }, "night_vision": { @@ -28064,7 +27715,7 @@ }, "storage": { "onboard": true, - "max_microsd_gb": 512, + "max_microsd_gb": 256, "nvr_compatible": true, "cloud": false }, @@ -28079,17 +27730,17 @@ "two_way": true }, "features": [ - "TiOC PRO WizColor 24/7 color", - "1/1.8\" large sensor F1.0", + "TiOC 2.0 full-color active deterrence", "WizSense AI", + "smart dual illumination", + "human / vehicle classification", + "red & blue warning lights", + "built-in mic & speaker", "SMD 4.0", - "AcuPick", - "active deterrence red/blue lights", - "built-in dual mic & speaker", - "H.265" + "H.265 codec" ], "sources": [ - "https://www.dahuasecurity.com/products/discontinued-products/network-cameras/ipc-hfw3849h-as-pv=s5" + "https://www.dahuasecurity.com/asset/upload/uploads/cpq/prm-os-srv-res/smart/datasheetzipfiles/IPC-HFW3849T1-AS-PV-S3_datasheet_20220525.pdf" ], "power_source": [ "poe", @@ -28116,12 +27767,11 @@ } }, { - "id": "dahua-ipc-hfw3849t1-as-pv", + "id": "dahua-ipc-hfw3849t1-zas-pv", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV", + "model": "IPC-HFW3849T1-ZAS-PV", "aliases": [ - "DH-IPC-HFW3849T1-AS-PV", - "WizSense TiOC 8MP Bullet" + "WizSense TiOC 8MP Varifocal Bullet" ], "type": "bullet", "connectivity": [ @@ -28136,8 +27786,8 @@ "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8 (fixed)", - "varifocal": false + "focal_length_mm": "2.7-13.5 (motorized varifocal)", + "varifocal": true }, "night_vision": { "type": "hybrid", @@ -28163,17 +27813,15 @@ "two_way": true }, "features": [ - "TiOC 2.0 full-color active deterrence", + "TiOC full-color active deterrence", "WizSense AI", - "smart dual illumination", - "human / vehicle classification", - "red & blue warning lights", - "built-in mic & speaker", + "varifocal zoom", "SMD 4.0", - "H.265 codec" + "dual mic", + "H.265" ], "sources": [ - "https://www.dahuasecurity.com/asset/upload/uploads/cpq/prm-os-srv-res/smart/datasheetzipfiles/IPC-HFW3849T1-AS-PV-S3_datasheet_20220525.pdf" + "https://manuals.plus/ae/1005006014511706" ], "power_source": [ "poe", @@ -28200,25 +27848,34 @@ } }, { - "id": "dahua-ipc-hfw3849t1-as-pv-pro", + "id": "dahua-ipc-hfw5442e-ze", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV-PRO", + "model": "IPC-HFW5442E-ZE", + "aliases": [ + "WizMind 4MP Motorized Varifocal Bullet" + ], "type": "bullet", "connectivity": [ "ethernet" ], - "release_year": 2024, "resolution": { - "megapixels": 8, - "label": "4K UHD" + "megapixels": 4, + "max_width": 2688, + "max_height": 1520, + "label": "4MP" + }, + "sensor": "1/1.8\" Progressive Scan CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", + "varifocal": true }, - "field_of_view_deg": "107h", "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "ir", + "range_m": 60 }, "power": { - "method": "PoE/DC12V" + "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, @@ -28232,19 +27889,20 @@ ], "ip_rating": "IP67", "audio": { - "microphone": true, - "speaker": true, - "two_way": true + "microphone": false, + "speaker": false, + "two_way": false }, "features": [ - "TiOC PRO 4K bullet active deterrence enhanced", - "AI SMD 4.0", - "two-way audio", - "H.265+", - "IP67" + "WizMind AI", + "SMD 3.0", + "5x optical zoom", + "remote zoom/focus", + "H.265+ codec", + "IK10" ], "sources": [ - "https://www.dahuasecurity.com/" + "https://www.dahuasecurity.com" ], "power_source": [ "poe", @@ -28271,22 +27929,22 @@ } }, { - "id": "dahua-ipc-hfw3849t1-as-pv-s3", + "id": "dahua-ipc-hfw5442e-ze-s3", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV", + "model": "IPC-HFW5442E-ZE-S3", "type": "bullet", "connectivity": [ "ethernet" ], "release_year": 2023, "resolution": { - "megapixels": 8, - "label": "4K UHD" + "megapixels": 4, + "label": "4MP" }, - "field_of_view_deg": "110h", + "field_of_view_deg": "110-30h", "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "ir", + "range_m": 60 }, "power": { "method": "PoE (802.3af) / DC 12V" @@ -28304,14 +27962,17 @@ "ip_rating": "IP67", "audio": { "microphone": true, - "speaker": true, - "two_way": true + "speaker": false, + "two_way": false }, "features": [ - "TiOC 2.0 4K fixed-focal bullet", - "full-color active deterrence (red/blue + siren)", - "WizSense AI", - "two-way audio", + "WizMind 5 Series 4MP varifocal bullet", + "Deeplight 0.003lux", + "ePoE 800m", + "2.7-12mm motorized", + "60m IR", + "IVS analytics", + "H.265+", "IP67" ], "sources": [ @@ -28342,11 +28003,11 @@ } }, { - "id": "dahua-ipc-hfw3849t1-zas-pv", + "id": "dahua-ipc-hfw5842e-ze", "brand": "Dahua", - "model": "IPC-HFW3849T1-ZAS-PV", + "model": "IPC-HFW5842E-ZE", "aliases": [ - "WizSense TiOC 8MP Varifocal Bullet" + "WizMind 8MP Motorized Varifocal Bullet" ], "type": "bullet", "connectivity": [ @@ -28358,22 +28019,22 @@ "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.8\" CMOS", + "sensor": "1/1.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.7-13.5 (motorized varifocal)", + "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", "varifocal": true }, "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "ir", + "range_m": 60 }, "power": { - "method": "PoE / DC 12V" + "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -28383,20 +28044,21 @@ ], "ip_rating": "IP67", "audio": { - "microphone": true, - "speaker": true, - "two_way": true + "microphone": false, + "speaker": false, + "two_way": false }, "features": [ - "TiOC full-color active deterrence", - "WizSense AI", - "varifocal zoom", + "WizMind AI", "SMD 4.0", - "dual mic", - "H.265" + "face detection", + "5x motorized zoom", + "H.265+", + "ePoE", + "IK10" ], "sources": [ - "https://manuals.plus/ae/1005006014511706" + "https://www.dahuasecurity.com" ], "power_source": [ "poe", @@ -28423,38 +28085,38 @@ } }, { - "id": "dahua-ipc-hfw5442e-ze", + "id": "dahua-ipc-hfw5842h-z4e", "brand": "Dahua", - "model": "IPC-HFW5442E-ZE", + "model": "IPC-HFW5842H-Z4E", "aliases": [ - "WizMind 4MP Motorized Varifocal Bullet" + "WizMind 8MP Long-Range IR Bullet" ], "type": "bullet", "connectivity": [ "ethernet" ], "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" }, - "sensor": "1/1.8\" Progressive Scan CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", + "focal_length_mm": "2.8-12 (motorized varifocal)", "varifocal": true }, "night_vision": { "type": "ir", - "range_m": 60 + "range_m": 80 }, "power": { "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -28470,10 +28132,11 @@ }, "features": [ "WizMind AI", - "SMD 3.0", - "5x optical zoom", - "remote zoom/focus", - "H.265+ codec", + "SMD 4.0", + "80m IR range", + "motorized varifocal", + "H.265+", + "ePoE", "IK10" ], "sources": [ @@ -28504,29 +28167,38 @@ } }, { - "id": "dahua-ipc-hfw5442e-ze-s3", + "id": "dahua-ipc-hfw5842h-z4he", "brand": "Dahua", - "model": "IPC-HFW5442E-ZE-S3", + "model": "IPC-HFW5842H-Z4HE", + "aliases": [ + "WizMind 8MP 120m IR Long-Range Bullet" + ], "type": "bullet", "connectivity": [ "ethernet" ], - "release_year": 2023, "resolution": { - "megapixels": 4, - "label": "4MP" + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/1.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8-12 (motorized varifocal)", + "varifocal": true }, - "field_of_view_deg": "110-30h", "night_vision": { "type": "ir", - "range_m": 60 + "range_m": 120 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "PoE / ePoE / DC 12V / AC 24V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -28541,17 +28213,18 @@ "two_way": false }, "features": [ - "WizMind 5 Series 4MP varifocal bullet", - "Deeplight 0.003lux", - "ePoE 800m", - "2.7-12mm motorized", - "60m IR", - "IVS analytics", - "H.265+", - "IP67" + "WizMind AI", + "120m long-range IR", + "smart object detection", + "video metadata", + "face detection", + "dual mic", + "ePoE", + "IK10", + "heater option" ], "sources": [ - "https://www.dahuasecurity.com/" + "https://m.indiamart.com/proddetail/dahua-ipc-hfw5842h-z4he-8mp-ir-vari-focal-bullet-wizmind-network-camera-2853740950030.html" ], "power_source": [ "poe", @@ -28578,38 +28251,41 @@ } }, { - "id": "dahua-ipc-hfw5842e-ze", + "id": "dahua-ipc-hfw5849t-ase-led", "brand": "Dahua", - "model": "IPC-HFW5842E-ZE", + "model": "IPC-HFW5849T-ASE-LED", "aliases": [ - "WizMind 8MP Motorized Varifocal Bullet" + "WizMind 8MP Full-Color Active Deterrence Bullet" ], "type": "bullet", "connectivity": [ "ethernet" ], + "release_year": 2023, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/1.8\" CMOS", + "sensor": "1/1.2\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", - "varifocal": true + "focal_length_mm": "2.8 / 3.6 (fixed)", + "aperture": "F1.0", + "varifocal": false }, + "field_of_view_deg": "113 horizontal", "night_vision": { - "type": "ir", - "range_m": 60 + "type": "color", + "range_m": 30 }, "power": { - "method": "PoE / ePoE / DC 12V" + "method": "PoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 512, + "max_microsd_gb": 256, "nvr_compatible": true, "cloud": false }, @@ -28619,271 +28295,20 @@ ], "ip_rating": "IP67", "audio": { - "microphone": false, - "speaker": false, - "two_way": false + "microphone": true, + "speaker": true, + "two_way": true }, "features": [ - "WizMind AI", - "SMD 4.0", - "face detection", - "5x motorized zoom", + "WizMind 4K full-color F1.0 active deterrence bullet", + "1/1.2\" large sensor", + "dual mic + speaker", + "AcuPick face/body features search", "H.265+", - "ePoE", - "IK10" + "IP67" ], "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hfw5842h-z4e", - "brand": "Dahua", - "model": "IPC-HFW5842H-Z4E", - "aliases": [ - "WizMind 8MP Long-Range IR Bullet" - ], - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-12 (motorized varifocal)", - "varifocal": true - }, - "night_vision": { - "type": "ir", - "range_m": 80 - }, - "power": { - "method": "PoE / ePoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind AI", - "SMD 4.0", - "80m IR range", - "motorized varifocal", - "H.265+", - "ePoE", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hfw5842h-z4he", - "brand": "Dahua", - "model": "IPC-HFW5842H-Z4HE", - "aliases": [ - "WizMind 8MP 120m IR Long-Range Bullet" - ], - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/1.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-12 (motorized varifocal)", - "varifocal": true - }, - "night_vision": { - "type": "ir", - "range_m": 120 - }, - "power": { - "method": "PoE / ePoE / DC 12V / AC 24V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind AI", - "120m long-range IR", - "smart object detection", - "video metadata", - "face detection", - "dual mic", - "ePoE", - "IK10", - "heater option" - ], - "sources": [ - "https://m.indiamart.com/proddetail/dahua-ipc-hfw5842h-z4he-8mp-ir-vari-focal-bullet-wizmind-network-camera-2853740950030.html" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hfw5849t-ase-led", - "brand": "Dahua", - "model": "IPC-HFW5849T-ASE-LED", - "aliases": [ - "WizMind 8MP Full-Color Active Deterrence Bullet" - ], - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/1.2\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 / 3.6 (fixed)", - "aperture": "F1.0", - "varifocal": false - }, - "field_of_view_deg": "113 horizontal", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "WizMind 4K full-color F1.0 active deterrence bullet", - "1/1.2\" large sensor", - "dual mic + speaker", - "AcuPick face/body features search", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.dahuasecurity.com/" + "https://www.dahuasecurity.com/" ], "power_source": [ "poe", @@ -29043,7 +28468,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Dual-lens WizMind camera — check whether second lens exposes a separate channel (channel=2)." }, "home_assistant": { "integration": "onvif", @@ -29205,7 +28631,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 360° camera — streams may be per-sensor channels (channel=1..4) or stitched depending on firmware. Verify channel layout via ONVIF before configuring." }, "home_assistant": { "integration": "onvif", @@ -29284,7 +28711,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image. Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -29369,7 +28797,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image (not 16:9). Set Frigate detect resolution to match the actual stream aspect ratio (check stream first, e.g. via VLC). Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -29455,7 +28884,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image (not 16:9). Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -29535,7 +28965,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image. Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -29606,7 +29037,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Panoramic + PTZ combo — panoramic is channel=1, PTZ is channel=2 (rtsp .../realmonitor?channel=2&subtype=0). Configure as two Frigate cameras." }, "home_assistant": { "integration": "onvif", @@ -29782,7 +29214,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -29863,91 +29296,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-sd49425xb-hnr", - "brand": "Dahua", - "model": "SD49425XB-HNR 4MP 25x PTZ", - "aliases": [ - "DH-SD49425XB-HNR", - "WizSense PTZ 4MP" - ], - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "4.9-122.5 (25x optical zoom)", - "varifocal": true - }, - "field_of_view_deg": "60.3-2.6 horizontal", - "night_vision": { - "type": "ir", - "range_m": 100 - }, - "power": { - "method": "PoE+ (802.3at) / DC 24V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "25x optical zoom", - "WizSense AI human / vehicle classification", - "SMD Plus", - "120 dB WDR", - "auto-tracking", - "patrol and preset tours", - "H.265 codec", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -29997,6 +29347,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "WizMind 4K 8MP 25x PTZ SMD 4.0", "face recognition", "auto-tracking", @@ -30025,7 +29376,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -30108,7 +29460,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -30190,86 +29543,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-sd6c3432xb-hnr-active", - "brand": "Dahua", - "model": "SD6C3432XB-HNR-A-PV1-new", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "release_year": 2024, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "60-2h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3bt)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind 4MP 32x PTZ full-color active deterrence", - "ColorVu full-color night vision", - "red/blue strobe + siren", - "face recognition", - "auto-tracking", - "H.265", - "IP66" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "lens": { - "count": 1, - "focal_length_mm": "6.0-192 (32x optical)", - "aperture": "F1.6", - "varifocal": true - }, - "sensor": "1/2.8\" CMOS", - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -31060,6 +30335,9 @@ "msrp_usd": 99.99, "sources": [ "https://www.eufy.com/products/garage-cam-s330" + ], + "power_source": [ + "dc" ] }, { @@ -31509,6 +30787,10 @@ "msrp_usd": 79.99, "sources": [ "https://www.eufy.com/products/outdoor-cam-e210" + ], + "power_source": [ + "battery", + "solar" ] }, { @@ -31525,8 +30807,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { @@ -31586,8 +30866,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { @@ -31815,6 +31093,10 @@ "msrp_usd": 39.99, "sources": [ "https://www.eufy.com/products/solocam-l20" + ], + "power_source": [ + "battery", + "solar" ] }, { @@ -31874,6 +31156,10 @@ "msrp_usd": 59.99, "sources": [ "https://www.eufy.com/products/solocam-l40" + ], + "power_source": [ + "battery", + "solar" ] }, { @@ -32358,8 +31644,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { @@ -36087,10 +35371,10 @@ "ethernet" ], "resolution": { - "megapixels": 3, + "megapixels": 4, "max_width": 2048, "max_height": 2048, - "label": "3MP Fisheye" + "label": "4MP Fisheye" }, "sensor": "1/2.8\" Progressive Scan CMOS", "lens": { @@ -37077,58 +36361,6 @@ "usb" ] }, - { - "id": "google-nest-cam-battery-2nd", - "brand": "Google", - "model": "Nest Cam (Battery) 2nd Gen", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2024, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "Rechargeable battery / solar optional" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 0, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Battery Gen 2 upgraded", - "1080p HDR", - "person/animal/vehicle detection", - "3hr event history free", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "battery", - "solar" - ] - }, { "id": "google-nest-cam-floodlight-wire", "brand": "Google", @@ -37180,56 +36412,6 @@ "ac-mains" ] }, - { - "id": "google-nest-cam-floodlight-wired", - "brand": "Google", - "model": "Nest Cam with Floodlight (Wired 2nd Gen)", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2024, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "color", - "range_m": 20 - }, - "power": { - "method": "Hardwired AC 120V" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Floodlight Gen 2 2000-lumen", - "1080p HDR", - "colour night vision", - "person/animal/vehicle detection", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "ac-mains" - ] - }, { "id": "google-nest-cam-indoor-1st-gen", "brand": "Google", @@ -37729,54 +36911,6 @@ "usb" ] }, - { - "id": "google-nest-cam-outdoor-wired", - "brand": "Google", - "model": "Nest Cam Outdoor (Wired)", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "DC 5V USB-C weatherproof" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Outdoor wired continuous 24/7 recording on Nest Aware Plus", - "person/animal/vehicle detection", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "usb" - ] - }, { "id": "google-nest-cam-ptz-indoor", "brand": "Google", @@ -38069,71 +37203,6 @@ "battery" ] }, - { - "id": "google-nest-doorbell-wired-2021", - "brand": "Google", - "model": "Nest Doorbell (Wired, 2nd Gen)", - "aliases": [ - "GA01318-US" - ], - "type": "doorbell", - "connectivity": [ - "wifi", - "ethernet" - ], - "resolution": { - "megapixels": 2, - "max_width": 1920, - "max_height": 1080, - "label": "1080p" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "145 diagonal", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "Hardwired (8-24 VAC) – no battery" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "HDR video", - "6x digital zoom", - "continuous 24/7 recording (Nest Aware Plus)", - "person / package / animal / vehicle detection", - "familiar face alerts", - "noise cancelling two-way audio", - "Google Home app", - "Alexa" - ], - "release_year": 2021, - "msrp_usd": 179.99, - "sources": [ - "https://store.google.com/product/nest_doorbell_wired_specs" - ], - "power_source": [ - "battery", - "ac-mains" - ] - }, { "id": "google-nest-doorbell-wired-2nd-gen", "brand": "Google", @@ -38149,8 +37218,6 @@ "release_year": 2022, "resolution": { "megapixels": 2, - "max_width": 960, - "max_height": 1280, "label": "960x1280 HD" }, "sensor": "CMOS", @@ -38217,8 +37284,6 @@ ], "resolution": { "megapixels": 2, - "max_width": 960, - "max_height": 1280, "label": "960x1280 HD" }, "lens": { @@ -38849,7 +37914,7 @@ "release_year": 2023, "resolution": { "megapixels": 20, - "max_width": 2592, + "max_width": 8000, "max_height": 1944, "label": "4x5MP (20MP total)" }, @@ -38968,6 +38033,7 @@ "two_way": true }, "features": [ + "pan/tilt/zoom", "multi-directional + PTZ combo", "5MP fixed + 2MP 40x PTZ", "AI deep-learning analytics", @@ -39849,7 +38915,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -39864,7 +38929,8 @@ "Korean-made Hanwha", "#1 Korea domestic surveillance brand", "largest market share South Korea domestic", - "ADT Caps / KT Telecop system integrator preferred" + "ADT Caps / KT Telecop system integrator preferred", + "IK10" ], "sources": [ "https://www.hanwhavision.com/en-kr/" @@ -40977,8 +40043,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -41314,7 +40379,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -41697,6 +40761,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Wisenet Q 4MP 32x PTZ", "100m IR", "auto-tracking", @@ -41784,6 +40849,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Wisenet 9 SoC (dual NPU)", "high-durability ruggedized housing", "AI-based noise reduction", @@ -45622,8 +44688,8 @@ }, "field_of_view_deg": "103h", "night_vision": { - "type": "none", - "range_m": 0 + "type": "ir", + "range_m": 30 }, "power": { "method": "PoE (802.3af) / DC 12V" @@ -45647,10 +44713,10 @@ "features": [ "2MP DarkFighter mini bullet", "0.002 lux ultra-low light", - "no IR", "H.265", "ONVIF/RTSP", - "IP67" + "IP67", + "EXIR 30m IR" ], "sources": [ "https://www.hikvision.com/en/products/" @@ -49004,7 +48070,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Dual-lens panoramic ColorVu — single stitched 180° stream, wider than 16:9. Set Frigate detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -49621,7 +48688,7 @@ "aliases": [ "WDR Fixed Cube 8MP IP Camera" ], - "type": "covert", + "type": "turret", "connectivity": [ "ethernet" ], @@ -50395,7 +49462,7 @@ "id": "hikvision-ds-2cd2443g2-iw", "brand": "Hikvision", "model": "DS-2CD2443G2-I(W)", - "type": "covert", + "type": "box", "connectivity": [ "ethernet" ], @@ -51680,7 +50747,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — main stream is the raw circular fisheye image. Frigate detection works on the fisheye view; dewarping requires camera-side view modes (each exposed as separate stream/channel)." }, "home_assistant": { "integration": "onvif", @@ -51762,7 +50830,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — raw fisheye stream; dewarped views available as additional channels (Streaming/Channels/201 etc. depending on view mode)." }, "home_assistant": { "integration": "onvif", @@ -55218,7 +54287,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — raw fisheye main stream; hardware dewarp views exposed as separate channels." }, "home_assistant": { "integration": "onvif", @@ -55246,7 +54316,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -55303,7 +54373,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "12MP fisheye — raw fisheye main stream; hardware dewarp views exposed as separate channels." }, "home_assistant": { "integration": "onvif", @@ -55375,7 +54446,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "PanoVu 4-sensor panoramic — each sensor is a separate channel: Streaming/Channels/101, 201, 301, 401. Configure each as its own Frigate camera, or use the stitched stream if firmware provides it." }, "home_assistant": { "integration": "onvif", @@ -55465,7 +54537,7 @@ "model": "DS-2CE16D8T-IT3F", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2020, "resolution": { @@ -55485,9 +54557,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -55495,9 +54565,9 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "2MP Ultra-Low Light TurboHD analog bullet", "60m Smart IR", - "4-in-1 HDCVI/TVI/AHD/CVBS", "H.265", "IP67", "legacy analog upgrade path" @@ -55515,7 +54585,7 @@ "model": "DS-2CE16H8T-IT3F", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2020, "resolution": { @@ -55535,9 +54605,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -55545,6 +54613,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP Ultra-Low Light TurboHD analog bullet", "60m Smart IR", "4-in-1", @@ -55563,7 +54632,7 @@ "model": "DS-2CE16K0T-ITF", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2021, "resolution": { @@ -55583,9 +54652,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP66", "audio": { "microphone": false, @@ -55593,9 +54660,9 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP TurboHD Analog bullet", "40m IR", - "4-in-1 HDCVI/TVI/AHD/CVBS", "IP66", "budget analog surveillance" ], @@ -55612,7 +54679,7 @@ "model": "DS-2CE76K0T-ITMFS", "type": "turret", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2021, "resolution": { @@ -55632,9 +54699,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -55642,6 +54707,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP TurboHD analog turret with mic", "40m IR", "4-in-1", @@ -55661,7 +54727,7 @@ "model": "DS-2CE76K0T-LMFS", "type": "turret", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -55681,9 +54747,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -55691,6 +54755,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP Smart Hybrid Light TurboHD turret", "dual light (IR + warm LED)", "4-in-1", @@ -55774,7 +54839,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -55858,7 +54924,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -55942,7 +55009,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -55992,6 +55060,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 4x AcuSense Mini PTZ outdoor IP66 50m IR", "auto-tracking", "H.265+" @@ -56015,7 +55084,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56103,7 +55173,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56193,7 +55264,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56286,7 +55358,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56372,7 +55445,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56455,7 +55529,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56538,7 +55613,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56588,6 +55664,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 25x PTZ DeepinView", "100m IR", "AcuSense AI", @@ -56617,7 +55694,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56701,7 +55779,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56781,7 +55860,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "PT + fixed dual-unit camera — fixed lens is channel 1 (Streaming/Channels/101), PT unit is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras." }, "home_assistant": { "integration": "onvif", @@ -56831,6 +55911,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "TandemVu: bullet camera + PTZ in one unit", "4MP wide-angle overview + 4MP 25x PTZ", "ColorVu + AcuSense AI", @@ -56858,7 +55939,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "TandemVu PTZ+bullet combo — bullet is channel 1 (Streaming/Channels/101), PTZ is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras; ONVIF PTZ control on channel 2." }, "home_assistant": { "integration": "onvif", @@ -56908,6 +55990,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "TandemVu: overview + 30x PTZ", "4MP wide + 4MP 30x IR PTZ", "AcuSense AI", @@ -56934,7 +56017,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "TandemVu PTZ+bullet combo — bullet is channel 1 (Streaming/Channels/101), PTZ is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras; ONVIF PTZ control on channel 2." }, "home_assistant": { "integration": "onvif", @@ -57007,79 +56091,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80. Enable in Configuration > Network > Integration Protocol." - }, - "blue_iris": { - "profile": "Hikvision", - "notes": "Select 'Hikvision' profile. Use main stream for recording, sub stream for live view." - } - } - }, - { - "id": "hikvision-ds-2xs6a26g0-solar", - "brand": "Hikvision", - "model": "DS-2XS6A26G0-I/CH20S40", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2022, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "103h", - "night_vision": { - "type": "ir", - "range_m": 60 - }, - "power": { - "method": "Solar + 10400mAh battery" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Hikvision solar-powered WiFi AcuSense bullet", - "solar always-on", - "AcuSense AI", - "60m IR", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.hikvision.com/en/" - ], - "power_source": [ - "battery", - "solar" - ], - "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Solar/battery powered enterprise camera — RTSP/ONVIF fully supported, but continuous 24/7 streaming will drain the battery faster than solar recharge in low-light seasons. Use sub-stream detection at low fps and motion-triggered recording." }, "home_assistant": { "integration": "onvif", @@ -58625,6 +57638,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "HiLook 4MP 20x PTZ entry-level", "80m IR", "auto-tracking", @@ -59319,6 +58333,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 25x PTZ", "100m IR", "IVA analytics", @@ -59459,7 +58474,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": true, "speaker": false, @@ -59475,7 +58489,8 @@ "ONVIF Profile G/S/T", "pre-installed AI analytics (ready to install 3rd-party apps)", "IK10 vandal-resistant", - "#1 brand Japan enterprise surveillance market" + "#1 brand Japan enterprise surveillance market", + "IK10" ], "sources": [ "https://i-pro.com/products_and_solutions/en/surveillance/products/wv-s2236l" @@ -59735,7 +58750,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": true, "speaker": false, @@ -59749,7 +58763,8 @@ "IK10 vandal-resistant", "NDAA compliant", "IDIS Security Suite VMS integration", - "most advanced IDIS Korea flagship dome 2024" + "most advanced IDIS Korea flagship dome 2024", + "IK10" ], "sources": [ "https://idisamericas.com/en/productslist/2" @@ -59823,7 +58838,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -59837,7 +58851,8 @@ "ONVIF Profile S/T", "easy kitting — auto-discovers on IDIS NVR instantly", "Korean-made quality", - "popular Korea retail/bank/education/healthcare" + "popular Korea retail/bank/education/healthcare", + "IK10" ], "sources": [ "https://idisamericas.com/en/product/3588" @@ -60125,7 +59140,9 @@ "brand": "IMOU", "model": "Cell Go", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, @@ -60362,7 +59379,9 @@ "brand": "IMOU", "model": "Cruiser 4G", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, @@ -60538,7 +59557,9 @@ "brand": "IMOU", "model": "Go Basic 2MP", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 2, @@ -67244,6 +66265,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4K 8MP 20x PTZ premium", "80m IR auto-tracking", "LUPUS SmartVision VMS", @@ -67338,6 +66360,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 18x PTZ outdoor", "60m IR", "auto-tracking", @@ -67804,8 +66827,6 @@ ], "resolution": { "megapixels": 2, - "max_width": 1920, - "max_height": 1920, "label": "2MP Fisheye" }, "sensor": "1/2.8\" Progressive Scan CMOS", @@ -69381,7 +68402,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" 12MP CMOS", "lens": { @@ -69694,8 +68715,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69767,8 +68786,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69837,8 +68854,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69914,8 +68929,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69989,8 +69002,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -70062,8 +69073,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1440, "label": "1080p+ 4:3" }, "lens": { @@ -72871,7 +71880,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -73507,7 +72516,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -73842,7 +72851,9 @@ "brand": "Reolink", "model": "Duo 2 LTE", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 16, @@ -74370,7 +73381,9 @@ "brand": "Reolink", "model": "Duo 4G", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 8, @@ -74546,88 +73559,6 @@ "usb" ] }, - { - "id": "reolink-e1-outdoor", - "brand": "Reolink", - "model": "E1 Outdoor", - "type": "ptz", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 5, - "max_width": 2560, - "max_height": 1920, - "label": "5MP Super HD" - }, - "sensor": "1/2.7\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-8", - "aperture": "F1.6" - }, - "field_of_view_deg": "90-50 horizontal", - "night_vision": { - "type": "color", - "range_m": 12 - }, - "power": { - "method": "DC 12V/1A" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "rtsp", - "onvif" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "3x optical zoom", - "355° pan / 50° tilt", - "auto-tracking", - "64 presets", - "person/vehicle/animal detection", - "spotlight color night vision", - "dual-band WiFi", - "no subscription" - ], - "msrp_usd": 110, - "sources": [ - "https://reolink.com/product/e1-outdoor/" - ], - "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, { "id": "reolink-e1-outdoor-cx", "brand": "Reolink", @@ -75495,7 +74426,9 @@ "brand": "Reolink", "model": "Go", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2019, "resolution": { "megapixels": 2, @@ -75546,7 +74479,9 @@ "brand": "Reolink", "model": "Go PT", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2021, "resolution": { "megapixels": 4, @@ -75597,7 +74532,9 @@ "brand": "Reolink", "model": "Go PT Plus", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 4, @@ -75649,7 +74586,9 @@ "brand": "Reolink", "model": "Go PT Ultra", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 8, @@ -75702,7 +74641,7 @@ "aliases": [ "Reolink Home Hub NVR/HomeBase for WiFi cameras" ], - "type": "covert", + "type": "box", "connectivity": [ "wifi", "ethernet" @@ -75741,7 +74680,8 @@ "manages up to 8 Reolink cameras", "AI video search", "no subscription fee", - "no cloud required" + "no cloud required", + "NVR hub — not a camera" ], "msrp_usd": 69, "sources": [ @@ -75756,7 +74696,9 @@ "brand": "Reolink", "model": "Keen Ranger PT", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, @@ -76395,7 +75337,9 @@ "Reolink Go Plus 4G LTE Battery Camera" ], "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 4, @@ -76463,7 +75407,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -76559,7 +75503,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { @@ -76639,7 +75583,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -76714,7 +75658,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { @@ -76795,7 +75739,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { @@ -79794,13 +78738,15 @@ } }, { - "id": "reolink-rlc-823a-ptz-4k", + "id": "reolink-rlc-823a-v2", "brand": "Reolink", - "model": "RLC-830A", - "type": "ptz", + "model": "RLC-823A v2", + "type": "bullet", "connectivity": [ - "ethernet" + "ethernet", + "wifi" ], + "release_year": 2024, "resolution": { "megapixels": 8, "max_width": 3840, @@ -79811,43 +78757,45 @@ "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", - "aperture": "F2.0", + "aperture": "F1.6", "varifocal": false }, - "field_of_view_deg": "87 horizontal", + "field_of_view_deg": "110 horizontal", "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "color", + "range_m": 25 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "PoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, "protocols": [ - "onvif", - "rtsp" + "rtsp", + "onvif" ], - "ip_rating": "IP66", + "ip_rating": "IP67", "audio": { "microphone": true, "speaker": true, "two_way": true }, "features": [ - "355deg pan / 90deg tilt", - "auto-tracking", - "spotlight deters intruders at night", - "person/vehicle detection", - "no subscription" + "4K PoE+WiFi v2 upgraded sensor", + "enhanced color night vision 25m", + "active deterrence v2", + "AI detection", + "no subscription", + "RTSP/ONVIF", + "IP67" ], - "release_year": 2022, + "msrp_usd": 79, "sources": [ - "https://reolink.com/product/rlc-830a/" + "https://reolink.com/" ], "power_source": [ "poe", @@ -79874,35 +78822,35 @@ } }, { - "id": "reolink-rlc-823a-v2", + "id": "reolink-rlc-823s1", "brand": "Reolink", - "model": "RLC-823A v2", - "type": "bullet", + "model": "RLC-823S1", + "aliases": [ + "4K PTZ 5x PoE" + ], + "type": "ptz", "connectivity": [ - "ethernet", - "wifi" + "ethernet" ], - "release_year": 2024, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.7\" CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8 (fixed)", - "aperture": "F1.6", - "varifocal": false + "focal_length_mm": "2.8-13.5 (5x optical zoom)", + "varifocal": true }, - "field_of_view_deg": "110 horizontal", + "field_of_view_deg": "110-27 horizontal", "night_vision": { - "type": "color", - "range_m": 25 + "type": "hybrid", + "range_m": 30 }, "power": { - "method": "PoE / DC 12V" + "method": "PoE (802.3af) / DC 12V" }, "storage": { "onboard": true, @@ -79911,27 +78859,28 @@ "cloud": false }, "protocols": [ - "rtsp", - "onvif" + "onvif", + "rtsp" ], - "ip_rating": "IP67", + "ip_rating": "IP66", "audio": { "microphone": true, "speaker": true, "two_way": true }, "features": [ - "4K PoE+WiFi v2 upgraded sensor", - "enhanced color night vision 25m", - "active deterrence v2", - "AI detection", - "no subscription", - "RTSP/ONVIF", - "IP67" + "360deg pan / 90deg tilt", + "5x optical zoom", + "3D zoom", + "auto-tracking", + "spotlight color night vision", + "customizable patrol routes", + "person/vehicle/animal detection", + "no subscription" ], - "msrp_usd": 79, + "release_year": 2024, "sources": [ - "https://reolink.com/" + "https://reolink.com/product/rlc-823s1/" ], "power_source": [ "poe", @@ -79958,14 +78907,15 @@ } }, { - "id": "reolink-rlc-823s1", + "id": "reolink-rlc-823s1w", "brand": "Reolink", - "model": "RLC-823S1", + "model": "RLC-823S1W", "aliases": [ - "4K PTZ 5x PoE" + "4K PTZ 5x WiFi 6" ], "type": "ptz", "connectivity": [ + "wifi", "ethernet" ], "resolution": { @@ -79986,7 +78936,7 @@ "range_m": 30 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "DC 12V" }, "storage": { "onboard": true, @@ -80005,21 +78955,19 @@ "two_way": true }, "features": [ - "360deg pan / 90deg tilt", + "WiFi 6 (802.11ax)", "5x optical zoom", "3D zoom", + "360deg pan / 90deg tilt", "auto-tracking", "spotlight color night vision", - "customizable patrol routes", - "person/vehicle/animal detection", "no subscription" ], "release_year": 2024, "sources": [ - "https://reolink.com/product/rlc-823s1/" + "https://reolink.com/product/rlc-823s1w/" ], "power_source": [ - "poe", "dc" ], "configs": { @@ -80043,15 +78991,14 @@ } }, { - "id": "reolink-rlc-823s1w", + "id": "reolink-rlc-823s2", "brand": "Reolink", - "model": "RLC-823S1W", + "model": "RLC-823S2", "aliases": [ - "4K PTZ 5x WiFi 6" + "4K PTZ 16x Dome" ], "type": "ptz", "connectivity": [ - "wifi", "ethernet" ], "resolution": { @@ -80063,16 +79010,16 @@ "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8-13.5 (5x optical zoom)", + "focal_length_mm": "2.8-45 (16x optical zoom)", "varifocal": true }, - "field_of_view_deg": "110-27 horizontal", + "field_of_view_deg": "110-7 horizontal", "night_vision": { "type": "hybrid", "range_m": 30 }, "power": { - "method": "DC 12V" + "method": "PoE (802.3af) / DC 12V" }, "storage": { "onboard": true, @@ -80091,102 +79038,19 @@ "two_way": true }, "features": [ - "WiFi 6 (802.11ax)", - "5x optical zoom", + "16x optical zoom", "3D zoom", "360deg pan / 90deg tilt", - "auto-tracking", "spotlight color night vision", + "person/vehicle/animal detection", "no subscription" ], "release_year": 2024, "sources": [ - "https://reolink.com/product/rlc-823s1w/" + "https://reolink.com/product/rlc-823s2/" ], "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-823s2", - "brand": "Reolink", - "model": "RLC-823S2", - "aliases": [ - "4K PTZ 16x Dome" - ], - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-45 (16x optical zoom)", - "varifocal": true - }, - "field_of_view_deg": "110-7 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "16x optical zoom", - "3D zoom", - "360deg pan / 90deg tilt", - "spotlight color night vision", - "person/vehicle/animal detection", - "no subscription" - ], - "release_year": 2024, - "sources": [ - "https://reolink.com/product/rlc-823s2/" - ], - "power_source": [ - "poe", + "poe", "dc" ], "configs": { @@ -80386,7 +79250,10 @@ "codec": "H.265" } ] - } + }, + "aliases": [ + "reolink-rlc-823a-ptz-4k" + ] }, { "id": "reolink-rlc-833a", @@ -80574,20 +79441,21 @@ } }, { - "id": "reolink-rlc-840a", + "id": "reolink-rlc-840a-v2", "brand": "Reolink", "model": "RLC-840A", "type": "turret", "connectivity": [ "ethernet" ], + "release_year": 2022, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.8\" CMOS", + "sensor": "1/2.7\" CMOS", "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", @@ -80619,13 +79487,14 @@ "two_way": true }, "features": [ + "4K spotlight turret", + "IK10 vandal-proof", "spotlight color night vision", - "IK10 vandal resistant", "person/vehicle/animal detection", - "two-way audio", + "active deterrence", "no subscription" ], - "release_year": 2023, + "msrp_usd": 44.99, "sources": [ "https://reolink.com/product/rlc-840a/" ], @@ -80651,24 +79520,27 @@ "profile": "Reolink", "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." } - } + }, + "aliases": [ + "reolink-rlc-840a" + ] }, { - "id": "reolink-rlc-840a-v2", + "id": "reolink-rlc-840wa", "brand": "Reolink", - "model": "RLC-840A", + "model": "RLC-840WA", "type": "turret", "connectivity": [ + "wifi", "ethernet" ], - "release_year": 2022, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.7\" CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", @@ -80680,6 +79552,161 @@ "type": "hybrid", "range_m": 30 }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 512, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP67", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "dual-band WiFi 6 (802.11ax)", + "spotlight color night vision", + "IK10 vandal resistant", + "person/vehicle/animal detection", + "no subscription" + ], + "release_year": 2024, + "sources": [ + "https://reolink.com/product/rlc-840wa/" + ], + "power_source": [ + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" + }, + "home_assistant": { + "integration": "reolink", + "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." + }, + "blue_iris": { + "profile": "Reolink", + "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." + } + } + }, + { + "id": "reolink-rlc-842a", + "brand": "Reolink", + "model": "RLC-842A", + "type": "turret", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/2.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 (fixed)", + "varifocal": false + }, + "field_of_view_deg": "128 horizontal", + "night_vision": { + "type": "ir", + "range_m": 30 + }, + "power": { + "method": "PoE (IEEE 802.3af) / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 512, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": false, + "speaker": false, + "two_way": false + }, + "features": [ + "IK10 vandal resistant", + "person/vehicle/animal detection", + "no subscription required" + ], + "release_year": 2021, + "sources": [ + "https://reolink.com/product/rlc-842a/" + ], + "power_source": [ + "poe", + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" + }, + "home_assistant": { + "integration": "reolink", + "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." + }, + "blue_iris": { + "profile": "Reolink", + "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." + } + } + }, + { + "id": "reolink-rlc-843a", + "brand": "Reolink", + "model": "RLC-843A", + "type": "dome", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/2.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.7-13.5 (5x motorized)", + "varifocal": true + }, + "field_of_view_deg": "110-27 horizontal", + "night_vision": { + "type": "hybrid", + "range_m": 30 + }, "power": { "method": "PoE (802.3af) / DC 12V" }, @@ -80700,253 +79727,16 @@ "two_way": true }, "features": [ - "4K spotlight turret", - "IK10 vandal-proof", + "5x optical zoom", + "IK10 vandal resistant", "spotlight color night vision", "person/vehicle/animal detection", - "active deterrence", + "two-way audio", "no subscription" ], - "msrp_usd": 44.99, + "release_year": 2023, "sources": [ - "https://reolink.com/product/rlc-840a/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-840wa", - "brand": "Reolink", - "model": "RLC-840WA", - "type": "turret", - "connectivity": [ - "wifi", - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "aperture": "F2.0", - "varifocal": false - }, - "field_of_view_deg": "125 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "dual-band WiFi 6 (802.11ax)", - "spotlight color night vision", - "IK10 vandal resistant", - "person/vehicle/animal detection", - "no subscription" - ], - "release_year": 2024, - "sources": [ - "https://reolink.com/product/rlc-840wa/" - ], - "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-842a", - "brand": "Reolink", - "model": "RLC-842A", - "type": "turret", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "varifocal": false - }, - "field_of_view_deg": "128 horizontal", - "night_vision": { - "type": "ir", - "range_m": 30 - }, - "power": { - "method": "PoE (IEEE 802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "IK10 vandal resistant", - "person/vehicle/animal detection", - "no subscription required" - ], - "release_year": 2021, - "sources": [ - "https://reolink.com/product/rlc-842a/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-843a", - "brand": "Reolink", - "model": "RLC-843A", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.7-13.5 (5x motorized)", - "varifocal": true - }, - "field_of_view_deg": "110-27 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "5x optical zoom", - "IK10 vandal resistant", - "spotlight color night vision", - "person/vehicle/animal detection", - "two-way audio", - "no subscription" - ], - "release_year": 2023, - "sources": [ - "https://reolink.com/product/rlc-843a/" + "https://reolink.com/product/rlc-843a/" ], "power_source": [ "poe", @@ -81223,7 +80013,9 @@ "brand": "Reolink", "model": "TrackMix LTE", "type": "dual-lens", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 8, @@ -82165,6 +80957,9 @@ "msrp_usd": 59.99, "sources": [ "https://ring.com/products/indoor-cam" + ], + "power_source": [ + "dc" ] }, { @@ -82346,6 +81141,9 @@ "msrp_usd": 79.99, "sources": [ "https://ring.com/products/outdoor-cam" + ], + "power_source": [ + "dc" ] }, { @@ -82715,6 +81513,9 @@ "msrp_usd": 179.99, "sources": [ "https://ring.com/products/spotlight-cam-plus-plug-in" + ], + "power_source": [ + "ac-mains" ] }, { @@ -83027,6 +81828,9 @@ "msrp_usd": 99.99, "sources": [ "https://ring.com/products/stick-up-cam-plug-in" + ], + "power_source": [ + "dc" ] }, { @@ -84027,62 +82831,6 @@ "usb" ] }, - { - "id": "somfy-indoor-cam", - "brand": "Somfy", - "model": "Indoor Camera", - "type": "dome", - "connectivity": [ - "wifi" - ], - "release_year": 2020, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 5 - }, - "power": { - "method": "DC 5V USB" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 32, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP20", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Somfy Indoor Camera 1080p WiFi", - "person/motion detection", - "Somfy TaHoma integration", - "Alexa / Google", - "GDPR EU cloud" - ], - "sources": [ - "https://www.somfy.fr/" - ], - "markets": [ - "FR", - "DE", - "EU" - ], - "msrp_eur": 149, - "power_source": [ - "usb" - ] - }, { "id": "somfy-indoor-camera", "brand": "Somfy", @@ -84096,10 +82844,10 @@ ], "release_year": 2020, "markets": [ - "FR", "DE", "ES", - "EU" + "EU", + "FR" ], "resolution": { "megapixels": 2, @@ -84217,63 +82965,6 @@ "usb" ] }, - { - "id": "somfy-outdoor-cam", - "brand": "Somfy", - "model": "Outdoor Camera", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 15 - }, - "power": { - "method": "DC 12V hardwired" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 32, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP55", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Somfy Outdoor Camera 1080p WiFi", - "person/vehicle/animal detection", - "Somfy TaHoma integration", - "Alexa / Google", - "GDPR EU cloud", - "IP55" - ], - "sources": [ - "https://www.somfy.fr/" - ], - "markets": [ - "FR", - "DE", - "EU" - ], - "msrp_eur": 189, - "power_source": [ - "dc" - ] - }, { "id": "somfy-outdoor-camera", "brand": "Somfy", @@ -84288,10 +82979,10 @@ ], "release_year": 2021, "markets": [ - "FR", "DE", "ES", - "EU" + "EU", + "FR" ], "resolution": { "megapixels": 2, @@ -85505,6 +84196,918 @@ } } }, + { + "id": "sv3c-b04poe", + "brand": "SV3C", + "model": "SV-B04POE", + "aliases": [ + "SV3C 4MP PoE Bullet H.265" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 4, + "max_width": 2560, + "max_height": 1440, + "label": "2K QHD" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": false, + "speaker": false, + "two_way": false + }, + "video": { + "codecs": [ + "H.265" + ] + }, + "features": [ + "4MP Super HD 2560x1440", + "H.265 compression", + "IR night vision", + "motion detection", + "IP66", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. H.265 main stream. No ONVIF. No audio." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/Upgraded-SV3C-IP-POE-Camera-Security-Outdoor-4-Megapixels-Super-HD-2560x1440-H-265-Waterproof-Video-Camera-IR-Night-Vision-Motion-Detection-Wired-p1743568.html" + ] + }, + { + "id": "sv3c-b05poe", + "brand": "SV3C", + "model": "SV-B05POE", + "aliases": [ + "SV3C 5MP PoE Bullet" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "5MP", + "humanoid detection", + "IP66", + "RTSP", + "browser view" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-POE-IP-Camera-5-Megapixels-Security-Camera-Outdoor-with-2-Way-Audio-Humanoid-Detection-IP66-Waterproof-Power-Over-Ethernet-Cameras-Support-Max-128G-SD-Card-Record-Browser-View-No-WiFi-p2437989.html" + ] + }, + { + "id": "sv3c-b05w", + "brand": "SV3C", + "model": "SV-B05W / SV-B08W", + "aliases": [ + "SV3C 5MP WiFi Bullet", + "SV3C 8MP WiFi Bullet" + ], + "type": "bullet", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp", + "onvif" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "5MP/8MP variants", + "ONVIF", + "RTSP", + "motion detection", + "IP66", + "two-way audio" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. This is the original SV3C model — one of the few that supports ONVIF. Known for inconsistent firmware; RTSP may break after updates." + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. One of the few SV3C models with ONVIF support. Firmware updates may break ONVIF — pin your firmware version." + }, + "blue_iris": { + "profile": "Generic/ONVIF", + "notes": "Use Generic/ONVIF. Also works with Generic/RTSP at /stream0 and /stream1." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/5MP-8MP-Outdoor-Security-Camera-SV3C-WiFi-Wireless-5-8-Megapixels-HD-Night-Vision-Surveillance-Cameras-2-Way-Audio-IP-Camera-Motion-Detection-CCTV-Weatherproof-Outside-Camera-Support-Max-128GB-SD-Card-p395185.html" + ] + }, + { + "id": "sv3c-b08poe", + "brand": "SV3C", + "model": "SV-B08POE", + "aliases": [ + "SV3C 4K PoE Bullet" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "field_of_view_deg": "120 horizontal", + "night_vision": { + "type": "hybrid" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 256, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "4K@20fps", + "human/vehicle detection", + "color night vision", + "RTSP", + "metal shell" + ], + "video": { + "codecs": [ + "H.264" + ], + "max_fps": 20, + "streams": [ + { + "name": "main", + "resolution": "3840x2160", + "fps": 20, + "codec": "H.264" + }, + { + "name": "sub", + "resolution": "unknown", + "fps": 20, + "codec": "H.264" + } + ] + }, + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user is 'admin'. RTSP paths are /stream0 (main) and /stream1 (sub). No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1. Default user 'admin'." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-POE-IP-Camera-Outdoor-8MP-POE-Security-Camera-with-Smart-Motion-Detection-IR-Color-Night-Vision-120-Wide-Angle-2-Way-Audio-Metal-Shell-RTSP-SD-Card-Record-Wired-p2471515.html" + ] + }, + { + "id": "sv3c-c12", + "brand": "SV3C", + "model": "C12", + "aliases": [ + "SV3C PTZ WiFi 15X Optical Zoom", + "SV3C 5MP WiFi PTZ Floodlight" + ], + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "lens": { + "count": 1, + "focal_length_mm": "15x optical zoom", + "varifocal": true + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V", + "consumption_w": 12 + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "15x optical zoom", + "auto-tracking", + "floodlight color night vision (12 IR LEDs)", + "two-way audio", + "metal dome shell", + "RTSP/FTP", + "Blue Iris compatible", + "dual stream (2 channels)" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. RTSP /stream0 (main) /stream1 (sub). No ONVIF — PTZ control via app/web UI only." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Manufacturer lists Blue Iris compatibility. Use Generic/RTSP at /stream0. No ONVIF PTZ control." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.amazon.de/SV3C-%C3%9Cberwachungskamera-Optischer-Flutlicht-Nachtsicht/dp/B0BDFF5VMC", + "https://www.sv3c.com/SV3C-PTZ-WiFi-Security-Camera-Outdoor-15X-Optical-Zoom-Auto-Tracking-5MP-8MP-Floodlight-Color-Night-Vision-Wireless-IP-Cam-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-p2032033.html" + ] + }, + { + "id": "sv3c-c25", + "brand": "SV3C", + "model": "C25", + "type": "ptz", + "connectivity": [ + "wifi", + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": true + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "36x hybrid zoom (18x optical + 18x digital)", + "350° pan / 93° tilt", + "auto-tracking", + "people/vehicle/pet detection", + "color night vision (9 IR LEDs)", + "two-way audio", + "ONVIF/RTSP/FTP", + "2.4/5GHz WiFi + Ethernet", + "cloud + microSD storage" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. ONVIF supported on this model (unlike most SV3C). PTZ control via ONVIF possible." + }, + "blue_iris": { + "profile": "Generic/ONVIF", + "notes": "Use Generic/ONVIF. PTZ control supported via ONVIF." + }, + "home_assistant": { + "integration": "onvif", + "notes": "ONVIF integration works — one of the few SV3C models with ONVIF. PTZ controls exposed via ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-8MP-PTZ-Camera-Outdoor-Update-2-4-5-GHZ-WiFi-Security-IP-Cameras-Support-36X-Zoom-RTSP-PC-Web-Browser-Viewing-Humanoid-Detect-FTP-IP66-Waterproof-2-way-Audio-SD-Card-Record-p2300200.html", + "https://www.amazon.de/SV3C-%C3%BCberwachungskamera-Haustiererkennung-Auto-Tracking-Farbnachtsicht/dp/B0CXPSKK2R" + ], + "aliases": [ + "SV3C 4K 36X Zoom PTZ", + "SV3C 8MP PTZ WiFi 36X" + ], + "sensor": "IMX415 CMOS", + "lens": { + "count": 1, + "focal_length_mm": "18x optical zoom (36x hybrid)", + "varifocal": true + }, + "video": { + "codecs": [ + "H.265" + ], + "max_fps": 15, + "streams": [ + { + "name": "main", + "resolution": "3840x2160", + "fps": 15, + "codec": "H.265" + } + ] + } + }, + { + "id": "sv3c-d08poe", + "brand": "SV3C", + "model": "SV-D08POE", + "aliases": [ + "SV3C 4K PoE Dome" + ], + "type": "dome", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "field_of_view_deg": "120 horizontal", + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 512, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "4K 8MP", + "human/vehicle detection", + "color night vision", + "RTSP", + "24/7 recording" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. RTSP /stream0 (main) /stream1 (sub). No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-POE-Camera-Outdoor-IP-Dome-Wired-Security-Indoor-Camera-with-Human-Vehicle-Detection-8MP-HD-Color-Night-Vision-Two-Way-Audio-Waterproof-24-7-Recording-RTSP-Up-to-512GB-SD-Card-p2471510.html" + ] + }, + { + "id": "sv3c-ptz-1080p-wifi-4x", + "brand": "SV3C", + "model": "SV3C 1080P WiFi PTZ 4X", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 2, + "max_width": 1920, + "max_height": 1080, + "label": "1080p FHD" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "1080P WiFi PTZ", + "4x digital zoom", + "AI human detection", + "RTSP", + "CamHi app" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 640, + "height": 480, + "fps": 5 + }, + "notes": "Default user 'admin'. Budget 1080P PTZ. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/1080P-Wifi-Surveillance-Camera-SV3C-Wireless-Home-Security-PTZ-Camera-IP-CCTV-4X-Digital-ZOOM-AI-Human-Detect-CamHi-p2058778.html" + ] + }, + { + "id": "sv3c-ptz-4k-dual-network", + "brand": "SV3C", + "model": "SV3C 4K PTZ PoE+WiFi Dual Network", + "type": "ptz", + "connectivity": [ + "ethernet", + "wifi" + ], + "resolution": { + "megapixels": 8, + "label": "4K UHD" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "pan/tilt/zoom", + "4K 8MP", + "dual network (PoE + WiFi)", + "auto-tracking", + "human/vehicle detection", + "color night vision", + "RTSP", + "24/7 recording", + "CamHiPro app" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. Supports both PoE and WiFi simultaneously. No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-PTZ-POE-Wired-WiFi-Security-Camera-Outdoor-Dual-Network-Support-Auto-Tracking-Security-Cam-Color-Night-Vision-Human-Vehicle-Detection-2-Way-Audio-Waterproof-24-7-Record-CamHiPro-p2707179.html" + ] + }, + { + "id": "sv3c-ptz-5mp-wifi-5x", + "brand": "SV3C", + "model": "SV3C 5MP WiFi PTZ 5X Spotlight", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "5MP WiFi PTZ", + "5x optical zoom", + "auto-tracking", + "spotlight color night vision", + "IP66", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/New-Auto-Track-PTZ-WiFi-Camera-Outdoor-Wireless-5MP-5X-Zoom-Spotlight-Color-Night-Vision-Camera-IP66-Waterproof-Playback-p1737238.html" + ] + }, + { + "id": "sv3c-ptz-poe-15x", + "brand": "SV3C", + "model": "SV3C 5MP/8MP PoE PTZ 15X", + "type": "ptz", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "15x optical zoom", + "auto-tracking", + "floodlight color night vision", + "RTSP", + "FTP", + "Blue Iris compatible", + "metal shell" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. No ONVIF. Blue Iris compatible per manufacturer." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Manufacturer explicitly lists Blue Iris compatibility. Use Generic/RTSP at /stream0." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-8MP-POE-PTZ-Security-Camera-Outdoor-15X-Optical-Zoom-5MP-4k-Auto-Tracking-Floodlight-Color-Night-Vision-IP-Camera-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-Wired-p2302126.html" + ] + }, + { + "id": "sv3c-ptz-wifi-track", + "brand": "SV3C", + "model": "SV3C 5MP/8MP WiFi PTZ Motion Track", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "video": { + "codecs": [ + "H.265", + "H.264" + ] + }, + "features": [ + "pan/tilt/zoom", + "5MP/8MP variants", + "H.265+H.264", + "motion tracking", + "spotlight full-color night vision", + "metal shell", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. H.265 main stream available. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-8MP-WiFi-IP-Camera-Outdoor-Metal-Motion-Track-PTZ-Security-Surveillance-Camera-Spotlight-Full-Color-Night-Vision-IP-Camera-p2010092.html" + ] + }, + { + "id": "sv3c-solar-dual-lens-2k", + "brand": "SV3C", + "model": "SV3C 2K Solar Dual-Lens Kit", + "type": "dual-lens", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 4, + "label": "2K QHD" + }, + "field_of_view_deg": "106 wide / 46 tele", + "night_vision": { + "type": "color" + }, + "power": { + "method": "Solar panel / rechargeable battery" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 64, + "nvr_compatible": false, + "cloud": false + }, + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "2K dual-lens", + "solar powered", + "360° pan/tilt", + "auto-tracking", + "color night vision", + "no subscription", + "4-camera kit" + ], + "power_source": [ + "battery", + "solar" + ], + "sources": [ + "https://www.sv3c.com/SV3C-Security-Cameras-Wireless-Outdoor-2K-Dual-Lens-Camera-for-Home-Security-with-Solar-Powered-No-Subscription-Fees-360-Pan-Tilt-Auto-Tracking-Color-Night-Vision-2-Way-Audio-4-Camera-Kit-p2708922.html" + ] + }, { "id": "swann-4k-bullet", "brand": "Swann", @@ -87818,7 +87421,7 @@ "ethernet" ], "resolution": { - "megapixels": 2, + "megapixels": 3.7, "max_width": 2560, "max_height": 1440, "label": "2K QHD" @@ -92602,95 +92205,13 @@ } } }, - { - "id": "tapo-tc82", - "brand": "Tapo", - "model": "TC82", - "aliases": [ - "Smart Outdoor Camera with Floodlight" - ], - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2023, - "resolution": { - "megapixels": 4, - "max_width": 2560, - "max_height": 1440, - "label": "2K QHD" - }, - "lens": { - "count": 1, - "focal_length_mm": "2.8mm", - "aperture": "F1.6", - "varifocal": false - }, - "field_of_view_deg": "116 horizontal", - "night_vision": { - "type": "color", - "range_m": 15 - }, - "power": { - "method": "Hardwired (AC)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "2K floodlight security camera", - "3000-lumen floodlight", - "AI person/pet/vehicle detection", - "color night vision", - "IP66", - "built-in siren", - "activity zones", - "no subscription" - ], - "sources": [ - "https://www.tapo.com/" - ], - "power_source": [ - "ac-mains" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/stream1", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/stream2" - }, - "home_assistant": { - "integration": "tapo", - "notes": "Native TP-Link Tapo integration. Requires Tapo cloud account credentials." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP streams: /stream1 (main), /stream2 (sub). Must enable ONVIF in Tapo app." - } - } - }, { "id": "tapo-tc82-global", "brand": "Tapo", "model": "TC82", "aliases": [ - "TP-Link Tapo TC82 2K Floodlight Camera" + "TP-Link Tapo TC82 2K Floodlight Camera", + "tapo-tc82" ], "type": "bullet", "connectivity": [ @@ -96478,8 +95999,8 @@ "configs": { "frigate": { "detect": { - "width": 1280, - "height": 720, + "width": 720, + "height": 1280, "fps": 5 }, "rtsp_url_template": "rtsps://{ip}:7441/{camera_id}?enableSrtp" @@ -96559,8 +96080,8 @@ "configs": { "frigate": { "detect": { - "width": 1280, - "height": 720, + "width": 720, + "height": 1280, "fps": 5 }, "rtsp_url_template": "rtsps://{ip}:7441/{camera_id}?enableSrtp" @@ -97529,78 +97050,6 @@ } } }, - { - "id": "uniview-ipc2224se-df40k-wl", - "brand": "Uniview", - "model": "IPC2224SE-DF40K-WL-I0", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2022, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "90h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Uniview 4MP LightHunter full-color dome", - "warm LED color night vision", - "NDAA", - "H.265+", - "IP67", - "IK10" - ], - "sources": [ - "https://www.uniview.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s0/live", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s1/live" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP paths: /unicast/c1/s0/live (main), /unicast/c1/s1/live (sub)." - } - } - }, { "id": "uniview-ipc2224se-df40k-wl-i0", "brand": "Uniview", @@ -97684,78 +97133,6 @@ } } }, - { - "id": "uniview-ipc2228se-df40k-wl", - "brand": "Uniview", - "model": "IPC2228SE-DF40K-WL-I0", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "label": "4K UHD" - }, - "field_of_view_deg": "107h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Uniview 4K LightHunter full-color dome", - "warm LED color night vision", - "AI human/vehicle", - "NDAA", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.uniview.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s0/live", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s1/live" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP paths: /unicast/c1/s0/live (main), /unicast/c1/s1/live (sub)." - } - } - }, { "id": "uniview-ipc2228se-df40k-wl-i0", "brand": "Uniview", @@ -100174,6 +99551,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Vivotek 4MP 32x outdoor PTZ", "100m IR", "Smart VCA AI", @@ -100250,7 +99628,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100275,21 +99654,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge (https://github.com/mrlt8/docker-wyze-bridge) for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } }, @@ -100572,7 +99939,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100586,8 +99954,7 @@ "AI person/vehicle/animal/package", "no subscription", "solar optional", - "Alexa / Google", - "RTSP" + "Alexa / Google" ], "msrp_usd": 59, "sources": [ @@ -100598,21 +99965,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } }, @@ -100656,7 +100011,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100682,21 +100038,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } }, @@ -100740,7 +100084,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100765,21 +100110,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No native RTSP. Use docker-wyze-bridge for local RTSP proxy. Pan/tilt control available via bridge." } } }, @@ -100906,7 +100239,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "audio": { "microphone": true, @@ -100918,8 +100252,7 @@ "14-day free cloud storage", "person detection", "continuous recording (microSD)", - "Alexa / Google Home", - "RTSP firmware available" + "Alexa / Google Home" ], "msrp_usd": 26, "sources": [ @@ -100929,21 +100262,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "Legacy RTSP firmware was available but is discontinued. Use docker-wyze-bridge for local RTSP proxy." } } }, @@ -101237,7 +100558,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -101262,21 +100584,9 @@ "ac-mains" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy." } } }, @@ -101530,9 +100840,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -101558,21 +100866,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Yale cameras are primarily cloud-based (Yale Home app). RTSP support is unconfirmed. Check camera settings for ONVIF/RTSP options." } } }, @@ -101737,9 +101033,7 @@ "nvr_compatible": false, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -101764,21 +101058,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Yale cameras are primarily cloud-based (Yale Home app). RTSP support is unconfirmed." } } }, @@ -101921,9 +101203,7 @@ "nvr_compatible": false, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -101947,21 +101227,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Older Yale model. RTSP support is unconfirmed. May be cloud-only via Yale Home app." } } }, @@ -102124,10 +101392,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "onvif", - "rtsp" - ], + "protocols": [], "ip_rating": "IP66", "audio": { "microphone": false, @@ -102137,7 +101402,6 @@ "features": [ "Zebronics 4MP PoE outdoor bullet India", "30m IR", - "ONVIF/RTSP", "IP66", "₹3,499" ], @@ -102149,7 +101413,6 @@ ], "msrp_inr": 3499, "power_source": [ - "poe", "dc" ] }, diff --git a/docs/cameras.json b/docs/cameras.json index ac433fe9..15b3ab8a 100644 --- a/docs/cameras.json +++ b/docs/cameras.json @@ -551,9 +551,7 @@ "nvr_compatible": false, "cloud": false }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -580,22 +578,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" - }, "home_assistant": { "integration": "onvif", - "notes": "Use ONVIF integration." - }, - "blue_iris": { - "profile": "Hikvision", - "notes": "Select 'Hikvision' profile. Most ABUS IP cameras use Hikvision protocol." + "notes": "Battery/solar ABUS camera. RTSP/ONVIF support unconfirmed for this battery model. May be app-only." } } }, @@ -1199,6 +1184,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "ABUS 1080p 12x PTZ outdoor", "50m IR", "H.265", @@ -1623,7 +1609,8 @@ "profile": "ACTi", "notes": "Select 'ACTi' profile. Default RTSP port is 7070." } - } + }, + "status": "discontinued" }, { "id": "acti-q416", @@ -1637,7 +1624,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "lens": { @@ -2181,6 +2168,9 @@ ], "power_source": [ "usb" + ], + "markets": [ + "US" ] }, { @@ -2298,58 +2288,6 @@ "ac-mains" ] }, - { - "id": "adt-indoor-cam-v2", - "brand": "ADT", - "model": "ADT+ Indoor Camera", - "type": "dome", - "connectivity": [ - "wifi" - ], - "release_year": 2023, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "120h", - "night_vision": { - "type": "ir", - "range_m": 5 - }, - "power": { - "method": "DC 5V USB-C" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP20", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "ADT+ 1080p indoor WiFi camera", - "person detection", - "two-way audio", - "ADT professional monitoring integration", - "Google Home" - ], - "sources": [ - "https://www.adt.com/" - ], - "markets": [ - "US" - ], - "power_source": [ - "usb" - ] - }, { "id": "adt-plus-floodlight-cam", "brand": "ADT", @@ -4249,6 +4187,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Amcrest 4K 25x PTZ PoE outdoor", "100m IR", "AI auto-tracking", @@ -4798,7 +4737,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "lens": { @@ -6304,9 +6243,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -6318,7 +6255,6 @@ "Zigbee 3.0 hub built-in", "on-device AI face/person", "IR remote emitter", - "RTSP Home Assistant", "Alexa / Google", "Matter compatible" ], @@ -6330,21 +6266,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit Secure Video only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } }, @@ -6394,10 +6318,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp", - "onvif" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -6409,7 +6330,6 @@ "multi-protocol smart home hub (Zigbee 3.0 + Thread + Matter Controller + Aqara Zigbee hub)", "HomeKit Secure Video (end-to-end encrypted)", "Alexa / Google Home / SmartThings", - "RTSP local streaming (Home Assistant)", "on-device AI: face/vehicle/pet/package + audio (alarm/baby cry)", "eMMC + iCloud + NAS/SMB backup", "first shown IFA 2024 Berlin", @@ -6420,25 +6340,12 @@ "https://eu.aqara.com/en-eu/products/aqara-camera-hub-g5-pro" ], "power_source": [ - "poe", "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit/Matter only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } }, @@ -6487,10 +6394,7 @@ "nvr_compatible": true, "cloud": true }, - "protocols": [ - "rtsp", - "onvif" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -6502,7 +6406,6 @@ "Zigbee 3.0 + Thread Border Router + Matter Controller (smart home hub)", "HomeKit Secure Video (E2E encrypted)", "Alexa / Google / SmartThings", - "RTSP local streaming (Home Assistant)", "on-device AI (face/vehicle/pet/audio)", "eMMC + iCloud + NAS/SMB backup", "PoE or WiFi versions", @@ -6516,25 +6419,12 @@ "https://www.digitec.ch/" ], "power_source": [ - "poe", "usb" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live" - }, "home_assistant": { "integration": "homekit", - "notes": "Best via HomeKit integration. RTSP available on G2H/G3 models via HomeKit Secure Video." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. RTSP only available on select models (G2H, G3)." + "notes": "No RTSP or ONVIF. HomeKit/Matter only. Use HomeKit integration in HA. Not compatible with Frigate or Blue Iris." } } }, @@ -6655,6 +6545,9 @@ "msrp_usd": 99.99, "sources": [ "https://us.arlo.com/products/arlo-essential-indoor-camera" + ], + "power_source": [ + "dc" ] }, { @@ -7539,7 +7432,8 @@ "brand": "Arlo", "model": "Pro 5S 2K Spotlight", "aliases": [ - "VMC4460P" + "VMC4460P", + "arlo-pro-5s-spotlight" ], "type": "bullet", "connectivity": [ @@ -7868,69 +7762,6 @@ "usb" ] }, - { - "id": "arlo-pro-5s-spotlight", - "brand": "Arlo", - "model": "Pro 5S 2K Spotlight", - "aliases": [ - "VMC4060P" - ], - "release_year": 2024, - "type": "dome", - "connectivity": [ - "wifi" - ], - "resolution": { - "megapixels": 4, - "max_width": 2560, - "max_height": 1440, - "label": "2K QHD" - }, - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "160 diagonal", - "night_vision": { - "type": "color", - "range_m": 7 - }, - "power": { - "method": "Rechargeable removable battery / solar panel optional / USB-C" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "2K QHD + HDR", - "integrated spotlight", - "color night vision", - "person/vehicle/animal/package detection", - "dual-band WiFi direct (no hub required)", - "Apple HomeKit / Google / Alexa", - "Arlo Secure plan for cloud" - ], - "msrp_usd": 179.99, - "sources": [ - "https://www.arlo.com/cameras/pro/arlo-pro-5.html" - ], - "power_source": [ - "battery", - "solar", - "usb" - ] - }, { "id": "arlo-pro-5s-uk", "brand": "Arlo", @@ -8186,76 +8017,13 @@ "battery" ] }, - { - "id": "arlo-ultra-2", - "brand": "Arlo", - "model": "Ultra 2 Spotlight", - "aliases": [ - "VMC5040", - "XL VMC5040B" - ], - "type": "dome", - "connectivity": [ - "wifi" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "180 diagonal", - "night_vision": { - "type": "color", - "range_m": 10 - }, - "power": { - "method": "Rechargeable removable battery / solar panel optional" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "4K UHD", - "180deg HDR", - "integrated spotlight", - "color night vision", - "auto-zoom and tracking", - "noise-cancelling two-way audio", - "Apple HomeKit / Google / Alexa", - "Arlo Secure plan for cloud storage" - ], - "release_year": 2021, - "msrp_usd": 299.99, - "sources": [ - "https://www.arlo.com/cameras/ultra/arlo-ultra-2.html" - ], - "power_source": [ - "battery", - "solar" - ] - }, { "id": "arlo-ultra-2-spotlight", "brand": "Arlo", "model": "Ultra 2 Spotlight", "aliases": [ - "Arlo Ultra 2 4K Spotlight Camera" + "Arlo Ultra 2 4K Spotlight Camera", + "arlo-ultra-2" ], "type": "dome", "connectivity": [ @@ -10700,8 +10468,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -10779,8 +10546,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -11338,7 +11104,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK08", "audio": { "microphone": true, "speaker": false, @@ -11381,11 +11146,11 @@ } }, { - "id": "axis-m3106-l-mkii", + "id": "axis-m3106-lve-mk-ii", "brand": "Axis", - "model": "M3106-L Mk II", + "model": "M3106-LVE Mk II", "aliases": [ - "0890-001" + "Axis M3106-LVE Mk II 4MP Outdoor Dome" ], "type": "dome", "connectivity": [ @@ -11397,17 +11162,17 @@ "max_height": 1520, "label": "4MP" }, - "sensor": "1/3\" Progressive Scan CMOS", + "sensor": "1/2.7\" Progressive Scan CMOS", "lens": { "count": 1, - "focal_length_mm": "3 (fixed)", + "focal_length_mm": "3-9 (motorized varifocal)", "aperture": "F1.8", - "varifocal": false + "varifocal": true }, - "field_of_view_deg": "108 horizontal", + "field_of_view_deg": "107-36 horizontal", "night_vision": { "type": "ir", - "range_m": 10 + "range_m": 30 }, "power": { "method": "PoE (802.3af)" @@ -11419,189 +11184,25 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], - "ip_rating": "IP42", + "ip_rating": "IP66", "audio": { "microphone": false, "speaker": false, "two_way": false }, "features": [ - "Lightfinder", - "HDTV 1080p at 30fps", - "ARTPEC-6 SoC", - "corridor format", - "WDR", - "indoor use", - "compact dome" + "Forensic WDR", + "OptimizedIR", + "H.265 Zipstream", + "remote zoom and focus", + "AXIS Video Motion Detection", + "IK10", + "affordable mid-range outdoor dome" ], "sources": [ - "https://www.axis.com/products/axis-m3106-l-mk-ii" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=1920x1080", - "best_substream": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=640x480" - }, - "home_assistant": { - "integration": "axis", - "notes": "Native Axis integration with auto-discovery via Zeroconf." - }, - "blue_iris": { - "profile": "Axis", - "notes": "Select 'Axis' profile. Auto-discovery via ONVIF usually works." - } - } - }, - { - "id": "axis-m3106-lve", - "brand": "Axis", - "model": "M3106-LVE Mk II", - "aliases": [ - "0890-001" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/3\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "3-9 (varifocal)", - "aperture": "F1.6", - "varifocal": true - }, - "field_of_view_deg": "100-35 horizontal", - "night_vision": { - "type": "ir", - "range_m": 15 - }, - "power": { - "method": "PoE (802.3af)" - }, - "storage": { - "onboard": true, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Lightfinder", - "HDTV 4MP", - "corridor format", - "Zipstream", - "WDR", - "IK10" - ], - "sources": [ - "https://www.axis.com/products/axis-m3106-lve-mk-ii" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=1920x1080", - "best_substream": "rtsp://{user}:{pass}@{ip}/axis-media/media.amp?resolution=640x480" - }, - "home_assistant": { - "integration": "axis", - "notes": "Native Axis integration with auto-discovery via Zeroconf." - }, - "blue_iris": { - "profile": "Axis", - "notes": "Select 'Axis' profile. Auto-discovery via ONVIF usually works." - } - } - }, - { - "id": "axis-m3106-lve-mk-ii", - "brand": "Axis", - "model": "M3106-LVE Mk II", - "aliases": [ - "Axis M3106-LVE Mk II 4MP Outdoor Dome" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/2.7\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "3-9 (motorized varifocal)", - "aperture": "F1.8", - "varifocal": true - }, - "field_of_view_deg": "107-36 horizontal", - "night_vision": { - "type": "ir", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af)" - }, - "storage": { - "onboard": true, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Forensic WDR", - "OptimizedIR", - "H.265 Zipstream", - "remote zoom and focus", - "AXIS Video Motion Detection", - "IK10", - "affordable mid-range outdoor dome" - ], - "sources": [ - "https://www.axis.com/products/axis-m3106-lve-mk-ii" + "https://www.axis.com/products/axis-m3106-lve-mk-ii" ], "power_source": [ "poe" @@ -11732,8 +11333,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -11787,7 +11387,7 @@ "megapixels": 12, "max_width": 3584, "max_height": 2688, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -11811,8 +11411,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -12230,8 +11829,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP31", "audio": { @@ -12542,8 +12140,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -12862,8 +12459,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -13030,8 +12626,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP42", "audio": { @@ -13363,8 +12958,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -13900,7 +13494,7 @@ "ethernet" ], "resolution": { - "megapixels": 8, + "megapixels": 24, "max_width": 8000, "max_height": 3000, "label": "4x2MP multisensor" @@ -14145,8 +13739,7 @@ }, "field_of_view_deg": "55-1.7h", "night_vision": { - "type": "none", - "range_m": 0 + "type": "ir" }, "power": { "method": "PoE (802.3bt)" @@ -14168,6 +13761,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Axis P5655-E 32x outdoor PTZ", "OptimizedIR", "Lightfinder 2.0", @@ -14408,8 +14002,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP42", "audio": { @@ -14568,8 +14161,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -14625,7 +14217,7 @@ "ethernet" ], "resolution": { - "megapixels": 0, + "megapixels": 0.3, "max_width": 640, "max_height": 480, "label": "640x480 thermal" @@ -14785,7 +14377,7 @@ ], "release_year": 2021, "resolution": { - "megapixels": 0, + "megapixels": 0.08, "max_width": 384, "max_height": 288, "label": "384×288 thermal" @@ -14891,8 +14483,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -14971,8 +14562,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -15533,8 +15123,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -17128,8 +16717,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -17211,8 +16799,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -17437,7 +17024,7 @@ "megapixels": 12, "max_width": 4096, "max_height": 3072, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "2/3\" Progressive Scan CMOS", "lens": { @@ -17625,8 +17212,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -17709,8 +17295,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -17791,8 +17376,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -18278,8 +17862,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP54", "audio": { @@ -18361,8 +17944,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP54", "audio": { @@ -19501,7 +19083,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -19551,7 +19134,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP67", "audio": { @@ -19602,7 +19186,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -19653,7 +19238,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -19705,7 +19291,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -19762,7 +19349,8 @@ "cloud": false }, "protocols": [ - "onvif" + "onvif", + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -20312,7 +19900,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" CMOS", "night_vision": { @@ -20501,6 +20089,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "CP Plus 4MP 25x AI PTZ India", "100m IR", "SMD Plus AI", @@ -21515,82 +21104,6 @@ } } }, - { - "id": "cp-plus-cp-z43q-2", - "brand": "CP Plus", - "model": "CP-Z43Q", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "release_year": 2022, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "60-2.5h", - "night_vision": { - "type": "ir", - "range_m": 60 - }, - "power": { - "method": "PoE (802.3at)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "CP Plus 4MP 36x PTZ India", - "60m IR", - "auto-tracking", - "H.265", - "IP66", - "popular India large premises" - ], - "sources": [ - "https://www.cpplus.in/" - ], - "lens": { - "count": 1, - "focal_length_mm": "4.7-170 (36x optical)", - "varifocal": true - }, - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Uses Dahua protocol. ONVIF integration works." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. CP Plus uses Dahua protocol." - } - } - }, { "id": "dahua-dh-sd49425xb-hnr", "brand": "Dahua", @@ -21641,6 +21154,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "WizMind 4MP 25x Starlight PTZ", "face detection", "perimeter protection", @@ -21663,7 +21177,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -21748,7 +21263,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -21760,13 +21276,140 @@ } } }, + { + "id": "dahua-dh-sdt7425-4p-ad3e-pv-i", + "brand": "Dahua", + "model": "DH-SDT7425-4P-AD3E-PV-i", + "type": "ptz", + "connectivity": [ + "ethernet" + ], + "release_year": 2022, + "status": "discontinued", + "markets": [ + "CN" + ], + "resolution": { + "megapixels": 4, + "max_width": 3840, + "max_height": 1080, + "label": "Dual: 4MP panoramic (3840x1080) + 4MP PTZ (2560x1440)" + }, + "lens": { + "count": 2, + "focal_length_mm": "panoramic: 2.8 fixed / PTZ: 4.8-120 (25x optical)", + "aperture": "F1.0 (panoramic) / F1.6-3.6 (PTZ)", + "varifocal": true + }, + "night_vision": { + "type": "hybrid", + "range_m": 150 + }, + "power": { + "method": "DC 36V/2.23A (±25%)", + "consumption_w": 35, + "voltage": "DC 36V" + }, + "storage": { + "onboard": false, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "dual-channel: 180° panoramic 4MP stitched + 4MP PTZ 25x zoom", + "starlight 0.001 lux color @F1.0", + "150m IR (PTZ) + 30m white light (panoramic)", + "auto-tracking (single-ball tracking)", + "face detection with attributes (6 attributes, 8 expressions)", + "9 IVS rules: tripwire, intrusion, loitering, parking, crowd", + "human/vehicle classification", + "active deterrence: white light strobe + 110dB speaker, 22 voice alerts", + "300 presets, 8 cruise paths", + "2 alarm in / 1 alarm out", + "8000V lightning protection", + "electronic defog", + "GB/T28181, GA/T 1400 (CN standards)", + "China market model" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "detect": { + "width": 1280, + "height": 360, + "fps": 5 + }, + "notes": "Dual-channel — configure as TWO Frigate cameras: panoramic = channel=1 (3840x1080, 32:9 — set detect to 1280x360 to match), PTZ = channel=2 (2560x1440, rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=2&subtype=0, detect 1280x720). For ONVIF autotracking on the PTZ channel add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. ONVIF PTZ confirmed working — Channel 2 profiles have both VideoEncoderConfiguration and PTZConfiguration (no split-profile issue, unlike SDT4E series). Verified in frigate#22135. Note: powered by DC 36V, not PoE." + }, + "home_assistant": { + "integration": "onvif", + "notes": "ONVIF integration works including PTZ control. Default port 80. CN firmware." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Dual-channel camera — add each channel as a separate camera." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://github.com/ch-bas/cctv-camera-database/issues/11", + "https://github.com/blakeblackshear/frigate/discussions/22135", + "https://www.jiankongqicai.com/news/64.html" + ], + "sensor": "2x 1/2.8\" CMOS (panoramic + PTZ)", + "field_of_view_deg": "180 horizontal (panoramic) / 55.8-2.4 (PTZ)", + "ip_rating": "IP66", + "operating_temp_c": "-40 to +65", + "video": { + "codecs": [ + "Smart H.265", + "H.265", + "Smart H.264", + "H.264", + "MJPEG" + ], + "max_fps": 25, + "streams": [ + { + "name": "panoramic main", + "resolution": "3840x1080", + "fps": 25, + "codec": "H.265" + }, + { + "name": "panoramic sub", + "resolution": "960x268", + "fps": 25, + "codec": "H.264" + }, + { + "name": "PTZ main", + "resolution": "2560x1440", + "fps": 25, + "codec": "H.265" + } + ] + } + }, { "id": "dahua-hac-hdw1509tq-a-led", "brand": "Dahua", "model": "HAC-HDW1509TQ-A-LED", "type": "dome", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -21786,9 +21429,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -21815,7 +21456,7 @@ "model": "HAC-HFW1509TH-A-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -21835,9 +21476,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -21864,7 +21503,7 @@ "model": "HAC-HFW2802E-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2023, "resolution": { @@ -21884,9 +21523,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -21911,7 +21548,7 @@ "model": "HAC-HFW2849E-A-NI-LED", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2023, "resolution": { @@ -21931,9 +21568,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -24751,7 +24386,8 @@ "brand": "Dahua", "model": "IPC-HDW3849H-ZAS-PV", "aliases": [ - "WizSense TiOC 8MP Varifocal Turret" + "WizSense TiOC 8MP Varifocal Turret", + "dahua-ipc-hdw3849h-zas-pv-varifocal" ], "type": "turret", "connectivity": [ @@ -24828,21 +24464,21 @@ } }, { - "id": "dahua-ipc-hdw3849h-zas-pv-varifocal", + "id": "dahua-ipc-hdw5442t-ze", "brand": "Dahua", - "model": "IPC-HDW3849H-ZAS-PV", + "model": "IPC-HDW5442T-ZE", "type": "turret", "connectivity": [ "ethernet" ], "release_year": 2023, "resolution": { - "megapixels": 8, - "label": "4K UHD" + "megapixels": 4, + "label": "4MP" }, "field_of_view_deg": "110-30h", "night_vision": { - "type": "hybrid", + "type": "ir", "range_m": 40 }, "power": { @@ -24861,16 +24497,18 @@ "ip_rating": "IP67", "audio": { "microphone": true, - "speaker": true, - "two_way": true + "speaker": false, + "two_way": false }, "features": [ - "TiOC 2.0 4K 5× varifocal eyeball", - "full-color active deterrence", - "WizSense AI", - "two-way audio", + "WizMind 5 Series 4MP varifocal eyeball", + "Deeplight", + "2.7-12mm motorized", + "40m IR", + "IVS analytics", "H.265+", - "IP67" + "IP67", + "IK10" ], "sources": [ "https://www.dahuasecurity.com/" @@ -24900,29 +24538,38 @@ } }, { - "id": "dahua-ipc-hdw5442t-ze", + "id": "dahua-ipc-hdw5442tm-ase", "brand": "Dahua", - "model": "IPC-HDW5442T-ZE", + "model": "IPC-HDW5442TM-ASE", + "aliases": [ + "WizMind 4MP AI Eyeball" + ], "type": "turret", "connectivity": [ "ethernet" ], - "release_year": 2023, "resolution": { "megapixels": 4, + "max_width": 2688, + "max_height": 1520, "label": "4MP" }, - "field_of_view_deg": "110-30h", + "sensor": "1/1.8\" Progressive Scan CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 / 3.6 (fixed options)", + "varifocal": false + }, "night_vision": { "type": "ir", - "range_m": 40 + "range_m": 50 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -24937,182 +24584,99 @@ "two_way": false }, "features": [ - "WizMind 5 Series 4MP varifocal eyeball", - "Deeplight", - "2.7-12mm motorized", - "40m IR", - "IVS analytics", + "WizMind AI face detection", + "SMD 3.0", + "video metadata", + "object detection", + "H.265+ codec", + "built-in mic", + "ePoE long-distance" + ], + "sources": [ + "https://www.sourcesecurity.com/dahua-technology-ipc-hdw5442tm-ase-ip-camera-technical-details.html" + ], + "power_source": [ + "poe", + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. Default ONVIF port 80." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Supports both main and sub streams." + } + } + }, + { + "id": "dahua-ipc-hdw5449h-ase-d2", + "brand": "Dahua", + "model": "IPC-HDW5449H-ASE-D2", + "aliases": [ + "WizMind 4MP Deep Learning Dome" + ], + "type": "dome", + "connectivity": [ + "ethernet" + ], + "release_year": 2024, + "resolution": { + "megapixels": 4, + "max_width": 2688, + "max_height": 1520, + "label": "4MP" + }, + "sensor": "1/1.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 (fixed)", + "varifocal": false + }, + "night_vision": { + "type": "hybrid", + "range_m": 30 + }, + "power": { + "method": "PoE (802.3at) / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 256, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP67", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "WizMind 4MP deep learning dome D2 gen", + "AI face detection and recognition", + "people counting", + "perimeter protection", + "smart dual illumination", + "1/1.8\" large sensor", "H.265+", "IP67", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hdw5442tm-ase", - "brand": "Dahua", - "model": "IPC-HDW5442TM-ASE", - "aliases": [ - "WizMind 4MP AI Eyeball" - ], - "type": "turret", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/1.8\" Progressive Scan CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 / 3.6 (fixed options)", - "varifocal": false - }, - "night_vision": { - "type": "ir", - "range_m": 50 - }, - "power": { - "method": "PoE / ePoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind AI face detection", - "SMD 3.0", - "video metadata", - "object detection", - "H.265+ codec", - "built-in mic", - "ePoE long-distance" - ], - "sources": [ - "https://www.sourcesecurity.com/dahua-technology-ipc-hdw5442tm-ase-ip-camera-technical-details.html" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hdw5449h-ase-d2", - "brand": "Dahua", - "model": "IPC-HDW5449H-ASE-D2", - "aliases": [ - "WizMind 4MP Deep Learning Dome" - ], - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2024, - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/1.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "varifocal": false - }, - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3at) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "WizMind 4MP deep learning dome D2 gen", - "AI face detection and recognition", - "people counting", - "perimeter protection", - "smart dual illumination", - "1/1.8\" large sensor", - "H.265+", - "IP67", - "IK10", - "alarm I/O" + "IK10", + "alarm I/O" ], "sources": [ "https://www.dahuasecurity.com/" @@ -25450,7 +25014,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Dual-lens WizMind camera — check whether second lens exposes a separate channel (channel=2)." }, "home_assistant": { "integration": "onvif", @@ -25478,7 +25043,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -27870,7 +27435,88 @@ } }, { - "id": "dahua-ipc-hfw3849e-as-led-s2-new", + "id": "dahua-ipc-hfw3849e-s-il", + "brand": "Dahua", + "model": "IPC-HFW3849E-S-IL", + "aliases": [ + "WizSense 8MP Dual-Light Fixed Bullet S5" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/2.7\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 / 3.6 (fixed)", + "varifocal": false + }, + "night_vision": { + "type": "hybrid", + "range_m": 30 + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 256, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP67", + "audio": { + "microphone": true, + "speaker": false, + "two_way": false + }, + "features": [ + "smart dual illumination", + "WizSense AI", + "H.265+", + "built-in mic", + "ePoE support", + "budget-friendly" + ], + "sources": [ + "https://www.dahuasecurity.com" + ], + "power_source": [ + "poe", + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. Default ONVIF port 80." + }, + "blue_iris": { + "profile": "Dahua", + "notes": "Select 'Dahua' profile. Supports both main and sub streams." + } + } + }, + { + "id": "dahua-ipc-hfw3849e-zas-led-s2", "brand": "Dahua", "model": "IPC-HFW3849E-ZAS-LED-S2", "type": "bullet", @@ -27951,11 +27597,12 @@ } }, { - "id": "dahua-ipc-hfw3849e-s-il", + "id": "dahua-ipc-hfw3849t-as-pv-pro-legacy", "brand": "Dahua", - "model": "IPC-HFW3849E-S-IL", + "model": "IPC-HFW3849T1-AS-PV-PRO", "aliases": [ - "WizSense 8MP Dual-Light Fixed Bullet S5" + "WizColor TiOC PRO 8MP Bullet", + "dahua-ipc-hfw3849t1-as-pv-pro" ], "type": "bullet", "connectivity": [ @@ -27967,10 +27614,11 @@ "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.7\" CMOS", + "sensor": "1/1.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8 / 3.6 (fixed)", + "focal_length_mm": "2.8 (fixed)", + "aperture": "F1.0", "varifocal": false }, "night_vision": { @@ -27982,7 +27630,7 @@ }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -27993,19 +27641,21 @@ "ip_rating": "IP67", "audio": { "microphone": true, - "speaker": false, - "two_way": false + "speaker": true, + "two_way": true }, "features": [ - "smart dual illumination", + "TiOC PRO WizColor 24/7 color", + "1/1.8\" large sensor F1.0", "WizSense AI", - "H.265+", - "built-in mic", - "ePoE support", - "budget-friendly" + "SMD 4.0", + "AcuPick", + "active deterrence red/blue lights", + "built-in dual mic & speaker", + "H.265" ], "sources": [ - "https://www.dahuasecurity.com" + "https://www.dahuasecurity.com/products/discontinued-products/network-cameras/ipc-hfw3849h-as-pv=s5" ], "power_source": [ "poe", @@ -28032,11 +27682,13 @@ } }, { - "id": "dahua-ipc-hfw3849t-as-pv-pro-legacy", + "id": "dahua-ipc-hfw3849t1-as-pv", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV-PRO", + "model": "IPC-HFW3849T1-AS-PV", "aliases": [ - "WizColor TiOC PRO 8MP Bullet" + "DH-IPC-HFW3849T1-AS-PV", + "WizSense TiOC 8MP Bullet", + "dahua-ipc-hfw3849t1-as-pv-s3" ], "type": "bullet", "connectivity": [ @@ -28048,11 +27700,10 @@ "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/1.8\" CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", - "aperture": "F1.0", "varifocal": false }, "night_vision": { @@ -28064,7 +27715,7 @@ }, "storage": { "onboard": true, - "max_microsd_gb": 512, + "max_microsd_gb": 256, "nvr_compatible": true, "cloud": false }, @@ -28079,17 +27730,17 @@ "two_way": true }, "features": [ - "TiOC PRO WizColor 24/7 color", - "1/1.8\" large sensor F1.0", + "TiOC 2.0 full-color active deterrence", "WizSense AI", + "smart dual illumination", + "human / vehicle classification", + "red & blue warning lights", + "built-in mic & speaker", "SMD 4.0", - "AcuPick", - "active deterrence red/blue lights", - "built-in dual mic & speaker", - "H.265" + "H.265 codec" ], "sources": [ - "https://www.dahuasecurity.com/products/discontinued-products/network-cameras/ipc-hfw3849h-as-pv=s5" + "https://www.dahuasecurity.com/asset/upload/uploads/cpq/prm-os-srv-res/smart/datasheetzipfiles/IPC-HFW3849T1-AS-PV-S3_datasheet_20220525.pdf" ], "power_source": [ "poe", @@ -28116,12 +27767,11 @@ } }, { - "id": "dahua-ipc-hfw3849t1-as-pv", + "id": "dahua-ipc-hfw3849t1-zas-pv", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV", + "model": "IPC-HFW3849T1-ZAS-PV", "aliases": [ - "DH-IPC-HFW3849T1-AS-PV", - "WizSense TiOC 8MP Bullet" + "WizSense TiOC 8MP Varifocal Bullet" ], "type": "bullet", "connectivity": [ @@ -28136,8 +27786,8 @@ "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8 (fixed)", - "varifocal": false + "focal_length_mm": "2.7-13.5 (motorized varifocal)", + "varifocal": true }, "night_vision": { "type": "hybrid", @@ -28163,17 +27813,15 @@ "two_way": true }, "features": [ - "TiOC 2.0 full-color active deterrence", + "TiOC full-color active deterrence", "WizSense AI", - "smart dual illumination", - "human / vehicle classification", - "red & blue warning lights", - "built-in mic & speaker", + "varifocal zoom", "SMD 4.0", - "H.265 codec" + "dual mic", + "H.265" ], "sources": [ - "https://www.dahuasecurity.com/asset/upload/uploads/cpq/prm-os-srv-res/smart/datasheetzipfiles/IPC-HFW3849T1-AS-PV-S3_datasheet_20220525.pdf" + "https://manuals.plus/ae/1005006014511706" ], "power_source": [ "poe", @@ -28200,25 +27848,34 @@ } }, { - "id": "dahua-ipc-hfw3849t1-as-pv-pro", + "id": "dahua-ipc-hfw5442e-ze", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV-PRO", + "model": "IPC-HFW5442E-ZE", + "aliases": [ + "WizMind 4MP Motorized Varifocal Bullet" + ], "type": "bullet", "connectivity": [ "ethernet" ], - "release_year": 2024, "resolution": { - "megapixels": 8, - "label": "4K UHD" + "megapixels": 4, + "max_width": 2688, + "max_height": 1520, + "label": "4MP" + }, + "sensor": "1/1.8\" Progressive Scan CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", + "varifocal": true }, - "field_of_view_deg": "107h", "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "ir", + "range_m": 60 }, "power": { - "method": "PoE/DC12V" + "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, @@ -28232,19 +27889,20 @@ ], "ip_rating": "IP67", "audio": { - "microphone": true, - "speaker": true, - "two_way": true + "microphone": false, + "speaker": false, + "two_way": false }, "features": [ - "TiOC PRO 4K bullet active deterrence enhanced", - "AI SMD 4.0", - "two-way audio", - "H.265+", - "IP67" + "WizMind AI", + "SMD 3.0", + "5x optical zoom", + "remote zoom/focus", + "H.265+ codec", + "IK10" ], "sources": [ - "https://www.dahuasecurity.com/" + "https://www.dahuasecurity.com" ], "power_source": [ "poe", @@ -28271,22 +27929,22 @@ } }, { - "id": "dahua-ipc-hfw3849t1-as-pv-s3", + "id": "dahua-ipc-hfw5442e-ze-s3", "brand": "Dahua", - "model": "IPC-HFW3849T1-AS-PV", + "model": "IPC-HFW5442E-ZE-S3", "type": "bullet", "connectivity": [ "ethernet" ], "release_year": 2023, "resolution": { - "megapixels": 8, - "label": "4K UHD" + "megapixels": 4, + "label": "4MP" }, - "field_of_view_deg": "110h", + "field_of_view_deg": "110-30h", "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "ir", + "range_m": 60 }, "power": { "method": "PoE (802.3af) / DC 12V" @@ -28304,14 +27962,17 @@ "ip_rating": "IP67", "audio": { "microphone": true, - "speaker": true, - "two_way": true + "speaker": false, + "two_way": false }, "features": [ - "TiOC 2.0 4K fixed-focal bullet", - "full-color active deterrence (red/blue + siren)", - "WizSense AI", - "two-way audio", + "WizMind 5 Series 4MP varifocal bullet", + "Deeplight 0.003lux", + "ePoE 800m", + "2.7-12mm motorized", + "60m IR", + "IVS analytics", + "H.265+", "IP67" ], "sources": [ @@ -28342,11 +28003,11 @@ } }, { - "id": "dahua-ipc-hfw3849t1-zas-pv", + "id": "dahua-ipc-hfw5842e-ze", "brand": "Dahua", - "model": "IPC-HFW3849T1-ZAS-PV", + "model": "IPC-HFW5842E-ZE", "aliases": [ - "WizSense TiOC 8MP Varifocal Bullet" + "WizMind 8MP Motorized Varifocal Bullet" ], "type": "bullet", "connectivity": [ @@ -28358,22 +28019,22 @@ "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.8\" CMOS", + "sensor": "1/1.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.7-13.5 (motorized varifocal)", + "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", "varifocal": true }, "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "ir", + "range_m": 60 }, "power": { - "method": "PoE / DC 12V" + "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -28383,20 +28044,21 @@ ], "ip_rating": "IP67", "audio": { - "microphone": true, - "speaker": true, - "two_way": true + "microphone": false, + "speaker": false, + "two_way": false }, "features": [ - "TiOC full-color active deterrence", - "WizSense AI", - "varifocal zoom", + "WizMind AI", "SMD 4.0", - "dual mic", - "H.265" + "face detection", + "5x motorized zoom", + "H.265+", + "ePoE", + "IK10" ], "sources": [ - "https://manuals.plus/ae/1005006014511706" + "https://www.dahuasecurity.com" ], "power_source": [ "poe", @@ -28423,38 +28085,38 @@ } }, { - "id": "dahua-ipc-hfw5442e-ze", + "id": "dahua-ipc-hfw5842h-z4e", "brand": "Dahua", - "model": "IPC-HFW5442E-ZE", + "model": "IPC-HFW5842H-Z4E", "aliases": [ - "WizMind 4MP Motorized Varifocal Bullet" + "WizMind 8MP Long-Range IR Bullet" ], "type": "bullet", "connectivity": [ "ethernet" ], "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" }, - "sensor": "1/1.8\" Progressive Scan CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", + "focal_length_mm": "2.8-12 (motorized varifocal)", "varifocal": true }, "night_vision": { "type": "ir", - "range_m": 60 + "range_m": 80 }, "power": { "method": "PoE / ePoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -28470,10 +28132,11 @@ }, "features": [ "WizMind AI", - "SMD 3.0", - "5x optical zoom", - "remote zoom/focus", - "H.265+ codec", + "SMD 4.0", + "80m IR range", + "motorized varifocal", + "H.265+", + "ePoE", "IK10" ], "sources": [ @@ -28504,29 +28167,38 @@ } }, { - "id": "dahua-ipc-hfw5442e-ze-s3", + "id": "dahua-ipc-hfw5842h-z4he", "brand": "Dahua", - "model": "IPC-HFW5442E-ZE-S3", + "model": "IPC-HFW5842H-Z4HE", + "aliases": [ + "WizMind 8MP 120m IR Long-Range Bullet" + ], "type": "bullet", "connectivity": [ "ethernet" ], - "release_year": 2023, "resolution": { - "megapixels": 4, - "label": "4MP" + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/1.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8-12 (motorized varifocal)", + "varifocal": true }, - "field_of_view_deg": "110-30h", "night_vision": { "type": "ir", - "range_m": 60 + "range_m": 120 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "PoE / ePoE / DC 12V / AC 24V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, @@ -28541,17 +28213,18 @@ "two_way": false }, "features": [ - "WizMind 5 Series 4MP varifocal bullet", - "Deeplight 0.003lux", - "ePoE 800m", - "2.7-12mm motorized", - "60m IR", - "IVS analytics", - "H.265+", - "IP67" + "WizMind AI", + "120m long-range IR", + "smart object detection", + "video metadata", + "face detection", + "dual mic", + "ePoE", + "IK10", + "heater option" ], "sources": [ - "https://www.dahuasecurity.com/" + "https://m.indiamart.com/proddetail/dahua-ipc-hfw5842h-z4he-8mp-ir-vari-focal-bullet-wizmind-network-camera-2853740950030.html" ], "power_source": [ "poe", @@ -28578,38 +28251,41 @@ } }, { - "id": "dahua-ipc-hfw5842e-ze", + "id": "dahua-ipc-hfw5849t-ase-led", "brand": "Dahua", - "model": "IPC-HFW5842E-ZE", + "model": "IPC-HFW5849T-ASE-LED", "aliases": [ - "WizMind 8MP Motorized Varifocal Bullet" + "WizMind 8MP Full-Color Active Deterrence Bullet" ], "type": "bullet", "connectivity": [ "ethernet" ], + "release_year": 2023, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/1.8\" CMOS", + "sensor": "1/1.2\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.7-13.5 (5x motorized varifocal)", - "varifocal": true + "focal_length_mm": "2.8 / 3.6 (fixed)", + "aperture": "F1.0", + "varifocal": false }, + "field_of_view_deg": "113 horizontal", "night_vision": { - "type": "ir", - "range_m": 60 + "type": "color", + "range_m": 30 }, "power": { - "method": "PoE / ePoE / DC 12V" + "method": "PoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 512, + "max_microsd_gb": 256, "nvr_compatible": true, "cloud": false }, @@ -28619,271 +28295,20 @@ ], "ip_rating": "IP67", "audio": { - "microphone": false, - "speaker": false, - "two_way": false + "microphone": true, + "speaker": true, + "two_way": true }, "features": [ - "WizMind AI", - "SMD 4.0", - "face detection", - "5x motorized zoom", + "WizMind 4K full-color F1.0 active deterrence bullet", + "1/1.2\" large sensor", + "dual mic + speaker", + "AcuPick face/body features search", "H.265+", - "ePoE", - "IK10" + "IP67" ], "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hfw5842h-z4e", - "brand": "Dahua", - "model": "IPC-HFW5842H-Z4E", - "aliases": [ - "WizMind 8MP Long-Range IR Bullet" - ], - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-12 (motorized varifocal)", - "varifocal": true - }, - "night_vision": { - "type": "ir", - "range_m": 80 - }, - "power": { - "method": "PoE / ePoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind AI", - "SMD 4.0", - "80m IR range", - "motorized varifocal", - "H.265+", - "ePoE", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hfw5842h-z4he", - "brand": "Dahua", - "model": "IPC-HFW5842H-Z4HE", - "aliases": [ - "WizMind 8MP 120m IR Long-Range Bullet" - ], - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/1.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-12 (motorized varifocal)", - "varifocal": true - }, - "night_vision": { - "type": "ir", - "range_m": 120 - }, - "power": { - "method": "PoE / ePoE / DC 12V / AC 24V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind AI", - "120m long-range IR", - "smart object detection", - "video metadata", - "face detection", - "dual mic", - "ePoE", - "IK10", - "heater option" - ], - "sources": [ - "https://m.indiamart.com/proddetail/dahua-ipc-hfw5842h-z4he-8mp-ir-vari-focal-bullet-wizmind-network-camera-2853740950030.html" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-ipc-hfw5849t-ase-led", - "brand": "Dahua", - "model": "IPC-HFW5849T-ASE-LED", - "aliases": [ - "WizMind 8MP Full-Color Active Deterrence Bullet" - ], - "type": "bullet", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/1.2\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 / 3.6 (fixed)", - "aperture": "F1.0", - "varifocal": false - }, - "field_of_view_deg": "113 horizontal", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "WizMind 4K full-color F1.0 active deterrence bullet", - "1/1.2\" large sensor", - "dual mic + speaker", - "AcuPick face/body features search", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.dahuasecurity.com/" + "https://www.dahuasecurity.com/" ], "power_source": [ "poe", @@ -29043,7 +28468,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Dual-lens WizMind camera — check whether second lens exposes a separate channel (channel=2)." }, "home_assistant": { "integration": "onvif", @@ -29205,7 +28631,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 360° camera — streams may be per-sensor channels (channel=1..4) or stitched depending on firmware. Verify channel layout via ONVIF before configuring." }, "home_assistant": { "integration": "onvif", @@ -29284,7 +28711,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image. Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -29369,7 +28797,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image (not 16:9). Set Frigate detect resolution to match the actual stream aspect ratio (check stream first, e.g. via VLC). Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -29455,7 +28884,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image (not 16:9). Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -29535,7 +28965,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Multi-sensor 180° stitched panoramic — main stream is one wide stitched image. Set detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -29606,7 +29037,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "Panoramic + PTZ combo — panoramic is channel=1, PTZ is channel=2 (rtsp .../realmonitor?channel=2&subtype=0). Configure as two Frigate cameras." }, "home_assistant": { "integration": "onvif", @@ -29782,7 +29214,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -29863,91 +29296,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-sd49425xb-hnr", - "brand": "Dahua", - "model": "SD49425XB-HNR 4MP 25x PTZ", - "aliases": [ - "DH-SD49425XB-HNR", - "WizSense PTZ 4MP" - ], - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 4, - "max_width": 2688, - "max_height": 1520, - "label": "4MP" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "4.9-122.5 (25x optical zoom)", - "varifocal": true - }, - "field_of_view_deg": "60.3-2.6 horizontal", - "night_vision": { - "type": "ir", - "range_m": 100 - }, - "power": { - "method": "PoE+ (802.3at) / DC 24V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "25x optical zoom", - "WizSense AI human / vehicle classification", - "SMD Plus", - "120 dB WDR", - "auto-tracking", - "patrol and preset tours", - "H.265 codec", - "IK10" - ], - "sources": [ - "https://www.dahuasecurity.com" - ], - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -29997,6 +29347,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "WizMind 4K 8MP 25x PTZ SMD 4.0", "face recognition", "auto-tracking", @@ -30025,7 +29376,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -30108,7 +29460,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -30190,86 +29543,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Dahua", - "notes": "Select 'Dahua' profile. Supports both main and sub streams." - } - } - }, - { - "id": "dahua-sd6c3432xb-hnr-active", - "brand": "Dahua", - "model": "SD6C3432XB-HNR-A-PV1-new", - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "release_year": 2024, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "60-2h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3bt)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "WizMind 4MP 32x PTZ full-color active deterrence", - "ColorVu full-color night vision", - "red/blue strobe + siren", - "face recognition", - "auto-tracking", - "H.265", - "IP66" - ], - "sources": [ - "https://www.dahuasecurity.com/" - ], - "lens": { - "count": 1, - "focal_length_mm": "6.0-192 (32x optical)", - "aperture": "F1.6", - "varifocal": true - }, - "sensor": "1/2.8\" CMOS", - "power_source": [ - "poe" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=0", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/cam/realmonitor?channel=1&subtype=1", + "notes": "ONVIF PTZ control supported (port 80). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'. Standard Dahua realmonitor URLs." }, "home_assistant": { "integration": "onvif", @@ -31060,6 +30335,9 @@ "msrp_usd": 99.99, "sources": [ "https://www.eufy.com/products/garage-cam-s330" + ], + "power_source": [ + "dc" ] }, { @@ -31509,6 +30787,10 @@ "msrp_usd": 79.99, "sources": [ "https://www.eufy.com/products/outdoor-cam-e210" + ], + "power_source": [ + "battery", + "solar" ] }, { @@ -31525,8 +30807,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { @@ -31586,8 +30866,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { @@ -31815,6 +31093,10 @@ "msrp_usd": 39.99, "sources": [ "https://www.eufy.com/products/solocam-l20" + ], + "power_source": [ + "battery", + "solar" ] }, { @@ -31874,6 +31156,10 @@ "msrp_usd": 59.99, "sources": [ "https://www.eufy.com/products/solocam-l40" + ], + "power_source": [ + "battery", + "solar" ] }, { @@ -32358,8 +31644,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 2048, - "max_height": 1080, "label": "2K" }, "lens": { @@ -36087,10 +35371,10 @@ "ethernet" ], "resolution": { - "megapixels": 3, + "megapixels": 4, "max_width": 2048, "max_height": 2048, - "label": "3MP Fisheye" + "label": "4MP Fisheye" }, "sensor": "1/2.8\" Progressive Scan CMOS", "lens": { @@ -37077,58 +36361,6 @@ "usb" ] }, - { - "id": "google-nest-cam-battery-2nd", - "brand": "Google", - "model": "Nest Cam (Battery) 2nd Gen", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2024, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "Rechargeable battery / solar optional" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 0, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Battery Gen 2 upgraded", - "1080p HDR", - "person/animal/vehicle detection", - "3hr event history free", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "battery", - "solar" - ] - }, { "id": "google-nest-cam-floodlight-wire", "brand": "Google", @@ -37180,56 +36412,6 @@ "ac-mains" ] }, - { - "id": "google-nest-cam-floodlight-wired", - "brand": "Google", - "model": "Nest Cam with Floodlight (Wired 2nd Gen)", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2024, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "color", - "range_m": 20 - }, - "power": { - "method": "Hardwired AC 120V" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Floodlight Gen 2 2000-lumen", - "1080p HDR", - "colour night vision", - "person/animal/vehicle detection", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "ac-mains" - ] - }, { "id": "google-nest-cam-indoor-1st-gen", "brand": "Google", @@ -37729,54 +36911,6 @@ "usb" ] }, - { - "id": "google-nest-cam-outdoor-wired", - "brand": "Google", - "model": "Nest Cam Outdoor (Wired)", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "DC 5V USB-C weatherproof" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Google Nest Cam Outdoor wired continuous 24/7 recording on Nest Aware Plus", - "person/animal/vehicle detection", - "Google Home / Alexa", - "IP54" - ], - "sources": [ - "https://store.google.com/" - ], - "power_source": [ - "usb" - ] - }, { "id": "google-nest-cam-ptz-indoor", "brand": "Google", @@ -38069,71 +37203,6 @@ "battery" ] }, - { - "id": "google-nest-doorbell-wired-2021", - "brand": "Google", - "model": "Nest Doorbell (Wired, 2nd Gen)", - "aliases": [ - "GA01318-US" - ], - "type": "doorbell", - "connectivity": [ - "wifi", - "ethernet" - ], - "resolution": { - "megapixels": 2, - "max_width": 1920, - "max_height": 1080, - "label": "1080p" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "varifocal": false - }, - "field_of_view_deg": "145 diagonal", - "night_vision": { - "type": "ir", - "range_m": 6 - }, - "power": { - "method": "Hardwired (8-24 VAC) – no battery" - }, - "storage": { - "onboard": false, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP54", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "HDR video", - "6x digital zoom", - "continuous 24/7 recording (Nest Aware Plus)", - "person / package / animal / vehicle detection", - "familiar face alerts", - "noise cancelling two-way audio", - "Google Home app", - "Alexa" - ], - "release_year": 2021, - "msrp_usd": 179.99, - "sources": [ - "https://store.google.com/product/nest_doorbell_wired_specs" - ], - "power_source": [ - "battery", - "ac-mains" - ] - }, { "id": "google-nest-doorbell-wired-2nd-gen", "brand": "Google", @@ -38149,8 +37218,6 @@ "release_year": 2022, "resolution": { "megapixels": 2, - "max_width": 960, - "max_height": 1280, "label": "960x1280 HD" }, "sensor": "CMOS", @@ -38217,8 +37284,6 @@ ], "resolution": { "megapixels": 2, - "max_width": 960, - "max_height": 1280, "label": "960x1280 HD" }, "lens": { @@ -38849,7 +37914,7 @@ "release_year": 2023, "resolution": { "megapixels": 20, - "max_width": 2592, + "max_width": 8000, "max_height": 1944, "label": "4x5MP (20MP total)" }, @@ -38968,6 +38033,7 @@ "two_way": true }, "features": [ + "pan/tilt/zoom", "multi-directional + PTZ combo", "5MP fixed + 2MP 40x PTZ", "AI deep-learning analytics", @@ -39849,7 +38915,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -39864,7 +38929,8 @@ "Korean-made Hanwha", "#1 Korea domestic surveillance brand", "largest market share South Korea domestic", - "ADT Caps / KT Telecop system integrator preferred" + "ADT Caps / KT Telecop system integrator preferred", + "IK10" ], "sources": [ "https://www.hanwhavision.com/en-kr/" @@ -40977,8 +40043,7 @@ }, "protocols": [ "onvif", - "rtsp", - "http" + "rtsp" ], "ip_rating": "IP66", "audio": { @@ -41314,7 +40379,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -41697,6 +40761,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Wisenet Q 4MP 32x PTZ", "100m IR", "auto-tracking", @@ -41784,6 +40849,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Wisenet 9 SoC (dual NPU)", "high-durability ruggedized housing", "AI-based noise reduction", @@ -45622,8 +44688,8 @@ }, "field_of_view_deg": "103h", "night_vision": { - "type": "none", - "range_m": 0 + "type": "ir", + "range_m": 30 }, "power": { "method": "PoE (802.3af) / DC 12V" @@ -45647,10 +44713,10 @@ "features": [ "2MP DarkFighter mini bullet", "0.002 lux ultra-low light", - "no IR", "H.265", "ONVIF/RTSP", - "IP67" + "IP67", + "EXIR 30m IR" ], "sources": [ "https://www.hikvision.com/en/products/" @@ -49004,7 +48070,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Dual-lens panoramic ColorVu — single stitched 180° stream, wider than 16:9. Set Frigate detect to match actual stream aspect ratio." }, "home_assistant": { "integration": "onvif", @@ -49621,7 +48688,7 @@ "aliases": [ "WDR Fixed Cube 8MP IP Camera" ], - "type": "covert", + "type": "turret", "connectivity": [ "ethernet" ], @@ -50395,7 +49462,7 @@ "id": "hikvision-ds-2cd2443g2-iw", "brand": "Hikvision", "model": "DS-2CD2443G2-I(W)", - "type": "covert", + "type": "box", "connectivity": [ "ethernet" ], @@ -51680,7 +50747,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — main stream is the raw circular fisheye image. Frigate detection works on the fisheye view; dewarping requires camera-side view modes (each exposed as separate stream/channel)." }, "home_assistant": { "integration": "onvif", @@ -51762,7 +50830,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — raw fisheye stream; dewarped views available as additional channels (Streaming/Channels/201 etc. depending on view mode)." }, "home_assistant": { "integration": "onvif", @@ -55218,7 +54287,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Fisheye camera — raw fisheye main stream; hardware dewarp views exposed as separate channels." }, "home_assistant": { "integration": "onvif", @@ -55246,7 +54316,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" Progressive Scan CMOS", "lens": { @@ -55303,7 +54373,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "12MP fisheye — raw fisheye main stream; hardware dewarp views exposed as separate channels." }, "home_assistant": { "integration": "onvif", @@ -55375,7 +54446,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "PanoVu 4-sensor panoramic — each sensor is a separate channel: Streaming/Channels/101, 201, 301, 401. Configure each as its own Frigate camera, or use the stitched stream if firmware provides it." }, "home_assistant": { "integration": "onvif", @@ -55465,7 +54537,7 @@ "model": "DS-2CE16D8T-IT3F", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2020, "resolution": { @@ -55485,9 +54557,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -55495,9 +54565,9 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "2MP Ultra-Low Light TurboHD analog bullet", "60m Smart IR", - "4-in-1 HDCVI/TVI/AHD/CVBS", "H.265", "IP67", "legacy analog upgrade path" @@ -55515,7 +54585,7 @@ "model": "DS-2CE16H8T-IT3F", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2020, "resolution": { @@ -55535,9 +54605,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": false, @@ -55545,6 +54613,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP Ultra-Low Light TurboHD analog bullet", "60m Smart IR", "4-in-1", @@ -55563,7 +54632,7 @@ "model": "DS-2CE16K0T-ITF", "type": "bullet", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2021, "resolution": { @@ -55583,9 +54652,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP66", "audio": { "microphone": false, @@ -55593,9 +54660,9 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP TurboHD Analog bullet", "40m IR", - "4-in-1 HDCVI/TVI/AHD/CVBS", "IP66", "budget analog surveillance" ], @@ -55612,7 +54679,7 @@ "model": "DS-2CE76K0T-ITMFS", "type": "turret", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2021, "resolution": { @@ -55632,9 +54699,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -55642,6 +54707,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP TurboHD analog turret with mic", "40m IR", "4-in-1", @@ -55661,7 +54727,7 @@ "model": "DS-2CE76K0T-LMFS", "type": "turret", "connectivity": [ - "ethernet" + "coax" ], "release_year": 2022, "resolution": { @@ -55681,9 +54747,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "hdcvi" - ], + "protocols": [], "ip_rating": "IP67", "audio": { "microphone": true, @@ -55691,6 +54755,7 @@ "two_way": false }, "features": [ + "Turbo HD (HD-TVI) analog over coax", "5MP Smart Hybrid Light TurboHD turret", "dual light (IR + warm LED)", "4-in-1", @@ -55774,7 +54839,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -55858,7 +54924,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -55942,7 +55009,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -55992,6 +55060,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 4x AcuSense Mini PTZ outdoor IP66 50m IR", "auto-tracking", "H.265+" @@ -56015,7 +55084,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56103,7 +55173,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56193,7 +55264,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56286,7 +55358,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56372,7 +55445,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56455,7 +55529,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56538,7 +55613,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56588,6 +55664,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 25x PTZ DeepinView", "100m IR", "AcuSense AI", @@ -56617,7 +55694,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56701,7 +55779,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "ONVIF PTZ control supported (port 80, enable Integration Protocol/ONVIF in camera settings and create an ONVIF user). For Frigate autotracking add 'onvif: {host, port: 80, user, password, autotracking: {enabled: true}}'." }, "home_assistant": { "integration": "onvif", @@ -56781,7 +55860,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "PT + fixed dual-unit camera — fixed lens is channel 1 (Streaming/Channels/101), PT unit is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras." }, "home_assistant": { "integration": "onvif", @@ -56831,6 +55911,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "TandemVu: bullet camera + PTZ in one unit", "4MP wide-angle overview + 4MP 25x PTZ", "ColorVu + AcuSense AI", @@ -56858,7 +55939,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "TandemVu PTZ+bullet combo — bullet is channel 1 (Streaming/Channels/101), PTZ is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras; ONVIF PTZ control on channel 2." }, "home_assistant": { "integration": "onvif", @@ -56908,6 +55990,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "TandemVu: overview + 30x PTZ", "4MP wide + 4MP 30x IR PTZ", "AcuSense AI", @@ -56934,7 +56017,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "TandemVu PTZ+bullet combo — bullet is channel 1 (Streaming/Channels/101), PTZ is channel 2 (Streaming/Channels/201). Configure as two Frigate cameras; ONVIF PTZ control on channel 2." }, "home_assistant": { "integration": "onvif", @@ -57007,79 +56091,8 @@ "fps": 5 }, "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80. Enable in Configuration > Network > Integration Protocol." - }, - "blue_iris": { - "profile": "Hikvision", - "notes": "Select 'Hikvision' profile. Use main stream for recording, sub stream for live view." - } - } - }, - { - "id": "hikvision-ds-2xs6a26g0-solar", - "brand": "Hikvision", - "model": "DS-2XS6A26G0-I/CH20S40", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2022, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "103h", - "night_vision": { - "type": "ir", - "range_m": 60 - }, - "power": { - "method": "Solar + 10400mAh battery" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Hikvision solar-powered WiFi AcuSense bullet", - "solar always-on", - "AcuSense AI", - "60m IR", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.hikvision.com/en/" - ], - "power_source": [ - "battery", - "solar" - ], - "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/101", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102" + "best_substream": "rtsp://{user}:{pass}@{ip}:554/Streaming/Channels/102", + "notes": "Solar/battery powered enterprise camera — RTSP/ONVIF fully supported, but continuous 24/7 streaming will drain the battery faster than solar recharge in low-light seasons. Use sub-stream detection at low fps and motion-triggered recording." }, "home_assistant": { "integration": "onvif", @@ -58625,6 +57638,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "HiLook 4MP 20x PTZ entry-level", "80m IR", "auto-tracking", @@ -59319,6 +58333,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 25x PTZ", "100m IR", "IVA analytics", @@ -59459,7 +58474,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": true, "speaker": false, @@ -59475,7 +58489,8 @@ "ONVIF Profile G/S/T", "pre-installed AI analytics (ready to install 3rd-party apps)", "IK10 vandal-resistant", - "#1 brand Japan enterprise surveillance market" + "#1 brand Japan enterprise surveillance market", + "IK10" ], "sources": [ "https://i-pro.com/products_and_solutions/en/surveillance/products/wv-s2236l" @@ -59735,7 +58750,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": true, "speaker": false, @@ -59749,7 +58763,8 @@ "IK10 vandal-resistant", "NDAA compliant", "IDIS Security Suite VMS integration", - "most advanced IDIS Korea flagship dome 2024" + "most advanced IDIS Korea flagship dome 2024", + "IK10" ], "sources": [ "https://idisamericas.com/en/productslist/2" @@ -59823,7 +58838,6 @@ "onvif", "rtsp" ], - "ip_rating": "IK10", "audio": { "microphone": false, "speaker": false, @@ -59837,7 +58851,8 @@ "ONVIF Profile S/T", "easy kitting — auto-discovers on IDIS NVR instantly", "Korean-made quality", - "popular Korea retail/bank/education/healthcare" + "popular Korea retail/bank/education/healthcare", + "IK10" ], "sources": [ "https://idisamericas.com/en/product/3588" @@ -60125,7 +59140,9 @@ "brand": "IMOU", "model": "Cell Go", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, @@ -60362,7 +59379,9 @@ "brand": "IMOU", "model": "Cruiser 4G", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, @@ -60538,7 +59557,9 @@ "brand": "IMOU", "model": "Go Basic 2MP", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 2, @@ -67244,6 +66265,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4K 8MP 20x PTZ premium", "80m IR auto-tracking", "LUPUS SmartVision VMS", @@ -67338,6 +66360,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "4MP 18x PTZ outdoor", "60m IR", "auto-tracking", @@ -67804,8 +66827,6 @@ ], "resolution": { "megapixels": 2, - "max_width": 1920, - "max_height": 1920, "label": "2MP Fisheye" }, "sensor": "1/2.8\" Progressive Scan CMOS", @@ -69381,7 +68402,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/1.7\" 12MP CMOS", "lens": { @@ -69694,8 +68715,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69767,8 +68786,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69837,8 +68854,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69914,8 +68929,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -69989,8 +69002,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1080, "label": "1080p HD" }, "lens": { @@ -70062,8 +69073,6 @@ ], "resolution": { "megapixels": 4, - "max_width": 1920, - "max_height": 1440, "label": "1080p+ 4:3" }, "lens": { @@ -72871,7 +71880,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -73507,7 +72516,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -73842,7 +72851,9 @@ "brand": "Reolink", "model": "Duo 2 LTE", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 16, @@ -74370,7 +73381,9 @@ "brand": "Reolink", "model": "Duo 4G", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 8, @@ -74546,88 +73559,6 @@ "usb" ] }, - { - "id": "reolink-e1-outdoor", - "brand": "Reolink", - "model": "E1 Outdoor", - "type": "ptz", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 5, - "max_width": 2560, - "max_height": 1920, - "label": "5MP Super HD" - }, - "sensor": "1/2.7\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-8", - "aperture": "F1.6" - }, - "field_of_view_deg": "90-50 horizontal", - "night_vision": { - "type": "color", - "range_m": 12 - }, - "power": { - "method": "DC 12V/1A" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "rtsp", - "onvif" - ], - "ip_rating": "IP65", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "3x optical zoom", - "355° pan / 50° tilt", - "auto-tracking", - "64 presets", - "person/vehicle/animal detection", - "spotlight color night vision", - "dual-band WiFi", - "no subscription" - ], - "msrp_usd": 110, - "sources": [ - "https://reolink.com/product/e1-outdoor/" - ], - "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, { "id": "reolink-e1-outdoor-cx", "brand": "Reolink", @@ -75495,7 +74426,9 @@ "brand": "Reolink", "model": "Go", "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2019, "resolution": { "megapixels": 2, @@ -75546,7 +74479,9 @@ "brand": "Reolink", "model": "Go PT", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2021, "resolution": { "megapixels": 4, @@ -75597,7 +74532,9 @@ "brand": "Reolink", "model": "Go PT Plus", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 4, @@ -75649,7 +74586,9 @@ "brand": "Reolink", "model": "Go PT Ultra", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 8, @@ -75702,7 +74641,7 @@ "aliases": [ "Reolink Home Hub NVR/HomeBase for WiFi cameras" ], - "type": "covert", + "type": "box", "connectivity": [ "wifi", "ethernet" @@ -75741,7 +74680,8 @@ "manages up to 8 Reolink cameras", "AI video search", "no subscription fee", - "no cloud required" + "no cloud required", + "NVR hub — not a camera" ], "msrp_usd": 69, "sources": [ @@ -75756,7 +74696,9 @@ "brand": "Reolink", "model": "Keen Ranger PT", "type": "ptz", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 4, @@ -76395,7 +75337,9 @@ "Reolink Go Plus 4G LTE Battery Camera" ], "type": "bullet", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2022, "resolution": { "megapixels": 4, @@ -76463,7 +75407,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -76559,7 +75503,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { @@ -76639,7 +75583,7 @@ "release_year": 2022, "resolution": { "megapixels": 12, - "label": "12MP" + "label": "12MP UHD" }, "field_of_view_deg": "80 horizontal", "night_vision": { @@ -76714,7 +75658,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { @@ -76795,7 +75739,7 @@ "megapixels": 12, "max_width": 4000, "max_height": 3000, - "label": "12MP" + "label": "12MP UHD" }, "sensor": "1/2.3\" CMOS", "lens": { @@ -79794,13 +78738,15 @@ } }, { - "id": "reolink-rlc-823a-ptz-4k", + "id": "reolink-rlc-823a-v2", "brand": "Reolink", - "model": "RLC-830A", - "type": "ptz", + "model": "RLC-823A v2", + "type": "bullet", "connectivity": [ - "ethernet" + "ethernet", + "wifi" ], + "release_year": 2024, "resolution": { "megapixels": 8, "max_width": 3840, @@ -79811,43 +78757,45 @@ "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", - "aperture": "F2.0", + "aperture": "F1.6", "varifocal": false }, - "field_of_view_deg": "87 horizontal", + "field_of_view_deg": "110 horizontal", "night_vision": { - "type": "hybrid", - "range_m": 30 + "type": "color", + "range_m": 25 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "PoE / DC 12V" }, "storage": { "onboard": true, - "max_microsd_gb": 256, + "max_microsd_gb": 512, "nvr_compatible": true, "cloud": false }, "protocols": [ - "onvif", - "rtsp" + "rtsp", + "onvif" ], - "ip_rating": "IP66", + "ip_rating": "IP67", "audio": { "microphone": true, "speaker": true, "two_way": true }, "features": [ - "355deg pan / 90deg tilt", - "auto-tracking", - "spotlight deters intruders at night", - "person/vehicle detection", - "no subscription" + "4K PoE+WiFi v2 upgraded sensor", + "enhanced color night vision 25m", + "active deterrence v2", + "AI detection", + "no subscription", + "RTSP/ONVIF", + "IP67" ], - "release_year": 2022, + "msrp_usd": 79, "sources": [ - "https://reolink.com/product/rlc-830a/" + "https://reolink.com/" ], "power_source": [ "poe", @@ -79874,35 +78822,35 @@ } }, { - "id": "reolink-rlc-823a-v2", + "id": "reolink-rlc-823s1", "brand": "Reolink", - "model": "RLC-823A v2", - "type": "bullet", + "model": "RLC-823S1", + "aliases": [ + "4K PTZ 5x PoE" + ], + "type": "ptz", "connectivity": [ - "ethernet", - "wifi" + "ethernet" ], - "release_year": 2024, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.7\" CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8 (fixed)", - "aperture": "F1.6", - "varifocal": false + "focal_length_mm": "2.8-13.5 (5x optical zoom)", + "varifocal": true }, - "field_of_view_deg": "110 horizontal", + "field_of_view_deg": "110-27 horizontal", "night_vision": { - "type": "color", - "range_m": 25 + "type": "hybrid", + "range_m": 30 }, "power": { - "method": "PoE / DC 12V" + "method": "PoE (802.3af) / DC 12V" }, "storage": { "onboard": true, @@ -79911,27 +78859,28 @@ "cloud": false }, "protocols": [ - "rtsp", - "onvif" + "onvif", + "rtsp" ], - "ip_rating": "IP67", + "ip_rating": "IP66", "audio": { "microphone": true, "speaker": true, "two_way": true }, "features": [ - "4K PoE+WiFi v2 upgraded sensor", - "enhanced color night vision 25m", - "active deterrence v2", - "AI detection", - "no subscription", - "RTSP/ONVIF", - "IP67" + "360deg pan / 90deg tilt", + "5x optical zoom", + "3D zoom", + "auto-tracking", + "spotlight color night vision", + "customizable patrol routes", + "person/vehicle/animal detection", + "no subscription" ], - "msrp_usd": 79, + "release_year": 2024, "sources": [ - "https://reolink.com/" + "https://reolink.com/product/rlc-823s1/" ], "power_source": [ "poe", @@ -79958,14 +78907,15 @@ } }, { - "id": "reolink-rlc-823s1", + "id": "reolink-rlc-823s1w", "brand": "Reolink", - "model": "RLC-823S1", + "model": "RLC-823S1W", "aliases": [ - "4K PTZ 5x PoE" + "4K PTZ 5x WiFi 6" ], "type": "ptz", "connectivity": [ + "wifi", "ethernet" ], "resolution": { @@ -79986,7 +78936,7 @@ "range_m": 30 }, "power": { - "method": "PoE (802.3af) / DC 12V" + "method": "DC 12V" }, "storage": { "onboard": true, @@ -80005,21 +78955,19 @@ "two_way": true }, "features": [ - "360deg pan / 90deg tilt", + "WiFi 6 (802.11ax)", "5x optical zoom", "3D zoom", + "360deg pan / 90deg tilt", "auto-tracking", "spotlight color night vision", - "customizable patrol routes", - "person/vehicle/animal detection", "no subscription" ], "release_year": 2024, "sources": [ - "https://reolink.com/product/rlc-823s1/" + "https://reolink.com/product/rlc-823s1w/" ], "power_source": [ - "poe", "dc" ], "configs": { @@ -80043,15 +78991,14 @@ } }, { - "id": "reolink-rlc-823s1w", + "id": "reolink-rlc-823s2", "brand": "Reolink", - "model": "RLC-823S1W", + "model": "RLC-823S2", "aliases": [ - "4K PTZ 5x WiFi 6" + "4K PTZ 16x Dome" ], "type": "ptz", "connectivity": [ - "wifi", "ethernet" ], "resolution": { @@ -80063,16 +79010,16 @@ "sensor": "1/2.8\" CMOS", "lens": { "count": 1, - "focal_length_mm": "2.8-13.5 (5x optical zoom)", + "focal_length_mm": "2.8-45 (16x optical zoom)", "varifocal": true }, - "field_of_view_deg": "110-27 horizontal", + "field_of_view_deg": "110-7 horizontal", "night_vision": { "type": "hybrid", "range_m": 30 }, "power": { - "method": "DC 12V" + "method": "PoE (802.3af) / DC 12V" }, "storage": { "onboard": true, @@ -80091,102 +79038,19 @@ "two_way": true }, "features": [ - "WiFi 6 (802.11ax)", - "5x optical zoom", + "16x optical zoom", "3D zoom", "360deg pan / 90deg tilt", - "auto-tracking", "spotlight color night vision", + "person/vehicle/animal detection", "no subscription" ], "release_year": 2024, "sources": [ - "https://reolink.com/product/rlc-823s1w/" + "https://reolink.com/product/rlc-823s2/" ], "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-823s2", - "brand": "Reolink", - "model": "RLC-823S2", - "aliases": [ - "4K PTZ 16x Dome" - ], - "type": "ptz", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8-45 (16x optical zoom)", - "varifocal": true - }, - "field_of_view_deg": "110-7 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "16x optical zoom", - "3D zoom", - "360deg pan / 90deg tilt", - "spotlight color night vision", - "person/vehicle/animal detection", - "no subscription" - ], - "release_year": 2024, - "sources": [ - "https://reolink.com/product/rlc-823s2/" - ], - "power_source": [ - "poe", + "poe", "dc" ], "configs": { @@ -80386,7 +79250,10 @@ "codec": "H.265" } ] - } + }, + "aliases": [ + "reolink-rlc-823a-ptz-4k" + ] }, { "id": "reolink-rlc-833a", @@ -80574,20 +79441,21 @@ } }, { - "id": "reolink-rlc-840a", + "id": "reolink-rlc-840a-v2", "brand": "Reolink", "model": "RLC-840A", "type": "turret", "connectivity": [ "ethernet" ], + "release_year": 2022, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.8\" CMOS", + "sensor": "1/2.7\" CMOS", "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", @@ -80619,13 +79487,14 @@ "two_way": true }, "features": [ + "4K spotlight turret", + "IK10 vandal-proof", "spotlight color night vision", - "IK10 vandal resistant", "person/vehicle/animal detection", - "two-way audio", + "active deterrence", "no subscription" ], - "release_year": 2023, + "msrp_usd": 44.99, "sources": [ "https://reolink.com/product/rlc-840a/" ], @@ -80651,24 +79520,27 @@ "profile": "Reolink", "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." } - } + }, + "aliases": [ + "reolink-rlc-840a" + ] }, { - "id": "reolink-rlc-840a-v2", + "id": "reolink-rlc-840wa", "brand": "Reolink", - "model": "RLC-840A", + "model": "RLC-840WA", "type": "turret", "connectivity": [ + "wifi", "ethernet" ], - "release_year": 2022, "resolution": { "megapixels": 8, "max_width": 3840, "max_height": 2160, "label": "4K UHD" }, - "sensor": "1/2.7\" CMOS", + "sensor": "1/2.8\" CMOS", "lens": { "count": 1, "focal_length_mm": "2.8 (fixed)", @@ -80680,6 +79552,161 @@ "type": "hybrid", "range_m": 30 }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 512, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP67", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "dual-band WiFi 6 (802.11ax)", + "spotlight color night vision", + "IK10 vandal resistant", + "person/vehicle/animal detection", + "no subscription" + ], + "release_year": 2024, + "sources": [ + "https://reolink.com/product/rlc-840wa/" + ], + "power_source": [ + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" + }, + "home_assistant": { + "integration": "reolink", + "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." + }, + "blue_iris": { + "profile": "Reolink", + "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." + } + } + }, + { + "id": "reolink-rlc-842a", + "brand": "Reolink", + "model": "RLC-842A", + "type": "turret", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/2.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.8 (fixed)", + "varifocal": false + }, + "field_of_view_deg": "128 horizontal", + "night_vision": { + "type": "ir", + "range_m": 30 + }, + "power": { + "method": "PoE (IEEE 802.3af) / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 512, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": false, + "speaker": false, + "two_way": false + }, + "features": [ + "IK10 vandal resistant", + "person/vehicle/animal detection", + "no subscription required" + ], + "release_year": 2021, + "sources": [ + "https://reolink.com/product/rlc-842a/" + ], + "power_source": [ + "poe", + "dc" + ], + "configs": { + "frigate": { + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", + "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" + }, + "home_assistant": { + "integration": "reolink", + "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." + }, + "blue_iris": { + "profile": "Reolink", + "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." + } + } + }, + { + "id": "reolink-rlc-843a", + "brand": "Reolink", + "model": "RLC-843A", + "type": "dome", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "sensor": "1/2.8\" CMOS", + "lens": { + "count": 1, + "focal_length_mm": "2.7-13.5 (5x motorized)", + "varifocal": true + }, + "field_of_view_deg": "110-27 horizontal", + "night_vision": { + "type": "hybrid", + "range_m": 30 + }, "power": { "method": "PoE (802.3af) / DC 12V" }, @@ -80700,253 +79727,16 @@ "two_way": true }, "features": [ - "4K spotlight turret", - "IK10 vandal-proof", + "5x optical zoom", + "IK10 vandal resistant", "spotlight color night vision", "person/vehicle/animal detection", - "active deterrence", + "two-way audio", "no subscription" ], - "msrp_usd": 44.99, + "release_year": 2023, "sources": [ - "https://reolink.com/product/rlc-840a/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-840wa", - "brand": "Reolink", - "model": "RLC-840WA", - "type": "turret", - "connectivity": [ - "wifi", - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "aperture": "F2.0", - "varifocal": false - }, - "field_of_view_deg": "125 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "dual-band WiFi 6 (802.11ax)", - "spotlight color night vision", - "IK10 vandal resistant", - "person/vehicle/animal detection", - "no subscription" - ], - "release_year": 2024, - "sources": [ - "https://reolink.com/product/rlc-840wa/" - ], - "power_source": [ - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-842a", - "brand": "Reolink", - "model": "RLC-842A", - "type": "turret", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.8 (fixed)", - "varifocal": false - }, - "field_of_view_deg": "128 horizontal", - "night_vision": { - "type": "ir", - "range_m": 30 - }, - "power": { - "method": "PoE (IEEE 802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "IK10 vandal resistant", - "person/vehicle/animal detection", - "no subscription required" - ], - "release_year": 2021, - "sources": [ - "https://reolink.com/product/rlc-842a/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_main", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/h264Preview_01_sub" - }, - "home_assistant": { - "integration": "reolink", - "notes": "Native Reolink integration auto-discovers via ONVIF on port 8000." - }, - "blue_iris": { - "profile": "Reolink", - "notes": "Select 'Reolink' profile. If not listed, use Generic/ONVIF with RTSP path /h264Preview_01_main." - } - } - }, - { - "id": "reolink-rlc-843a", - "brand": "Reolink", - "model": "RLC-843A", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "resolution": { - "megapixels": 8, - "max_width": 3840, - "max_height": 2160, - "label": "4K UHD" - }, - "sensor": "1/2.8\" CMOS", - "lens": { - "count": 1, - "focal_length_mm": "2.7-13.5 (5x motorized)", - "varifocal": true - }, - "field_of_view_deg": "110-27 horizontal", - "night_vision": { - "type": "hybrid", - "range_m": 30 - }, - "power": { - "method": "PoE (802.3af) / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 512, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "5x optical zoom", - "IK10 vandal resistant", - "spotlight color night vision", - "person/vehicle/animal detection", - "two-way audio", - "no subscription" - ], - "release_year": 2023, - "sources": [ - "https://reolink.com/product/rlc-843a/" + "https://reolink.com/product/rlc-843a/" ], "power_source": [ "poe", @@ -81223,7 +80013,9 @@ "brand": "Reolink", "model": "TrackMix LTE", "type": "dual-lens", - "connectivity": [], + "connectivity": [ + "4g" + ], "release_year": 2023, "resolution": { "megapixels": 8, @@ -82165,6 +80957,9 @@ "msrp_usd": 59.99, "sources": [ "https://ring.com/products/indoor-cam" + ], + "power_source": [ + "dc" ] }, { @@ -82346,6 +81141,9 @@ "msrp_usd": 79.99, "sources": [ "https://ring.com/products/outdoor-cam" + ], + "power_source": [ + "dc" ] }, { @@ -82715,6 +81513,9 @@ "msrp_usd": 179.99, "sources": [ "https://ring.com/products/spotlight-cam-plus-plug-in" + ], + "power_source": [ + "ac-mains" ] }, { @@ -83027,6 +81828,9 @@ "msrp_usd": 99.99, "sources": [ "https://ring.com/products/stick-up-cam-plug-in" + ], + "power_source": [ + "dc" ] }, { @@ -84027,62 +82831,6 @@ "usb" ] }, - { - "id": "somfy-indoor-cam", - "brand": "Somfy", - "model": "Indoor Camera", - "type": "dome", - "connectivity": [ - "wifi" - ], - "release_year": 2020, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 5 - }, - "power": { - "method": "DC 5V USB" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 32, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP20", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Somfy Indoor Camera 1080p WiFi", - "person/motion detection", - "Somfy TaHoma integration", - "Alexa / Google", - "GDPR EU cloud" - ], - "sources": [ - "https://www.somfy.fr/" - ], - "markets": [ - "FR", - "DE", - "EU" - ], - "msrp_eur": 149, - "power_source": [ - "usb" - ] - }, { "id": "somfy-indoor-camera", "brand": "Somfy", @@ -84096,10 +82844,10 @@ ], "release_year": 2020, "markets": [ - "FR", "DE", "ES", - "EU" + "EU", + "FR" ], "resolution": { "megapixels": 2, @@ -84217,63 +82965,6 @@ "usb" ] }, - { - "id": "somfy-outdoor-cam", - "brand": "Somfy", - "model": "Outdoor Camera", - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2021, - "resolution": { - "megapixels": 2, - "label": "1080p HD" - }, - "field_of_view_deg": "130h", - "night_vision": { - "type": "ir", - "range_m": 15 - }, - "power": { - "method": "DC 12V hardwired" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 32, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "http" - ], - "ip_rating": "IP55", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "Somfy Outdoor Camera 1080p WiFi", - "person/vehicle/animal detection", - "Somfy TaHoma integration", - "Alexa / Google", - "GDPR EU cloud", - "IP55" - ], - "sources": [ - "https://www.somfy.fr/" - ], - "markets": [ - "FR", - "DE", - "EU" - ], - "msrp_eur": 189, - "power_source": [ - "dc" - ] - }, { "id": "somfy-outdoor-camera", "brand": "Somfy", @@ -84288,10 +82979,10 @@ ], "release_year": 2021, "markets": [ - "FR", "DE", "ES", - "EU" + "EU", + "FR" ], "resolution": { "megapixels": 2, @@ -85505,6 +84196,918 @@ } } }, + { + "id": "sv3c-b04poe", + "brand": "SV3C", + "model": "SV-B04POE", + "aliases": [ + "SV3C 4MP PoE Bullet H.265" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 4, + "max_width": 2560, + "max_height": 1440, + "label": "2K QHD" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": false, + "speaker": false, + "two_way": false + }, + "video": { + "codecs": [ + "H.265" + ] + }, + "features": [ + "4MP Super HD 2560x1440", + "H.265 compression", + "IR night vision", + "motion detection", + "IP66", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. H.265 main stream. No ONVIF. No audio." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/Upgraded-SV3C-IP-POE-Camera-Security-Outdoor-4-Megapixels-Super-HD-2560x1440-H-265-Waterproof-Video-Camera-IR-Night-Vision-Motion-Detection-Wired-p1743568.html" + ] + }, + { + "id": "sv3c-b05poe", + "brand": "SV3C", + "model": "SV-B05POE", + "aliases": [ + "SV3C 5MP PoE Bullet" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "5MP", + "humanoid detection", + "IP66", + "RTSP", + "browser view" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-POE-IP-Camera-5-Megapixels-Security-Camera-Outdoor-with-2-Way-Audio-Humanoid-Detection-IP66-Waterproof-Power-Over-Ethernet-Cameras-Support-Max-128G-SD-Card-Record-Browser-View-No-WiFi-p2437989.html" + ] + }, + { + "id": "sv3c-b05w", + "brand": "SV3C", + "model": "SV-B05W / SV-B08W", + "aliases": [ + "SV3C 5MP WiFi Bullet", + "SV3C 8MP WiFi Bullet" + ], + "type": "bullet", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp", + "onvif" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "5MP/8MP variants", + "ONVIF", + "RTSP", + "motion detection", + "IP66", + "two-way audio" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. This is the original SV3C model — one of the few that supports ONVIF. Known for inconsistent firmware; RTSP may break after updates." + }, + "home_assistant": { + "integration": "onvif", + "notes": "Use ONVIF integration. One of the few SV3C models with ONVIF support. Firmware updates may break ONVIF — pin your firmware version." + }, + "blue_iris": { + "profile": "Generic/ONVIF", + "notes": "Use Generic/ONVIF. Also works with Generic/RTSP at /stream0 and /stream1." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/5MP-8MP-Outdoor-Security-Camera-SV3C-WiFi-Wireless-5-8-Megapixels-HD-Night-Vision-Surveillance-Cameras-2-Way-Audio-IP-Camera-Motion-Detection-CCTV-Weatherproof-Outside-Camera-Support-Max-128GB-SD-Card-p395185.html" + ] + }, + { + "id": "sv3c-b08poe", + "brand": "SV3C", + "model": "SV-B08POE", + "aliases": [ + "SV3C 4K PoE Bullet" + ], + "type": "bullet", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "field_of_view_deg": "120 horizontal", + "night_vision": { + "type": "hybrid" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 256, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "4K@20fps", + "human/vehicle detection", + "color night vision", + "RTSP", + "metal shell" + ], + "video": { + "codecs": [ + "H.264" + ], + "max_fps": 20, + "streams": [ + { + "name": "main", + "resolution": "3840x2160", + "fps": 20, + "codec": "H.264" + }, + { + "name": "sub", + "resolution": "unknown", + "fps": 20, + "codec": "H.264" + } + ] + }, + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user is 'admin'. RTSP paths are /stream0 (main) and /stream1 (sub). No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1. Default user 'admin'." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-POE-IP-Camera-Outdoor-8MP-POE-Security-Camera-with-Smart-Motion-Detection-IR-Color-Night-Vision-120-Wide-Angle-2-Way-Audio-Metal-Shell-RTSP-SD-Card-Record-Wired-p2471515.html" + ] + }, + { + "id": "sv3c-c12", + "brand": "SV3C", + "model": "C12", + "aliases": [ + "SV3C PTZ WiFi 15X Optical Zoom", + "SV3C 5MP WiFi PTZ Floodlight" + ], + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "lens": { + "count": 1, + "focal_length_mm": "15x optical zoom", + "varifocal": true + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V", + "consumption_w": 12 + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "15x optical zoom", + "auto-tracking", + "floodlight color night vision (12 IR LEDs)", + "two-way audio", + "metal dome shell", + "RTSP/FTP", + "Blue Iris compatible", + "dual stream (2 channels)" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. RTSP /stream0 (main) /stream1 (sub). No ONVIF — PTZ control via app/web UI only." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Manufacturer lists Blue Iris compatibility. Use Generic/RTSP at /stream0. No ONVIF PTZ control." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.amazon.de/SV3C-%C3%9Cberwachungskamera-Optischer-Flutlicht-Nachtsicht/dp/B0BDFF5VMC", + "https://www.sv3c.com/SV3C-PTZ-WiFi-Security-Camera-Outdoor-15X-Optical-Zoom-Auto-Tracking-5MP-8MP-Floodlight-Color-Night-Vision-Wireless-IP-Cam-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-p2032033.html" + ] + }, + { + "id": "sv3c-c25", + "brand": "SV3C", + "model": "C25", + "type": "ptz", + "connectivity": [ + "wifi", + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": true + }, + "protocols": [ + "onvif", + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "36x hybrid zoom (18x optical + 18x digital)", + "350° pan / 93° tilt", + "auto-tracking", + "people/vehicle/pet detection", + "color night vision (9 IR LEDs)", + "two-way audio", + "ONVIF/RTSP/FTP", + "2.4/5GHz WiFi + Ethernet", + "cloud + microSD storage" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. ONVIF supported on this model (unlike most SV3C). PTZ control via ONVIF possible." + }, + "blue_iris": { + "profile": "Generic/ONVIF", + "notes": "Use Generic/ONVIF. PTZ control supported via ONVIF." + }, + "home_assistant": { + "integration": "onvif", + "notes": "ONVIF integration works — one of the few SV3C models with ONVIF. PTZ controls exposed via ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-8MP-PTZ-Camera-Outdoor-Update-2-4-5-GHZ-WiFi-Security-IP-Cameras-Support-36X-Zoom-RTSP-PC-Web-Browser-Viewing-Humanoid-Detect-FTP-IP66-Waterproof-2-way-Audio-SD-Card-Record-p2300200.html", + "https://www.amazon.de/SV3C-%C3%BCberwachungskamera-Haustiererkennung-Auto-Tracking-Farbnachtsicht/dp/B0CXPSKK2R" + ], + "aliases": [ + "SV3C 4K 36X Zoom PTZ", + "SV3C 8MP PTZ WiFi 36X" + ], + "sensor": "IMX415 CMOS", + "lens": { + "count": 1, + "focal_length_mm": "18x optical zoom (36x hybrid)", + "varifocal": true + }, + "video": { + "codecs": [ + "H.265" + ], + "max_fps": 15, + "streams": [ + { + "name": "main", + "resolution": "3840x2160", + "fps": 15, + "codec": "H.265" + } + ] + } + }, + { + "id": "sv3c-d08poe", + "brand": "SV3C", + "model": "SV-D08POE", + "aliases": [ + "SV3C 4K PoE Dome" + ], + "type": "dome", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 8, + "max_width": 3840, + "max_height": 2160, + "label": "4K UHD" + }, + "field_of_view_deg": "120 horizontal", + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 512, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "4K 8MP", + "human/vehicle detection", + "color night vision", + "RTSP", + "24/7 recording" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. RTSP /stream0 (main) /stream1 (sub). No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-POE-Camera-Outdoor-IP-Dome-Wired-Security-Indoor-Camera-with-Human-Vehicle-Detection-8MP-HD-Color-Night-Vision-Two-Way-Audio-Waterproof-24-7-Recording-RTSP-Up-to-512GB-SD-Card-p2471510.html" + ] + }, + { + "id": "sv3c-ptz-1080p-wifi-4x", + "brand": "SV3C", + "model": "SV3C 1080P WiFi PTZ 4X", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 2, + "max_width": 1920, + "max_height": 1080, + "label": "1080p FHD" + }, + "night_vision": { + "type": "ir" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "1080P WiFi PTZ", + "4x digital zoom", + "AI human detection", + "RTSP", + "CamHi app" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 640, + "height": 480, + "fps": 5 + }, + "notes": "Default user 'admin'. Budget 1080P PTZ. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/1080P-Wifi-Surveillance-Camera-SV3C-Wireless-Home-Security-PTZ-Camera-IP-CCTV-4X-Digital-ZOOM-AI-Human-Detect-CamHi-p2058778.html" + ] + }, + { + "id": "sv3c-ptz-4k-dual-network", + "brand": "SV3C", + "model": "SV3C 4K PTZ PoE+WiFi Dual Network", + "type": "ptz", + "connectivity": [ + "ethernet", + "wifi" + ], + "resolution": { + "megapixels": 8, + "label": "4K UHD" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "pan/tilt/zoom", + "4K 8MP", + "dual network (PoE + WiFi)", + "auto-tracking", + "human/vehicle detection", + "color night vision", + "RTSP", + "24/7 recording", + "CamHiPro app" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. Supports both PoE and WiFi simultaneously. No ONVIF." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Use Generic/RTSP. Main: /stream0, Sub: /stream1." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-4K-PTZ-POE-Wired-WiFi-Security-Camera-Outdoor-Dual-Network-Support-Auto-Tracking-Security-Cam-Color-Night-Vision-Human-Vehicle-Detection-2-Way-Audio-Waterproof-24-7-Record-CamHiPro-p2707179.html" + ] + }, + { + "id": "sv3c-ptz-5mp-wifi-5x", + "brand": "SV3C", + "model": "SV3C 5MP WiFi PTZ 5X Spotlight", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 128, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "ip_rating": "IP66", + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "5MP WiFi PTZ", + "5x optical zoom", + "auto-tracking", + "spotlight color night vision", + "IP66", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/New-Auto-Track-PTZ-WiFi-Camera-Outdoor-Wireless-5MP-5X-Zoom-Spotlight-Color-Night-Vision-Camera-IP66-Waterproof-Playback-p1737238.html" + ] + }, + { + "id": "sv3c-ptz-poe-15x", + "brand": "SV3C", + "model": "SV3C 5MP/8MP PoE PTZ 15X", + "type": "ptz", + "connectivity": [ + "ethernet" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "PoE / DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": true, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "15x optical zoom", + "auto-tracking", + "floodlight color night vision", + "RTSP", + "FTP", + "Blue Iris compatible", + "metal shell" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. No ONVIF. Blue Iris compatible per manufacturer." + }, + "blue_iris": { + "profile": "Generic/RTSP", + "notes": "Manufacturer explicitly lists Blue Iris compatibility. Use Generic/RTSP at /stream0." + } + }, + "power_source": [ + "poe", + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-8MP-POE-PTZ-Security-Camera-Outdoor-15X-Optical-Zoom-5MP-4k-Auto-Tracking-Floodlight-Color-Night-Vision-IP-Camera-2-Way-Audio-Metal-Shell-RTSP-FTP-SD-Card-Record-BlueIris-Wired-p2302126.html" + ] + }, + { + "id": "sv3c-ptz-wifi-track", + "brand": "SV3C", + "model": "SV3C 5MP/8MP WiFi PTZ Motion Track", + "type": "ptz", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 5, + "label": "5MP" + }, + "night_vision": { + "type": "color" + }, + "power": { + "method": "DC 12V" + }, + "storage": { + "onboard": true, + "nvr_compatible": false, + "cloud": false + }, + "protocols": [ + "rtsp" + ], + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "video": { + "codecs": [ + "H.265", + "H.264" + ] + }, + "features": [ + "pan/tilt/zoom", + "5MP/8MP variants", + "H.265+H.264", + "motion tracking", + "spotlight full-color night vision", + "metal shell", + "RTSP" + ], + "configs": { + "frigate": { + "rtsp_url_template": "rtsp://admin:{pass}@{ip}/stream0", + "best_substream": "rtsp://admin:{pass}@{ip}/stream1", + "detect": { + "width": 1280, + "height": 720, + "fps": 5 + }, + "notes": "Default user 'admin'. H.265 main stream available. No ONVIF." + } + }, + "power_source": [ + "dc" + ], + "sources": [ + "https://www.sv3c.com/SV3C-5MP-8MP-WiFi-IP-Camera-Outdoor-Metal-Motion-Track-PTZ-Security-Surveillance-Camera-Spotlight-Full-Color-Night-Vision-IP-Camera-p2010092.html" + ] + }, + { + "id": "sv3c-solar-dual-lens-2k", + "brand": "SV3C", + "model": "SV3C 2K Solar Dual-Lens Kit", + "type": "dual-lens", + "connectivity": [ + "wifi" + ], + "resolution": { + "megapixels": 4, + "label": "2K QHD" + }, + "field_of_view_deg": "106 wide / 46 tele", + "night_vision": { + "type": "color" + }, + "power": { + "method": "Solar panel / rechargeable battery" + }, + "storage": { + "onboard": true, + "max_microsd_gb": 64, + "nvr_compatible": false, + "cloud": false + }, + "audio": { + "microphone": true, + "speaker": true, + "two_way": true + }, + "features": [ + "2K dual-lens", + "solar powered", + "360° pan/tilt", + "auto-tracking", + "color night vision", + "no subscription", + "4-camera kit" + ], + "power_source": [ + "battery", + "solar" + ], + "sources": [ + "https://www.sv3c.com/SV3C-Security-Cameras-Wireless-Outdoor-2K-Dual-Lens-Camera-for-Home-Security-with-Solar-Powered-No-Subscription-Fees-360-Pan-Tilt-Auto-Tracking-Color-Night-Vision-2-Way-Audio-4-Camera-Kit-p2708922.html" + ] + }, { "id": "swann-4k-bullet", "brand": "Swann", @@ -87818,7 +87421,7 @@ "ethernet" ], "resolution": { - "megapixels": 2, + "megapixels": 3.7, "max_width": 2560, "max_height": 1440, "label": "2K QHD" @@ -92602,95 +92205,13 @@ } } }, - { - "id": "tapo-tc82", - "brand": "Tapo", - "model": "TC82", - "aliases": [ - "Smart Outdoor Camera with Floodlight" - ], - "type": "bullet", - "connectivity": [ - "wifi" - ], - "release_year": 2023, - "resolution": { - "megapixels": 4, - "max_width": 2560, - "max_height": 1440, - "label": "2K QHD" - }, - "lens": { - "count": 1, - "focal_length_mm": "2.8mm", - "aperture": "F1.6", - "varifocal": false - }, - "field_of_view_deg": "116 horizontal", - "night_vision": { - "type": "color", - "range_m": 15 - }, - "power": { - "method": "Hardwired (AC)" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": false, - "cloud": true - }, - "protocols": [ - "rtsp" - ], - "ip_rating": "IP66", - "audio": { - "microphone": true, - "speaker": true, - "two_way": true - }, - "features": [ - "2K floodlight security camera", - "3000-lumen floodlight", - "AI person/pet/vehicle detection", - "color night vision", - "IP66", - "built-in siren", - "activity zones", - "no subscription" - ], - "sources": [ - "https://www.tapo.com/" - ], - "power_source": [ - "ac-mains" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/stream1", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/stream2" - }, - "home_assistant": { - "integration": "tapo", - "notes": "Native TP-Link Tapo integration. Requires Tapo cloud account credentials." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP streams: /stream1 (main), /stream2 (sub). Must enable ONVIF in Tapo app." - } - } - }, { "id": "tapo-tc82-global", "brand": "Tapo", "model": "TC82", "aliases": [ - "TP-Link Tapo TC82 2K Floodlight Camera" + "TP-Link Tapo TC82 2K Floodlight Camera", + "tapo-tc82" ], "type": "bullet", "connectivity": [ @@ -96478,8 +95999,8 @@ "configs": { "frigate": { "detect": { - "width": 1280, - "height": 720, + "width": 720, + "height": 1280, "fps": 5 }, "rtsp_url_template": "rtsps://{ip}:7441/{camera_id}?enableSrtp" @@ -96559,8 +96080,8 @@ "configs": { "frigate": { "detect": { - "width": 1280, - "height": 720, + "width": 720, + "height": 1280, "fps": 5 }, "rtsp_url_template": "rtsps://{ip}:7441/{camera_id}?enableSrtp" @@ -97529,78 +97050,6 @@ } } }, - { - "id": "uniview-ipc2224se-df40k-wl", - "brand": "Uniview", - "model": "IPC2224SE-DF40K-WL-I0", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2022, - "resolution": { - "megapixels": 4, - "label": "4MP" - }, - "field_of_view_deg": "90h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Uniview 4MP LightHunter full-color dome", - "warm LED color night vision", - "NDAA", - "H.265+", - "IP67", - "IK10" - ], - "sources": [ - "https://www.uniview.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s0/live", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s1/live" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP paths: /unicast/c1/s0/live (main), /unicast/c1/s1/live (sub)." - } - } - }, { "id": "uniview-ipc2224se-df40k-wl-i0", "brand": "Uniview", @@ -97684,78 +97133,6 @@ } } }, - { - "id": "uniview-ipc2228se-df40k-wl", - "brand": "Uniview", - "model": "IPC2228SE-DF40K-WL-I0", - "type": "dome", - "connectivity": [ - "ethernet" - ], - "release_year": 2023, - "resolution": { - "megapixels": 8, - "label": "4K UHD" - }, - "field_of_view_deg": "107h", - "night_vision": { - "type": "color", - "range_m": 30 - }, - "power": { - "method": "PoE / DC 12V" - }, - "storage": { - "onboard": true, - "max_microsd_gb": 256, - "nvr_compatible": true, - "cloud": false - }, - "protocols": [ - "onvif", - "rtsp" - ], - "ip_rating": "IP67", - "audio": { - "microphone": false, - "speaker": false, - "two_way": false - }, - "features": [ - "Uniview 4K LightHunter full-color dome", - "warm LED color night vision", - "AI human/vehicle", - "NDAA", - "H.265+", - "IP67" - ], - "sources": [ - "https://www.uniview.com/" - ], - "power_source": [ - "poe", - "dc" - ], - "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s0/live", - "best_substream": "rtsp://{user}:{pass}@{ip}:554/unicast/c1/s1/live" - }, - "home_assistant": { - "integration": "onvif", - "notes": "Use ONVIF integration. Default ONVIF port 80." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. RTSP paths: /unicast/c1/s0/live (main), /unicast/c1/s1/live (sub)." - } - } - }, { "id": "uniview-ipc2228se-df40k-wl-i0", "brand": "Uniview", @@ -100174,6 +99551,7 @@ "two_way": false }, "features": [ + "pan/tilt/zoom", "Vivotek 4MP 32x outdoor PTZ", "100m IR", "Smart VCA AI", @@ -100250,7 +99628,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100275,21 +99654,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge (https://github.com/mrlt8/docker-wyze-bridge) for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } }, @@ -100572,7 +99939,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100586,8 +99954,7 @@ "AI person/vehicle/animal/package", "no subscription", "solar optional", - "Alexa / Google", - "RTSP" + "Alexa / Google" ], "msrp_usd": 59, "sources": [ @@ -100598,21 +99965,9 @@ "solar" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } }, @@ -100656,7 +100011,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100682,21 +100038,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy. Not compatible with Frigate or Blue Iris without the bridge." } } }, @@ -100740,7 +100084,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -100765,21 +100110,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No native RTSP. Use docker-wyze-bridge for local RTSP proxy. Pan/tilt control available via bridge." } } }, @@ -100906,7 +100239,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "audio": { "microphone": true, @@ -100918,8 +100252,7 @@ "14-day free cloud storage", "person detection", "continuous recording (microSD)", - "Alexa / Google Home", - "RTSP firmware available" + "Alexa / Google Home" ], "msrp_usd": 26, "sources": [ @@ -100929,21 +100262,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "Legacy RTSP firmware was available but is discontinued. Use docker-wyze-bridge for local RTSP proxy." } } }, @@ -101237,7 +100558,8 @@ "cloud": true }, "protocols": [ - "rtsp" + "http", + "p2p" ], "ip_rating": "IP65", "audio": { @@ -101262,21 +100584,9 @@ "ac-mains" ], "configs": { - "frigate": { - "detect": { - "width": 1280, - "height": 720, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}/live" - }, "home_assistant": { "integration": "wyze", - "notes": "Use wyze_bridge HACS integration for RTSP. Official Wyze firmware does not support RTSP; flash wz_mini_hacks or use Docker bridge." - }, - "blue_iris": { - "profile": "Generic/RTSP", - "notes": "Use Generic/RTSP profile. Requires wz_mini_hacks firmware or wyze-bridge Docker container for RTSP." + "notes": "No official RTSP. Use docker-wyze-bridge for local RTSP proxy." } } }, @@ -101530,9 +100840,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP65", "audio": { "microphone": true, @@ -101558,21 +100866,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Yale cameras are primarily cloud-based (Yale Home app). RTSP support is unconfirmed. Check camera settings for ONVIF/RTSP options." } } }, @@ -101737,9 +101033,7 @@ "nvr_compatible": false, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -101764,21 +101058,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Yale cameras are primarily cloud-based (Yale Home app). RTSP support is unconfirmed." } } }, @@ -101921,9 +101203,7 @@ "nvr_compatible": false, "cloud": true }, - "protocols": [ - "rtsp" - ], + "protocols": [], "ip_rating": "IP20", "audio": { "microphone": true, @@ -101947,21 +101227,9 @@ "usb" ], "configs": { - "frigate": { - "detect": { - "width": 640, - "height": 480, - "fps": 5 - }, - "rtsp_url_template": "rtsp://{user}:{pass}@{ip}:554/live/ch00_0" - }, "home_assistant": { "integration": "onvif", - "notes": "Limited RTSP support. Some models require Yale app." - }, - "blue_iris": { - "profile": "Generic/ONVIF", - "notes": "Use Generic/ONVIF profile. Limited RTSP support on some models." + "notes": "Older Yale model. RTSP support is unconfirmed. May be cloud-only via Yale Home app." } } }, @@ -102124,10 +101392,7 @@ "nvr_compatible": true, "cloud": false }, - "protocols": [ - "onvif", - "rtsp" - ], + "protocols": [], "ip_rating": "IP66", "audio": { "microphone": false, @@ -102137,7 +101402,6 @@ "features": [ "Zebronics 4MP PoE outdoor bullet India", "30m IR", - "ONVIF/RTSP", "IP66", "₹3,499" ], @@ -102149,7 +101413,6 @@ ], "msrp_inr": 3499, "power_source": [ - "poe", "dc" ] }, diff --git a/package.json b/package.json index bb51e43d..15348212 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cctv-camera-database", - "version": "1.4.0", + "version": "1.5.0", "description": "An open, structured database of CCTV / IP camera specifications.", "scripts": { "build": "node scripts/build.js && node scripts/gen-docs.js",