Add Frigate config merging and camera database updates
- Refactor Frigate generator to support adding cameras to existing configs - Add text-based YAML parsing to preserve formatting and comments - Implement duplicate camera/stream name detection and auto-numbering - Add support for inserting cameras into existing go2rtc and cameras sections - Update UI: add textarea for existing config input and generate button - Preserve user's existing configuration when adding new cameras - Add example config template for new users - Update ConfigPanel to initialize Frigate tab instead of auto-generating - Add FrigateGenerator import to main.js - Add custom styles for Frigate config input and output sections - Support both empty config (create from scratch) and existing config (merge) modes Camera database updates: - Add OpenIPC firmware camera support (257 models) - Add Yi-Hack firmware variants (v4, v5, Allwinner, MStar) - Add Fang-Hacks firmware support - Add OpenMiko firmware support - Update Sonoff camera models - Update Thingino firmware camera models
This commit is contained in:
+146
-3
@@ -1,8 +1,9 @@
|
||||
{
|
||||
"brand": "Thingino",
|
||||
"brand_id": "thingino",
|
||||
"last_updated": "2025-10-17",
|
||||
"source": "ispyconnect.com",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "ispyconnect.com, thingino.com",
|
||||
"website": "https://github.com/themactep/thingino-firmware",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
@@ -13,6 +14,148 @@
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T31",
|
||||
"T31",
|
||||
"T31X",
|
||||
"T31ZX",
|
||||
"T31A",
|
||||
"Generic T31"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0",
|
||||
"notes": "Main stream 1080p - Ingenic T31 series SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T31",
|
||||
"T31",
|
||||
"T31X",
|
||||
"T31ZX",
|
||||
"T31A",
|
||||
"Generic T31"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch1",
|
||||
"notes": "Sub stream 360p - Ingenic T31 series SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T20",
|
||||
"T20",
|
||||
"T20X",
|
||||
"T20L",
|
||||
"Generic T20"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0",
|
||||
"notes": "Main stream 1080p - Ingenic T20 series SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T20",
|
||||
"T20",
|
||||
"T20X",
|
||||
"T20L",
|
||||
"Generic T20"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch1",
|
||||
"notes": "Sub stream 360p - Ingenic T20 series SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T10",
|
||||
"T10",
|
||||
"Generic T10"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0",
|
||||
"notes": "Main stream - Ingenic T10 SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T10",
|
||||
"T10",
|
||||
"Generic T10"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch1",
|
||||
"notes": "Sub stream - Ingenic T10 SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC S3L",
|
||||
"S3L",
|
||||
"Generic S3L"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0",
|
||||
"notes": "Main stream - Ingenic S3L SoC"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Other",
|
||||
"Xiaomi Dafang",
|
||||
"Xiaomi Xiaofang"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0",
|
||||
"notes": "Main stream 1080p - Generic Thingino installation"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Other",
|
||||
"Xiaomi Dafang",
|
||||
"Xiaomi Xiaofang"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch1",
|
||||
"notes": "Sub stream 360p - Generic Thingino installation"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Other"
|
||||
],
|
||||
"type": "JPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/image.jpg",
|
||||
"notes": "JPEG snapshot"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Other"
|
||||
],
|
||||
"type": "MJPEG",
|
||||
"protocol": "http",
|
||||
"port": 8080,
|
||||
"url": "/",
|
||||
"notes": "MJPEG stream via HTTP"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user