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:
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"brand": "fang-hacks",
|
||||
"brand_id": "fang-hacks",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/samtap/fang-hacks",
|
||||
"website": "https://github.com/samtap/fang-hacks",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"XIAOFANG ARM PROCESSOR",
|
||||
"XiaoFang ARM",
|
||||
"Classic XiaoFang",
|
||||
"ARM926EJ-S"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/unicast",
|
||||
"notes": "Classic XiaoFang with ARM processor (not Ingenic)"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"XIAOMI XIAOFANG",
|
||||
"Xiaofang",
|
||||
"XiaoFang"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/unicast",
|
||||
"notes": "Xiaomi Xiaofang camera with fang-hacks"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/unicast",
|
||||
"notes": "Generic fang-hacks installation"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,257 @@
|
||||
{
|
||||
"brand": "OpenIPC",
|
||||
"brand_id": "openipc",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "openipc.org",
|
||||
"website": "https://openipc.org",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"MAJESTIC STREAMER",
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "Main stream (video0) - Majestic streamer default"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"MAJESTIC STREAMER",
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=1",
|
||||
"notes": "Sub stream (video1) - Majestic streamer"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HISILICON",
|
||||
"Hi3516EV200",
|
||||
"Hi3516EV300",
|
||||
"Hi3516CV500",
|
||||
"Hi3516DV300",
|
||||
"Hi3518EV200",
|
||||
"Hi3518EV300"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "HiSilicon SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HISILICON",
|
||||
"Hi3516EV200",
|
||||
"Hi3516EV300",
|
||||
"Hi3516CV500",
|
||||
"Hi3516DV300",
|
||||
"Hi3518EV200",
|
||||
"Hi3518EV300"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=1",
|
||||
"notes": "HiSilicon SoC sub stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"GOKE",
|
||||
"GK7205V200",
|
||||
"GK7205V300",
|
||||
"GK7605V100"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "Goke SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"GOKE",
|
||||
"GK7205V200",
|
||||
"GK7205V300",
|
||||
"GK7605V100"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=1",
|
||||
"notes": "Goke SoC sub stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC",
|
||||
"T31",
|
||||
"T30",
|
||||
"T20",
|
||||
"T10"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "Ingenic SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC",
|
||||
"T31",
|
||||
"T30",
|
||||
"T20",
|
||||
"T10"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=1",
|
||||
"notes": "Ingenic SoC sub stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"SIGMASTAR",
|
||||
"SSC325",
|
||||
"SSC335",
|
||||
"SSC337",
|
||||
"SSC338Q"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "SigmaStar SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"SIGMASTAR",
|
||||
"SSC325",
|
||||
"SSC335",
|
||||
"SSC337",
|
||||
"SSC338Q"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=1",
|
||||
"notes": "SigmaStar SoC sub stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"NOVATEK",
|
||||
"NT98562",
|
||||
"NT98566"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "Novatek SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"XIONGMAI",
|
||||
"XM530",
|
||||
"XM550"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "XiongMai SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"AMBARELLA",
|
||||
"S2L",
|
||||
"S3L"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/stream=0",
|
||||
"notes": "Ambarella SoC main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "JPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/image.jpg",
|
||||
"notes": "JPEG snapshot"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "MJPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/mjpeg.html",
|
||||
"notes": "MJPEG stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/video.mp4",
|
||||
"notes": "Fragmented MP4 video"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/audio.opus",
|
||||
"notes": "Opus audio stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/audio.mp3",
|
||||
"notes": "MP3 audio stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Generic",
|
||||
"Majestic",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "http",
|
||||
"port": 80,
|
||||
"url": "/audio.m4a",
|
||||
"notes": "AAC audio stream"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"brand": "OpenMiko",
|
||||
"brand_id": "openmiko",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/openmiko/openmiko",
|
||||
"website": "https://github.com/openmiko/openmiko",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"WYZE CAM V2",
|
||||
"WyzeCam V2",
|
||||
"Wyze V2",
|
||||
"WYZEC1-JZ"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 8554,
|
||||
"url": "/video3_unicast",
|
||||
"notes": "WyzeCam V2 with OpenMiko firmware - NON-STANDARD PORT 8554"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"XIAOMI XIAOFANG 1S",
|
||||
"Xiaofang 1S",
|
||||
"XiaoFang 1S"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 8554,
|
||||
"url": "/video3_unicast",
|
||||
"notes": "Xiaomi Xiaofang 1S with OpenMiko - NON-STANDARD PORT 8554"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"ISMARTALARM SPOT+",
|
||||
"iSmartAlarm Spot+",
|
||||
"Spot+"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 8554,
|
||||
"url": "/video3_unicast",
|
||||
"notes": "iSmartAlarm Spot+ with OpenMiko - NON-STANDARD PORT 8554"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"INGENIC T20",
|
||||
"Generic T20",
|
||||
"T20 based",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 8554,
|
||||
"url": "/video3_unicast",
|
||||
"notes": "Generic Ingenic T20 based cameras - NON-STANDARD PORT 8554"
|
||||
}
|
||||
]
|
||||
}
|
||||
+40
-2
@@ -1,8 +1,9 @@
|
||||
{
|
||||
"brand": "Sonoff",
|
||||
"brand_id": "sonoff",
|
||||
"last_updated": "2025-10-17",
|
||||
"source": "ispyconnect.com",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "ispyconnect.com, github.com/roleoroleo/sonoff-hack",
|
||||
"website": "https://github.com/roleoroleo/sonoff-hack",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
@@ -73,6 +74,43 @@
|
||||
"protocol": "rtsp",
|
||||
"port": 0,
|
||||
"url": "live/ch00_0"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"SONOFF-HACK GOKE GK7205V200",
|
||||
"GK-200MP2-B with sonoff-hack",
|
||||
"Goke GK7205V200",
|
||||
"sonoff-hack"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/av_stream/ch0",
|
||||
"notes": "Sonoff-hack custom firmware - Main stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"SONOFF-HACK",
|
||||
"GK-200MP2-B with sonoff-hack",
|
||||
"sonoff-hack"
|
||||
],
|
||||
"type": "JPEG",
|
||||
"protocol": "http",
|
||||
"port": 8080,
|
||||
"url": "/snapshot.jpg",
|
||||
"notes": "Sonoff-hack custom firmware - JPEG snapshot (port 8080)"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"SONOFF-HACK GOKE GK7205V300",
|
||||
"GK7205V300",
|
||||
"Goke chipset"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/av_stream/ch0",
|
||||
"notes": "Sonoff-hack for Goke GK7205V300 chipset"
|
||||
}
|
||||
]
|
||||
}
|
||||
+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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"brand": "yi-hack-Allwinner-v2",
|
||||
"brand_id": "yi-hack-allwinner-v2",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/roleoroleo/yi-hack-Allwinner-v2",
|
||||
"website": "https://github.com/roleoroleo/yi-hack-Allwinner-v2",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"ALLWINNER V2 PLATFORM",
|
||||
"Yi Allwinner v2",
|
||||
"Different flash layout",
|
||||
"Tovendor Mini Smart Home Camera"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Allwinner v2 platform (different flash layout) - High resolution"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"ALLWINNER V2 PLATFORM",
|
||||
"Yi Allwinner v2",
|
||||
"Different flash layout",
|
||||
"Tovendor Mini Smart Home Camera"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Allwinner v2 platform (different flash layout) - Low resolution"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"ALLWINNER V2 PLATFORM",
|
||||
"Yi Allwinner v2",
|
||||
"Different flash layout",
|
||||
"Tovendor Mini Smart Home Camera"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_2.h264",
|
||||
"notes": "Allwinner v2 platform (different flash layout) - Audio only"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME CAMERA 3",
|
||||
"Yi Home Camera 3"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Home Camera 3 - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME CAMERA 3",
|
||||
"Yi Home Camera 3"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Home Camera 3 - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Generic Allwinner v2 camera - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Generic Allwinner v2 camera - SD stream"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"brand": "yi-hack-Allwinner",
|
||||
"brand_id": "yi-hack-allwinner",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/roleoroleo/yi-hack-Allwinner",
|
||||
"website": "https://github.com/roleoroleo/yi-hack-Allwinner",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"ALLWINNER PLATFORM",
|
||||
"Yi 1080p Allwinner",
|
||||
"Generic Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Allwinner platform - High resolution video"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"ALLWINNER PLATFORM",
|
||||
"Yi 1080p Allwinner",
|
||||
"Generic Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Allwinner platform - Low resolution video"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"ALLWINNER PLATFORM",
|
||||
"Yi 1080p Allwinner",
|
||||
"Generic Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_2.h264",
|
||||
"notes": "Allwinner platform - Audio only"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 1080P ALLWINNER",
|
||||
"Yi Home Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Home 1080p Allwinner - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 1080P ALLWINNER",
|
||||
"Yi Home Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Home 1080p Allwinner - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 1080P ALLWINNER",
|
||||
"Yi Dome Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Dome 1080p Allwinner - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 1080P ALLWINNER",
|
||||
"Yi Dome Allwinner"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Dome 1080p Allwinner - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Generic Allwinner camera - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Generic Allwinner camera - SD stream"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,139 @@
|
||||
{
|
||||
"brand": "yi-hack-MStar",
|
||||
"brand_id": "yi-hack-mstar",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/roleoroleo/yi-hack-MStar",
|
||||
"website": "https://github.com/roleoroleo/yi-hack-MStar",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"MSTAR INFINITY CHIPSET",
|
||||
"MStar",
|
||||
"Yi Home MStar",
|
||||
"Yi Dome MStar",
|
||||
"Generic MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "MStar Infinity chipset - High resolution video"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"MSTAR INFINITY CHIPSET",
|
||||
"MStar",
|
||||
"Yi Home MStar",
|
||||
"Yi Dome MStar",
|
||||
"Generic MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "MStar Infinity chipset - Low resolution video"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"MSTAR INFINITY CHIPSET",
|
||||
"MStar",
|
||||
"Yi Home MStar",
|
||||
"Yi Dome MStar",
|
||||
"Generic MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_2.h264",
|
||||
"notes": "MStar Infinity chipset - Audio only"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 1080P MSTAR",
|
||||
"Yi 1080p MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Home 1080p MStar - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 1080P MSTAR",
|
||||
"Yi 1080p MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Home 1080p MStar - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 1080P MSTAR",
|
||||
"Yi Dome MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Dome 1080p MStar - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 1080P MSTAR",
|
||||
"Yi Dome MStar"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Dome 1080p MStar - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"AQARA CAMERA G2H",
|
||||
"Aqara G2H",
|
||||
"G2H"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Aqara Camera G2H with yi-hack-MStar - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"AQARA CAMERA G2H",
|
||||
"Aqara G2H",
|
||||
"G2H"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Aqara Camera G2H with yi-hack-MStar - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Generic MStar based camera - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Generic MStar based camera - SD stream"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,187 @@
|
||||
{
|
||||
"brand": "yi-hack-v4",
|
||||
"brand_id": "yi-hack-v4",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/TheCrypt0/yi-hack-v4",
|
||||
"website": "https://github.com/TheCrypt0/yi-hack-v4",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 720P",
|
||||
"Yi Home 720p",
|
||||
"17CN",
|
||||
"27US",
|
||||
"47CN"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Home 720p - Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 720P",
|
||||
"Yi Home 720p",
|
||||
"17CN",
|
||||
"27US",
|
||||
"47CN"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Home 720p - Hi3518e chipset - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 720P",
|
||||
"Yi Dome 720p",
|
||||
"43US",
|
||||
"63US",
|
||||
"Generic Dome 720p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Dome 720p - Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 720P",
|
||||
"Yi Dome 720p",
|
||||
"43US",
|
||||
"63US",
|
||||
"Generic Dome 720p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Dome 720p - Hi3518e chipset - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 1080P",
|
||||
"Yi Home 1080p",
|
||||
"48US",
|
||||
"Version 1"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Home 1080p - Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI HOME 1080P",
|
||||
"Yi Home 1080p",
|
||||
"48US",
|
||||
"Version 1"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Home 1080p - Hi3518e chipset - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 1080P",
|
||||
"Yi Dome 1080p",
|
||||
"45US",
|
||||
"65US",
|
||||
"Generic Dome 1080p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Dome 1080p - Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI DOME 1080P",
|
||||
"Yi Dome 1080p",
|
||||
"45US",
|
||||
"65US",
|
||||
"Generic Dome 1080p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Dome 1080p - Hi3518e chipset - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI CLOUD DOME 1080P",
|
||||
"Yi Cloud Dome 1080p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Cloud Dome 1080p - Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI CLOUD DOME 1080P",
|
||||
"Yi Cloud Dome 1080p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Cloud Dome 1080p - Hi3518e chipset - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI OUTDOOR 1080P",
|
||||
"Yi Outdoor 1080p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Yi Outdoor 1080p - Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"YI OUTDOOR 1080P",
|
||||
"Yi Outdoor 1080p"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Yi Outdoor 1080p - Hi3518e chipset - SD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HI3518E CHIPSET",
|
||||
"Generic Hi3518e",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Generic Yi camera with Hi3518e chipset - HD stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HI3518E CHIPSET",
|
||||
"Generic Hi3518e",
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Generic Yi camera with Hi3518e chipset - SD stream"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"brand": "yi-hack-v5",
|
||||
"brand_id": "yi-hack-v5",
|
||||
"last_updated": "2025-11-11",
|
||||
"source": "github.com/alienatedsec/yi-hack-v5",
|
||||
"website": "https://github.com/alienatedsec/yi-hack-v5",
|
||||
"entries": [
|
||||
{
|
||||
"models": [
|
||||
"HI3518EV200 CHIPSET",
|
||||
"Yi Home",
|
||||
"Yi Dome",
|
||||
"Generic Hi3518ev200"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Hi3518ev200 chipset - HD video stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HI3518EV200 CHIPSET",
|
||||
"Yi Home",
|
||||
"Yi Dome",
|
||||
"Generic Hi3518ev200"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Hi3518ev200 chipset - SD video stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HI3518EV200 CHIPSET",
|
||||
"Yi Home",
|
||||
"Yi Dome",
|
||||
"Generic Hi3518ev200"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_2.h264",
|
||||
"notes": "Hi3518ev200 chipset - Audio only stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"HI3518EV200 CHIPSET",
|
||||
"Yi Home",
|
||||
"Yi Dome",
|
||||
"Generic Hi3518ev200"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_3.h264",
|
||||
"notes": "Hi3518ev200 chipset - Audio only stream (alternative)"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_0.h264",
|
||||
"notes": "Generic - HD video stream"
|
||||
},
|
||||
{
|
||||
"models": [
|
||||
"Other"
|
||||
],
|
||||
"type": "FFMPEG",
|
||||
"protocol": "rtsp",
|
||||
"port": 554,
|
||||
"url": "/ch0_1.h264",
|
||||
"notes": "Generic - SD video stream"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user