Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c0d743594 | |||
| 787919d20b | |||
| e9dc04178e | |||
| 915c1dec1b | |||
| e6828d8a22 | |||
| eedce14731 | |||
| 9975aa71de | |||
| 38e4af230f | |||
| 031e494787 | |||
| de389588ce | |||
| 4c03ad8d3c | |||
| d569a76700 | |||
| a405d6198f | |||
| 4143c267cd | |||
| 19e58db70f | |||
| 11e6ba9902 | |||
| a6e9cc2c5e | |||
| 12770ed5b9 | |||
| 90c4416709 | |||
| d602c8dfca | |||
| 596cf1ccdc | |||
| 779ae33bac | |||
| 71d6f2aac8 | |||
| 56c06dfa98 | |||
| 8bf92e6598 | |||
| 522d274dd4 | |||
| 8036d3e9be | |||
| 5b2f80f057 | |||
| e2b9802fd8 | |||
| 65a198d119 | |||
| 722c629c01 | |||
| c81d9a1e63 | |||
| 06de1c198b |
@@ -5,6 +5,54 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.0.9] - 2025-12-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed real-time SSE streaming in Home Assistant Ingress mode
|
||||||
|
- SSE events now arrive immediately instead of being buffered until completion
|
||||||
|
|
||||||
|
### Technical
|
||||||
|
- Added automatic detection of Home Assistant Ingress via X-Ingress-Path header
|
||||||
|
- Implemented 64KB padding for SSE events to overcome aiohttp buffer in HA Supervisor
|
||||||
|
- Adjusted progress update interval to 3 seconds in Ingress mode to reduce traffic
|
||||||
|
- Normal mode (Docker/direct access) remains unchanged
|
||||||
|
|
||||||
|
## [1.0.8] - 2025-11-26
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated Docker deployment to use host network mode for better compatibility
|
||||||
|
- Modified docker-compose.yml to use `network_mode: host`
|
||||||
|
- Updated installation commands to use `--network host` flag
|
||||||
|
- Removed port mappings as they are not needed with host network mode
|
||||||
|
|
||||||
|
### Improved
|
||||||
|
- Better compatibility with unprivileged LXC containers
|
||||||
|
- Simplified Docker networking configuration
|
||||||
|
- Direct network access for improved camera discovery performance
|
||||||
|
|
||||||
|
## [1.0.7] - 2025-11-23
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed channel numbering for Hikvision-style cameras (reported by @sergbond_com)
|
||||||
|
- Removed invalid test data from Hikvision database
|
||||||
|
- Fixed brand+model search matching in stream discovery
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Universal `[CHANNEL+1]` placeholder support for flexible channel numbering
|
||||||
|
- Support for both 0-based (channel=0 → 101) and 1-based (channel=1 → 101) channel selection
|
||||||
|
- Added 6 high-priority Hikvision patterns to popular stream patterns database
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated 14 camera brands with universal channel patterns (Hikvision, Hiwatch, Annke, Swann, Abus, 7links, LevelOne, AlienDVR, Oswoo, AV102IP-40, Acvil, TBKVision, Deltaco, Night Owl)
|
||||||
|
- Hikvision: replaced 10 hardcoded patterns with 6 universal patterns
|
||||||
|
- Hiwatch: replaced 4 hardcoded patterns with 8 universal patterns (including ISAPI variants)
|
||||||
|
- Universal patterns now tested first for faster discovery, hardcoded patterns kept as fallback
|
||||||
|
- Improved stream discovery performance with intelligent pattern ordering
|
||||||
|
|
||||||
|
### Technical
|
||||||
|
- Added support for `[CHANNEL+1]`, `[channel+1]`, `{CHANNEL+1}`, `{channel+1}` placeholders in URL builder
|
||||||
|
- Modified 16 files: +2448 additions, -1954 deletions
|
||||||
|
|
||||||
## [0.1.0] - 2025-11-06
|
## [0.1.0] - 2025-11-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -1,217 +1,556 @@
|
|||||||
# 🦉 Strix - Smart IP Camera Stream Discovery System
|
# Strix
|
||||||
|
[](https://github.com/eduard256/strix/stargazers)
|
||||||

|
|
||||||
|
|
||||||
[](https://go.dev/)
|
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
[](https://github.com/eduard256/Strix)
|
[](https://hub.docker.com/r/eduard256/strix)
|
||||||
|
|
||||||
Strix is an intelligent IP camera stream discovery system that acts as a bridge between users and streaming servers like go2rtc. It automatically discovers and validates camera streams, eliminating the need for manual URL configuration.
|
## Spent 2 years googling URL for your Chinese camera?
|
||||||
|
|
||||||
## 🎯 Features
|
**Strix finds working streams automatically. In 30 seconds.**
|
||||||
|
|
||||||
- **Intelligent Camera Search**: Fuzzy search across 3,600+ camera models
|
- **67,288** camera models
|
||||||
- **Automatic Stream Discovery**: ONVIF, database patterns, and popular URL detection
|
- **3,636** brands (from Hikvision to AliExpress no-name)
|
||||||
- **Real-time Updates**: Server-Sent Events (SSE) for live discovery progress
|
- **102,787** URL patterns (RTSP, HTTP, MJPEG, JPEG, BUBBLE)
|
||||||
- **Universal Protocol Support**: RTSP, HTTP, MJPEG, JPEG snapshots, and more
|
|
||||||
- **Smart URL Building**: Automatic placeholder replacement and authentication handling
|
|
||||||
- **Concurrent Testing**: Fast parallel stream validation with ffprobe
|
|
||||||
- **Memory Efficient**: Streaming JSON parsing for large camera databases
|
|
||||||
- **API-First Design**: RESTful API with comprehensive documentation
|
|
||||||
|
|
||||||
## 🚀 Quick Start
|

|
||||||
|
|
||||||
### Docker (Recommended)
|
---
|
||||||
|
|
||||||
|
## Your Problem?
|
||||||
|
|
||||||
|
- ❌ Bought ZOSI NVR, zero documentation
|
||||||
|
- ❌ Camera has no RTSP, only weird JPEG snapshots
|
||||||
|
- ❌ Frigate eating 70% CPU
|
||||||
|
- ❌ Config breaks after adding each camera
|
||||||
|
- ❌ Don't understand Frigate syntax
|
||||||
|
|
||||||
|
## Solution
|
||||||
|
|
||||||
|
- ✅ **Auto-discovery** - tests 102,787 URL variations in parallel
|
||||||
|
- ✅ **Any protocol** - No RTSP? Finds HTTP MJPEG
|
||||||
|
- ✅ **Config generation** - ready Frigate.yml in 2 minutes
|
||||||
|
- ✅ **Sub/Main streams** - CPU from 30% → 8%
|
||||||
|
- ✅ **Smart merging** - adds camera to existing config with 500+ cameras
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🚀 Installation (One Command)
|
||||||
|
|
||||||
|
### Ubuntu / Debian
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Using Docker Compose (recommended)
|
sudo apt update && command -v docker >/dev/null 2>&1 || curl -fsSL https://get.docker.com | sudo sh && docker run -d --name strix --network host --restart unless-stopped eduard256/strix:latest
|
||||||
docker-compose up -d
|
|
||||||
|
|
||||||
# Or using Docker directly
|
|
||||||
docker run -d \
|
|
||||||
--name strix \
|
|
||||||
-p 4567:4567 \
|
|
||||||
eduard256/strix:latest
|
|
||||||
|
|
||||||
# Access at http://localhost:4567
|
|
||||||
```
|
```
|
||||||
|
|
||||||
See [Docker documentation](DOCKER.md) for more options.
|
Open **http://YOUR_SERVER_IP:4567**
|
||||||
|
|
||||||
### Build from Source
|
### Docker Compose
|
||||||
|
|
||||||
Prerequisites:
|
|
||||||
- Go 1.21 or higher
|
|
||||||
- ffprobe (optional, for enhanced stream validation)
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone the repository
|
sudo apt update && command -v docker >/dev/null 2>&1 || curl -fsSL https://get.docker.com | sudo sh && command -v docker-compose >/dev/null 2>&1 || { sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose; } && curl -fsSL https://raw.githubusercontent.com/eduard256/Strix/main/docker-compose.yml -o docker-compose.yml && docker-compose up -d
|
||||||
git clone https://github.com/eduard256/Strix
|
|
||||||
cd strix
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
make deps
|
|
||||||
|
|
||||||
# Build the application
|
|
||||||
make build
|
|
||||||
|
|
||||||
# Run the application
|
|
||||||
make run
|
|
||||||
|
|
||||||
# The server will start on http://localhost:4567
|
|
||||||
# Open your browser and navigate to http://localhost:4567
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## 📡 API Endpoints
|
### Home Assistant Add-on (Beta)
|
||||||
|
|
||||||
|
⚠️ **Status:** Experimental (SSE has bugs, Docker recommended)
|
||||||
|
|
||||||
|
**Installation:**
|
||||||
|
|
||||||
|
1. Go to **Settings** → **Add-ons** → **Add-on Store**
|
||||||
|
2. Click **⋮** (top right) → **Repositories**
|
||||||
|
3. Add: `https://github.com/eduard256/hassio-strix`
|
||||||
|
4. Find **"Strix"** in store
|
||||||
|
5. Click **Install**
|
||||||
|
6. Enable **"Start on boot"** and **"Show in sidebar"**
|
||||||
|
7. Click **Start**
|
||||||
|
|
||||||
|
**Known Issues:**
|
||||||
|
- Real-time progress may not display (Ingress SSE limitation)
|
||||||
|
- Use Docker installation for better experience
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## How to Use
|
||||||
|
|
||||||
|
### Step 1: Open Web Interface
|
||||||
|
|
||||||
|
```
|
||||||
|
http://YOUR_SERVER_IP:4567
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 2: Enter Camera Details
|
||||||
|
|
||||||
|
- **IP Address**: `192.168.1.100`
|
||||||
|
- **Username**: `admin` (if required)
|
||||||
|
- **Password**: your camera password
|
||||||
|
- **Model**: optional, improves accuracy
|
||||||
|
|
||||||
|
### Step 3: Discover Streams
|
||||||
|
|
||||||
|
Click **"Discover Streams"**
|
||||||
|
|
||||||
|
Watch real-time progress:
|
||||||
|
- Which URL is being tested
|
||||||
|
- How many tested
|
||||||
|
- Found streams appear instantly
|
||||||
|
|
||||||
|
Wait 30-60 seconds.
|
||||||
|
|
||||||
|
### Step 4: Choose Stream
|
||||||
|
|
||||||
|
Strix shows details for each stream:
|
||||||
|
|
||||||
|
| Stream | Details |
|
||||||
|
|--------|---------|
|
||||||
|
| **Protocol** | RTSP, HTTP, MJPEG, JPEG |
|
||||||
|
| **Resolution** | 1920x1080, 640x480 |
|
||||||
|
| **FPS** | 25, 15, 10 |
|
||||||
|
| **Codec** | H264, H265, MJPEG |
|
||||||
|
| **Audio** | Yes / No |
|
||||||
|
|
||||||
|
### Step 5: Generate Frigate Config
|
||||||
|
|
||||||
|
Click **"Use Stream"** → **"Generate Frigate Config"**
|
||||||
|
|
||||||
|
You get ready config:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
go2rtc:
|
||||||
|
streams:
|
||||||
|
'192_168_1_100_main':
|
||||||
|
- http://admin:pass@192.168.1.100:8000/video.mjpg
|
||||||
|
'192_168_1_100_sub':
|
||||||
|
- http://admin:pass@192.168.1.100:8000/video2.mjpg
|
||||||
|
|
||||||
|
cameras:
|
||||||
|
camera_192_168_1_100:
|
||||||
|
ffmpeg:
|
||||||
|
inputs:
|
||||||
|
- path: rtsp://127.0.0.1:8554/192_168_1_100_sub
|
||||||
|
roles: [detect] # CPU 8% instead of 70%
|
||||||
|
- path: rtsp://127.0.0.1:8554/192_168_1_100_main
|
||||||
|
roles: [record] # HD recording
|
||||||
|
objects:
|
||||||
|
track: [person, car, cat, dog]
|
||||||
|
record:
|
||||||
|
enabled: true
|
||||||
|
```
|
||||||
|
|
||||||
|
**Smart Merging:**
|
||||||
|
- Paste your existing `frigate.yml` with 500 cameras
|
||||||
|
- Strix adds camera #501 correctly
|
||||||
|
- Doesn't break structure
|
||||||
|
- Preserves all settings
|
||||||
|
|
||||||
|
### Step 6: Add to Frigate
|
||||||
|
|
||||||
|
Copy config → Paste to `frigate.yml` → Restart Frigate
|
||||||
|
|
||||||
|
**Done!**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
### Exotic Camera Support
|
||||||
|
|
||||||
|
90% of Chinese cameras don't have RTSP. Strix supports everything:
|
||||||
|
|
||||||
|
- **HTTP MJPEG** - most old cameras
|
||||||
|
- **JPEG snapshots** - auto-converted to stream via FFmpeg
|
||||||
|
- **RTSP** - if available
|
||||||
|
- **HTTP-FLV** - some Chinese brands
|
||||||
|
- **BUBBLE** - proprietary Chinese NVR/DVR protocol
|
||||||
|
- **ONVIF** - auto-discovery
|
||||||
|
|
||||||
|
### Camera Database
|
||||||
|
|
||||||
|
**67,288 models from 3,636 brands:**
|
||||||
|
|
||||||
|
- **Known brands**: Hikvision, Dahua, Axis, Foscam, TP-Link
|
||||||
|
- **Chinese no-names**: ZOSI, Escam, Sricam, Wanscam, Besder
|
||||||
|
- **AliExpress junk**: cameras without name, OEM models
|
||||||
|
- **Old systems**: NVR/DVR with proprietary protocols
|
||||||
|
|
||||||
|
### Discovery Methods
|
||||||
|
|
||||||
|
Strix tries all methods in parallel:
|
||||||
|
|
||||||
|
**1. ONVIF** (30% success rate)
|
||||||
|
- Asks camera directly for stream URLs
|
||||||
|
- Works for ONVIF-compatible cameras
|
||||||
|
|
||||||
|
**2. Database Lookup** (60% success rate)
|
||||||
|
- 67,288 models with known working URLs
|
||||||
|
- Brand and model-specific patterns
|
||||||
|
|
||||||
|
**3. Popular Patterns** (90% success rate)
|
||||||
|
- 206 most common URL paths
|
||||||
|
- Works even for unknown cameras
|
||||||
|
|
||||||
|
**Result: Finds stream for 95% of cameras**
|
||||||
|
|
||||||
|
### Frigate Config Generation
|
||||||
|
|
||||||
|
**What you get:**
|
||||||
|
|
||||||
|
✅ **Main/Sub streams**
|
||||||
|
- Main (HD) for recording
|
||||||
|
- Sub (low res) for object detection
|
||||||
|
- CPU usage reduced 5-10x
|
||||||
|
|
||||||
|
✅ **Ready go2rtc config**
|
||||||
|
- Stream multiplexing
|
||||||
|
- Protocol conversion
|
||||||
|
- JPEG → RTSP via FFmpeg
|
||||||
|
|
||||||
|
✅ **Smart config merging**
|
||||||
|
- Add to existing config
|
||||||
|
- Preserve structure
|
||||||
|
- No manual YAML editing
|
||||||
|
|
||||||
|
✅ **Pre-configured detection**
|
||||||
|
- person, car, cat, dog
|
||||||
|
- Ready motion recording
|
||||||
|
- 7 days retention
|
||||||
|
|
||||||
|
### Speed
|
||||||
|
|
||||||
|
- Tests **20 URLs in parallel**
|
||||||
|
- Average discovery time: **30-60 seconds**
|
||||||
|
- Complex cameras: **2-3 minutes**
|
||||||
|
- Real-time progress updates via SSE
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Advanced Configuration
|
||||||
|
|
||||||
|
### Docker Environment Variables
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
environment:
|
||||||
|
- STRIX_API_LISTEN=:8080 # Custom port
|
||||||
|
- STRIX_LOG_LEVEL=debug # Detailed logs
|
||||||
|
- STRIX_LOG_FORMAT=json # JSON logging
|
||||||
|
```
|
||||||
|
|
||||||
|
### Config File
|
||||||
|
|
||||||
|
Create `strix.yaml`:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
api:
|
||||||
|
listen: ":8080"
|
||||||
|
```
|
||||||
|
|
||||||
|
Example: [strix.yaml.example](strix.yaml.example)
|
||||||
|
|
||||||
|
### Discovery Parameters
|
||||||
|
|
||||||
|
In web UI under **Advanced**:
|
||||||
|
|
||||||
|
- **Channel** - for NVR systems (usually 0)
|
||||||
|
- **Timeout** - max discovery time (default: 240s)
|
||||||
|
- **Max Streams** - stop after N streams (default: 10)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## FAQ
|
||||||
|
|
||||||
|
### No streams found?
|
||||||
|
|
||||||
|
**Check network:**
|
||||||
|
```bash
|
||||||
|
ping 192.168.1.100
|
||||||
|
```
|
||||||
|
|
||||||
|
Camera must be reachable.
|
||||||
|
|
||||||
|
**Verify credentials:**
|
||||||
|
- Username/password correct?
|
||||||
|
- Try without credentials (some cameras are open)
|
||||||
|
|
||||||
|
**Try without model:**
|
||||||
|
- Strix will run ONVIF + 206 popular patterns
|
||||||
|
- Works for cameras not in database
|
||||||
|
|
||||||
|
### Camera not in database?
|
||||||
|
|
||||||
|
**No problem.**
|
||||||
|
|
||||||
|
Strix will still find stream via:
|
||||||
|
1. ONVIF (if supported)
|
||||||
|
2. 206 popular URL patterns
|
||||||
|
3. Common ports and paths
|
||||||
|
4. HTTP MJPEG on various ports
|
||||||
|
5. JPEG snapshot endpoints
|
||||||
|
|
||||||
|
**Help the project:**
|
||||||
|
- Found working stream? [Create Issue](https://github.com/eduard256/Strix/issues)
|
||||||
|
- Share model and URL
|
||||||
|
- We'll add to database
|
||||||
|
|
||||||
|
### Found only JPEG snapshots?
|
||||||
|
|
||||||
|
**Normal for old cameras.**
|
||||||
|
|
||||||
|
Strix auto-converts JPEG to stream via FFmpeg:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
go2rtc:
|
||||||
|
streams:
|
||||||
|
camera_main:
|
||||||
|
- exec:ffmpeg -loop 1 -framerate 10 -i http://192.168.1.100/snapshot.jpg -c:v libx264 -f rtsp {output}
|
||||||
|
```
|
||||||
|
|
||||||
|
Frigate gets normal 10 FPS stream.
|
||||||
|
|
||||||
|
### Stream found but doesn't work in Frigate?
|
||||||
|
|
||||||
|
**Try another stream:**
|
||||||
|
- Strix usually finds 3-10 variants
|
||||||
|
- Some may need special FFmpeg parameters
|
||||||
|
|
||||||
|
**Use sub stream:**
|
||||||
|
- For object detection
|
||||||
|
- Less CPU load
|
||||||
|
- Better performance
|
||||||
|
|
||||||
|
### How does config generation work?
|
||||||
|
|
||||||
|
**For new config:**
|
||||||
|
- Strix creates complete `frigate.yml` from scratch
|
||||||
|
- Includes go2rtc, camera, object detection
|
||||||
|
|
||||||
|
**For existing config:**
|
||||||
|
- Paste your current `frigate.yml`
|
||||||
|
- Strix adds new camera
|
||||||
|
- Preserves all existing cameras
|
||||||
|
- Doesn't break structure
|
||||||
|
|
||||||
|
**Main/Sub streams:**
|
||||||
|
- Main (HD) - for recording
|
||||||
|
- Sub (low res) - for detection
|
||||||
|
- CPU savings 5-10x
|
||||||
|
|
||||||
|
### Is it safe to enter passwords?
|
||||||
|
|
||||||
|
**Yes.**
|
||||||
|
|
||||||
|
- Strix runs locally on your network
|
||||||
|
- Nothing sent to external servers
|
||||||
|
- Passwords not saved
|
||||||
|
- Open source - check the code yourself
|
||||||
|
|
||||||
|
### Works offline?
|
||||||
|
|
||||||
|
**Yes.**
|
||||||
|
|
||||||
|
- Database embedded in Docker image
|
||||||
|
- Internet only needed to download image
|
||||||
|
- Runs offline after that
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## API Reference
|
||||||
|
|
||||||
|
REST API available for automation:
|
||||||
|
|
||||||
### Health Check
|
### Health Check
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
GET /api/v1/health
|
GET /api/v1/health
|
||||||
```
|
```
|
||||||
|
|
||||||
### Camera Search
|
### Search Cameras
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
POST /api/v1/cameras/search
|
POST /api/v1/cameras/search
|
||||||
|
|
||||||
{
|
{
|
||||||
"query": "zosi zg23213m",
|
"query": "hikvision",
|
||||||
"limit": 10
|
"limit": 10
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Stream Discovery (SSE)
|
### Discover Streams (SSE)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
POST /api/v1/streams/discover
|
POST /api/v1/streams/discover
|
||||||
|
|
||||||
{
|
{
|
||||||
"target": "192.168.1.100", # IP or stream URL
|
"target": "192.168.1.100",
|
||||||
"model": "zosi zg23213m", # Optional camera model
|
"username": "admin",
|
||||||
"username": "admin", # Optional
|
"password": "12345",
|
||||||
"password": "password", # Optional
|
"model": "DS-2CD2xxx",
|
||||||
"timeout": 240, # Seconds (default: 240)
|
"timeout": 240,
|
||||||
"max_streams": 10, # Maximum streams to find
|
"max_streams": 10
|
||||||
"channel": 0 # For NVR systems
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## 🔍 How It Works
|
Returns Server-Sent Events with real-time progress.
|
||||||
|
|
||||||
1. **Camera Search**: Intelligent fuzzy matching across brand and model database
|
**Full API documentation:** [DOCKER.md](DOCKER.md)
|
||||||
2. **URL Collection**: Combines ONVIF discovery, model-specific patterns, and popular URLs
|
|
||||||
3. **Stream Validation**: Concurrent testing using ffprobe and HTTP requests
|
|
||||||
4. **Real-time Updates**: SSE streams provide instant feedback on discovered streams
|
|
||||||
5. **Smart Filtering**: Deduplicates URLs and prioritizes working streams
|
|
||||||
|
|
||||||
## 📁 Project Structure
|
|
||||||
|
|
||||||
```
|
|
||||||
strix/
|
|
||||||
├── cmd/strix/ # Application entry point
|
|
||||||
├── internal/ # Private application code
|
|
||||||
│ ├── api/ # HTTP handlers and routing
|
|
||||||
│ ├── camera/ # Camera database and discovery
|
|
||||||
│ │ ├── database/ # Database loading and search
|
|
||||||
│ │ ├── discovery/ # ONVIF and stream discovery
|
|
||||||
│ │ └── stream/ # URL building and validation
|
|
||||||
│ ├── config/ # Configuration management
|
|
||||||
│ └── models/ # Data structures
|
|
||||||
├── pkg/ # Public packages
|
|
||||||
│ └── sse/ # Server-Sent Events
|
|
||||||
├── data/ # Camera database (3,600+ models)
|
|
||||||
│ ├── brands/ # Brand-specific JSON files
|
|
||||||
│ ├── popular_stream_patterns.json
|
|
||||||
│ └── query_parameters.json
|
|
||||||
└── go.mod
|
|
||||||
```
|
|
||||||
|
|
||||||
## 🛠️ Configuration
|
|
||||||
|
|
||||||
Strix can be configured via `strix.yaml` file or environment variables.
|
|
||||||
|
|
||||||
### Configuration File (strix.yaml)
|
|
||||||
|
|
||||||
Create a `strix.yaml` file in the same directory as the binary:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# API Server Configuration
|
|
||||||
api:
|
|
||||||
listen: ":4567" # Format: ":port" or "host:port"
|
|
||||||
```
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
```yaml
|
|
||||||
api:
|
|
||||||
listen: ":4567" # All interfaces, port 4567 (default)
|
|
||||||
# listen: "127.0.0.1:4567" # Localhost only
|
|
||||||
# listen: ":8080" # Custom port
|
|
||||||
```
|
|
||||||
|
|
||||||
### Environment Variables
|
|
||||||
|
|
||||||
Environment variables override config file values:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
STRIX_API_LISTEN=":4567" # Server listen address (overrides strix.yaml)
|
|
||||||
STRIX_LOG_LEVEL=info # Log level: debug, info, warn, error
|
|
||||||
STRIX_LOG_FORMAT=json # Log format: json, text
|
|
||||||
```
|
|
||||||
|
|
||||||
### Configuration Priority
|
|
||||||
|
|
||||||
1. **Environment variable** `STRIX_API_LISTEN` (highest priority)
|
|
||||||
2. **Config file** `strix.yaml`
|
|
||||||
3. **Default value** `:4567` (lowest priority)
|
|
||||||
|
|
||||||
### Quick Start with Custom Port
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Using environment variable
|
|
||||||
STRIX_API_LISTEN=":8080" ./strix
|
|
||||||
|
|
||||||
# Or using config file
|
|
||||||
cp strix.yaml.example strix.yaml
|
|
||||||
# Edit strix.yaml, then:
|
|
||||||
./strix
|
|
||||||
```
|
|
||||||
|
|
||||||
## 📊 Camera Database
|
|
||||||
|
|
||||||
The system includes a comprehensive database of camera models:
|
|
||||||
|
|
||||||
- **3,600+ camera brands**
|
|
||||||
- **150+ popular stream patterns**
|
|
||||||
- **258 query parameter variations**
|
|
||||||
- **Automatic placeholder replacement**
|
|
||||||
|
|
||||||
## 🔧 Development
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Run tests
|
|
||||||
make test
|
|
||||||
|
|
||||||
# Format code
|
|
||||||
make fmt
|
|
||||||
|
|
||||||
# Run linter
|
|
||||||
make lint
|
|
||||||
|
|
||||||
# Build for all platforms
|
|
||||||
make build-all
|
|
||||||
|
|
||||||
# Development mode with live reload
|
|
||||||
make dev
|
|
||||||
```
|
|
||||||
|
|
||||||
## 📄 License
|
|
||||||
|
|
||||||
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
||||||
|
|
||||||
## 🙏 Acknowledgments
|
|
||||||
|
|
||||||
- Camera database sourced from ispyconnect.com
|
|
||||||
- Inspired by go2rtc project
|
|
||||||
- Built with Go and Chi router
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Made with ❤️ for the home automation community
|
## Technical Details
|
||||||
|
|
||||||
|
### Architecture
|
||||||
|
|
||||||
|
- **Language:** Go 1.24
|
||||||
|
- **Database:** 3,636 JSON files
|
||||||
|
- **Image size:** 80-90 MB (Alpine Linux)
|
||||||
|
- **Dependencies:** FFmpeg/FFprobe for validation
|
||||||
|
- **Concurrency:** Worker pool (20 parallel tests)
|
||||||
|
- **Real-time:** Server-Sent Events (SSE)
|
||||||
|
|
||||||
|
### Build from Source
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/eduard256/Strix
|
||||||
|
cd Strix
|
||||||
|
make build
|
||||||
|
./bin/strix
|
||||||
|
```
|
||||||
|
|
||||||
|
**Requirements:**
|
||||||
|
- Go 1.21+
|
||||||
|
- FFprobe (optional, for stream validation)
|
||||||
|
|
||||||
|
### Docker Platforms
|
||||||
|
|
||||||
|
- linux/amd64
|
||||||
|
- linux/arm64
|
||||||
|
|
||||||
|
Auto-built and published to Docker Hub on every push to `main`.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Use Cases
|
||||||
|
|
||||||
|
### Home Automation
|
||||||
|
|
||||||
|
- Add cheap cameras to Home Assistant
|
||||||
|
- Integrate with Frigate NVR
|
||||||
|
- Object detection with low CPU
|
||||||
|
- Motion recording
|
||||||
|
|
||||||
|
### Security Systems
|
||||||
|
|
||||||
|
- Discover streams in old NVR systems
|
||||||
|
- Find backup cameras without docs
|
||||||
|
- Migrate from proprietary DVR to Frigate
|
||||||
|
- Reduce hardware requirements
|
||||||
|
|
||||||
|
### IP Camera Testing
|
||||||
|
|
||||||
|
- Test cameras before deployment
|
||||||
|
- Verify stream quality
|
||||||
|
- Find optimal resolution/FPS
|
||||||
|
- Check codec compatibility
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
### Frigate still eating CPU?
|
||||||
|
|
||||||
|
**Use sub stream:**
|
||||||
|
1. Find both main and sub streams with Strix
|
||||||
|
2. Generate config with both
|
||||||
|
3. Sub for detect, main for record
|
||||||
|
4. CPU drops 5-10x
|
||||||
|
|
||||||
|
**Example:**
|
||||||
|
```yaml
|
||||||
|
inputs:
|
||||||
|
- path: rtsp://127.0.0.1:8554/camera_sub # 640x480 for detect
|
||||||
|
roles: [detect]
|
||||||
|
- path: rtsp://127.0.0.1:8554/camera_main # 1920x1080 for record
|
||||||
|
roles: [record]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Can't find specific stream quality?
|
||||||
|
|
||||||
|
**In web UI:**
|
||||||
|
- Strix shows all found streams
|
||||||
|
- Filter by resolution
|
||||||
|
- Choose optimal FPS
|
||||||
|
- Select codec (H264 recommended for Frigate)
|
||||||
|
|
||||||
|
### Stream works but no audio in Frigate?
|
||||||
|
|
||||||
|
**Check Strix stream details:**
|
||||||
|
- "Has Audio" field shows if audio present
|
||||||
|
- Some cameras have video-only streams
|
||||||
|
- Try different stream URL from Strix results
|
||||||
|
|
||||||
|
### Discovery takes too long?
|
||||||
|
|
||||||
|
**Reduce search scope:**
|
||||||
|
- Specify exact camera model (faster database lookup)
|
||||||
|
- Lower "Max Streams" (stops after N found)
|
||||||
|
- Reduce timeout (default 240s)
|
||||||
|
|
||||||
|
**In Advanced settings:**
|
||||||
|
```
|
||||||
|
Max Streams: 5 (instead of 10)
|
||||||
|
Timeout: 120 (instead of 240)
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
### Add Your Camera
|
||||||
|
|
||||||
|
Found working stream for camera not in database?
|
||||||
|
|
||||||
|
1. [Create Issue](https://github.com/eduard256/Strix/issues)
|
||||||
|
2. Provide:
|
||||||
|
- Camera brand and model
|
||||||
|
- Working URL pattern
|
||||||
|
- Protocol (RTSP/HTTP/etc)
|
||||||
|
3. We'll add to database
|
||||||
|
|
||||||
|
### Report Bugs
|
||||||
|
|
||||||
|
- [GitHub Issues](https://github.com/eduard256/Strix/issues)
|
||||||
|
- Include logs (set `STRIX_LOG_LEVEL=debug`)
|
||||||
|
- Camera model and IP (if possible)
|
||||||
|
|
||||||
|
### Feature Requests
|
||||||
|
|
||||||
|
- [GitHub Discussions](https://github.com/eduard256/Strix/discussions)
|
||||||
|
- Describe use case
|
||||||
|
- Explain expected behavior
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
- **Camera database:** [ispyconnect.com](https://www.ispyconnect.com)
|
||||||
|
- **Inspiration:** [go2rtc](https://github.com/AlexxIT/go2rtc) by AlexxIT
|
||||||
|
- **Community:** Home Assistant, Frigate NVR users
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
MIT License - use commercially, modify, distribute freely.
|
||||||
|
|
||||||
|
See [LICENSE](LICENSE) file for details.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- **Issues:** [GitHub Issues](https://github.com/eduard256/Strix/issues)
|
||||||
|
- **Discussions:** [GitHub Discussions](https://github.com/eduard256/Strix/discussions)
|
||||||
|
- **Docker:** [Docker Hub](https://hub.docker.com/r/eduard256/strix)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Made for people tired of cameras without documentation**
|
||||||
|
|
||||||
|
*Tested on Chinese AliExpress junk that finally works now.*
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// Version is the application version
|
// Version is the application version
|
||||||
Version = "1.0.3"
|
Version = "1.0.9"
|
||||||
|
|
||||||
// Banner is the application banner
|
// Banner is the application banner
|
||||||
Banner = `
|
Banner = `
|
||||||
|
|||||||
+64
-28
@@ -4,6 +4,42 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"3628-675",
|
"3628-675",
|
||||||
@@ -313,15 +349,6 @@
|
|||||||
"port": 0,
|
"port": 0,
|
||||||
"url": ""
|
"url": ""
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"IPC-300"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 8554,
|
|
||||||
"url": "/Streaming/Channels/101"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"IPC-340HD",
|
"IPC-340HD",
|
||||||
@@ -465,15 +492,6 @@
|
|||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "snapshot.jpg"
|
"url": "snapshot.jpg"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"IPC-740"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 8554,
|
|
||||||
"url": "/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"IP-CAM",
|
"IP-CAM",
|
||||||
@@ -631,16 +649,6 @@
|
|||||||
"port": 80,
|
"port": 80,
|
||||||
"url": "/videostream.asf?user=[USERNAME]&pwd=[PASSWORD]&resolution=320x240"
|
"url": "/videostream.asf?user=[USERNAME]&pwd=[PASSWORD]&resolution=320x240"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"PX3615",
|
|
||||||
"SK7008-T1F1"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/channels/401"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"PX-3615-675"
|
"PX-3615-675"
|
||||||
@@ -722,6 +730,34 @@
|
|||||||
"protocol": "http",
|
"protocol": "http",
|
||||||
"port": 82,
|
"port": 82,
|
||||||
"url": "/cgi/mjpg/mjpg.cgi"
|
"url": "/cgi/mjpg/mjpg.cgi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"IPC-300"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"IPC-740"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/102"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"PX3615",
|
||||||
|
"SK7008-T1F1"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/channels/401"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
+61
-25
@@ -4,6 +4,42 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"10550",
|
"10550",
|
||||||
@@ -320,31 +356,6 @@
|
|||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/s2"
|
"url": "/s2"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"IPCA53000",
|
|
||||||
"IPCB42510B",
|
|
||||||
"IPCB44510A",
|
|
||||||
"IPCB64515B"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"IPCB42550",
|
|
||||||
"IPCB78520",
|
|
||||||
"NVR10030",
|
|
||||||
"TVIP41500",
|
|
||||||
"TVIP52500"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/Channels/101"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"IPCB54611B",
|
"IPCB54611B",
|
||||||
@@ -635,6 +646,31 @@
|
|||||||
"protocol": "rtsp",
|
"protocol": "rtsp",
|
||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/mpeg4/media.amp?resolution=640x480"
|
"url": "/mpeg4/media.amp?resolution=640x480"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"IPCA53000",
|
||||||
|
"IPCB42510B",
|
||||||
|
"IPCB44510A",
|
||||||
|
"IPCB64515B"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/102"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"IPCB42550",
|
||||||
|
"IPCB78520",
|
||||||
|
"NVR10030",
|
||||||
|
"TVIP41500",
|
||||||
|
"TVIP52500"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/101"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"WIFI-5MP-30"
|
"WIFI-5MP-30"
|
||||||
|
|||||||
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"mega216"
|
"mega216"
|
||||||
|
|||||||
+127
-91
@@ -4,6 +4,42 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"NVR",
|
"NVR",
|
||||||
@@ -220,55 +256,6 @@
|
|||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "snapshot.jpg?user=[USERNAME]&pwd=[PASSWORD]&strm=[CHANNEL]"
|
"url": "snapshot.jpg?user=[USERNAME]&pwd=[PASSWORD]&strm=[CHANNEL]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"141CS",
|
|
||||||
"151DB",
|
|
||||||
"151de",
|
|
||||||
"151dj",
|
|
||||||
"151DM",
|
|
||||||
"191BS",
|
|
||||||
"2MP",
|
|
||||||
"4MP Bullet",
|
|
||||||
"4MP DOME",
|
|
||||||
"720P",
|
|
||||||
"AC500",
|
|
||||||
"AK-N48PIA0-68DT",
|
|
||||||
"c500",
|
|
||||||
"C800",
|
|
||||||
"DE81GB",
|
|
||||||
"DN41R",
|
|
||||||
"DN81R",
|
|
||||||
"DVR",
|
|
||||||
"DW81KD",
|
|
||||||
"i15dx",
|
|
||||||
"i51dm",
|
|
||||||
"I51DS",
|
|
||||||
"I51DX",
|
|
||||||
"I61BK",
|
|
||||||
"I61DR",
|
|
||||||
"I61FC",
|
|
||||||
"I61G",
|
|
||||||
"I91BD",
|
|
||||||
"I91BF",
|
|
||||||
"I91BM",
|
|
||||||
"I91F",
|
|
||||||
"l51DM",
|
|
||||||
"N481Y",
|
|
||||||
"N48PI",
|
|
||||||
"NC400",
|
|
||||||
"NC800",
|
|
||||||
"NCPT500",
|
|
||||||
"Other",
|
|
||||||
"P01",
|
|
||||||
"POE",
|
|
||||||
"VIEW"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/Channels/101"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"141CS",
|
"141CS",
|
||||||
@@ -498,39 +485,6 @@
|
|||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/onvif2"
|
"url": "/onvif2"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"191BS",
|
|
||||||
"AC500",
|
|
||||||
"c800",
|
|
||||||
"C800-4k",
|
|
||||||
"I51DX",
|
|
||||||
"I91BF",
|
|
||||||
"NC800"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"191df"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/channels/102"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"191df"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/channels/101"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"2MP",
|
"2MP",
|
||||||
@@ -659,15 +613,6 @@
|
|||||||
"port": 80,
|
"port": 80,
|
||||||
"url": "/cgi-bin/snapshot.cgi?chn=4&u=[USERNAME]&p=[PASSWORD]"
|
"url": "/cgi-bin/snapshot.cgi?chn=4&u=[USERNAME]&p=[PASSWORD]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"DVR"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/Channels/201"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"h264",
|
"h264",
|
||||||
@@ -851,6 +796,97 @@
|
|||||||
"protocol": "rtsp",
|
"protocol": "rtsp",
|
||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "/h264/ch1/main/av_stream"
|
"url": "/h264/ch1/main/av_stream"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"141CS",
|
||||||
|
"151DB",
|
||||||
|
"151de",
|
||||||
|
"151dj",
|
||||||
|
"151DM",
|
||||||
|
"191BS",
|
||||||
|
"2MP",
|
||||||
|
"4MP Bullet",
|
||||||
|
"4MP DOME",
|
||||||
|
"720P",
|
||||||
|
"AC500",
|
||||||
|
"AK-N48PIA0-68DT",
|
||||||
|
"c500",
|
||||||
|
"C800",
|
||||||
|
"DE81GB",
|
||||||
|
"DN41R",
|
||||||
|
"DN81R",
|
||||||
|
"DVR",
|
||||||
|
"DW81KD",
|
||||||
|
"i15dx",
|
||||||
|
"i51dm",
|
||||||
|
"I51DS",
|
||||||
|
"I51DX",
|
||||||
|
"I61BK",
|
||||||
|
"I61DR",
|
||||||
|
"I61FC",
|
||||||
|
"I61G",
|
||||||
|
"I91BD",
|
||||||
|
"I91BF",
|
||||||
|
"I91BM",
|
||||||
|
"I91F",
|
||||||
|
"l51DM",
|
||||||
|
"N481Y",
|
||||||
|
"N48PI",
|
||||||
|
"NC400",
|
||||||
|
"NC800",
|
||||||
|
"NCPT500",
|
||||||
|
"Other",
|
||||||
|
"P01",
|
||||||
|
"POE",
|
||||||
|
"VIEW"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"191BS",
|
||||||
|
"AC500",
|
||||||
|
"c800",
|
||||||
|
"C800-4k",
|
||||||
|
"I51DX",
|
||||||
|
"I91BF",
|
||||||
|
"NC800"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/102"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"191df"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/channels/102"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"191df"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"DVR"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/201"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"Other"
|
"Other"
|
||||||
|
|||||||
@@ -4,6 +4,42 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 8554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"Outdoor Smart Home Camera",
|
"Outdoor Smart Home Camera",
|
||||||
|
|||||||
+1097
-1052
File diff suppressed because it is too large
Load Diff
+200
-83
@@ -4,6 +4,123 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"040",
|
"040",
|
||||||
@@ -47,69 +164,6 @@
|
|||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/Streaming/Channels/1"
|
"url": "/Streaming/Channels/1"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"ALL",
|
|
||||||
"B220",
|
|
||||||
"C6T",
|
|
||||||
"D110",
|
|
||||||
"DS-H216Q",
|
|
||||||
"DS-I102",
|
|
||||||
"DS-I113",
|
|
||||||
"DS-I114",
|
|
||||||
"DS-I114W",
|
|
||||||
"DS-i126",
|
|
||||||
"ds-i200",
|
|
||||||
"DS-I200(D)",
|
|
||||||
"ds-i203",
|
|
||||||
"DS-I213",
|
|
||||||
"ds-i214",
|
|
||||||
"DS-I214(B)",
|
|
||||||
"ds-i214w(b)",
|
|
||||||
"ds-i223",
|
|
||||||
"DS-I400(C)",
|
|
||||||
"ds-l122",
|
|
||||||
"ds-n241w",
|
|
||||||
"i100",
|
|
||||||
"i110",
|
|
||||||
"I114",
|
|
||||||
"i114w",
|
|
||||||
"I120",
|
|
||||||
"IPC-B120-I",
|
|
||||||
"IPC-B140",
|
|
||||||
"IPC-B622-G2/ZS",
|
|
||||||
"IPC-D082-G2/S",
|
|
||||||
"IPC-D120",
|
|
||||||
"IPC-T640-Z",
|
|
||||||
"l110",
|
|
||||||
"Other",
|
|
||||||
"VDP-D2201",
|
|
||||||
"VDP-D2211W(B)",
|
|
||||||
"watch"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/Channels/101"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"ALL",
|
|
||||||
"DS-I102",
|
|
||||||
"ds-i200",
|
|
||||||
"Ds-i203",
|
|
||||||
"DS-I214(B)",
|
|
||||||
"DS-I214W(B)",
|
|
||||||
"DS-I253",
|
|
||||||
"ds-i458",
|
|
||||||
"HiWatch DS-N208(C)",
|
|
||||||
"i450s"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/ISAPI/Streaming/Channels/101"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"DC-I200",
|
"DC-I200",
|
||||||
@@ -221,16 +275,6 @@
|
|||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/h264_stream"
|
"url": "/h264_stream"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"ds-i200",
|
|
||||||
"VDP-D2201"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 555,
|
|
||||||
"url": "/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"Ds-i203"
|
"Ds-i203"
|
||||||
@@ -240,16 +284,6 @@
|
|||||||
"port": 8000,
|
"port": 8000,
|
||||||
"url": "/"
|
"url": "/"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"DS-I214(B)",
|
|
||||||
"DS-I405"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/ISAPI/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"DS-I220",
|
"DS-I220",
|
||||||
@@ -310,6 +344,89 @@
|
|||||||
"protocol": "rtsp",
|
"protocol": "rtsp",
|
||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/onvif1"
|
"url": "/onvif1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL",
|
||||||
|
"B220",
|
||||||
|
"C6T",
|
||||||
|
"D110",
|
||||||
|
"DS-H216Q",
|
||||||
|
"DS-I102",
|
||||||
|
"DS-I113",
|
||||||
|
"DS-I114",
|
||||||
|
"DS-I114W",
|
||||||
|
"DS-i126",
|
||||||
|
"ds-i200",
|
||||||
|
"DS-I200(D)",
|
||||||
|
"ds-i203",
|
||||||
|
"DS-I213",
|
||||||
|
"ds-i214",
|
||||||
|
"DS-I214(B)",
|
||||||
|
"ds-i214w(b)",
|
||||||
|
"ds-i223",
|
||||||
|
"DS-I400(C)",
|
||||||
|
"ds-l122",
|
||||||
|
"ds-n241w",
|
||||||
|
"i100",
|
||||||
|
"i110",
|
||||||
|
"I114",
|
||||||
|
"i114w",
|
||||||
|
"I120",
|
||||||
|
"IPC-B120-I",
|
||||||
|
"IPC-B140",
|
||||||
|
"IPC-B622-G2/ZS",
|
||||||
|
"IPC-D082-G2/S",
|
||||||
|
"IPC-D120",
|
||||||
|
"IPC-T640-Z",
|
||||||
|
"l110",
|
||||||
|
"Other",
|
||||||
|
"VDP-D2201",
|
||||||
|
"VDP-D2211W(B)",
|
||||||
|
"watch"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL",
|
||||||
|
"DS-I102",
|
||||||
|
"ds-i200",
|
||||||
|
"Ds-i203",
|
||||||
|
"DS-I214(B)",
|
||||||
|
"DS-I214W(B)",
|
||||||
|
"DS-I253",
|
||||||
|
"ds-i458",
|
||||||
|
"HiWatch DS-N208(C)",
|
||||||
|
"i450s"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ds-i200",
|
||||||
|
"VDP-D2201"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 555,
|
||||||
|
"url": "/Streaming/Channels/102"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"DS-I214(B)",
|
||||||
|
"DS-I405"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/ISAPI/Streaming/Channels/102"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"0010/0020",
|
"0010/0020",
|
||||||
@@ -647,15 +665,6 @@
|
|||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "cam[CHANNEL]/h264"
|
"url": "cam[CHANNEL]/h264"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"FCS-3084"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"FCS-4051",
|
"FCS-4051",
|
||||||
@@ -770,6 +779,15 @@
|
|||||||
"protocol": "http",
|
"protocol": "http",
|
||||||
"port": 80,
|
"port": 80,
|
||||||
"url": "/cgi-bin/video.jpg"
|
"url": "/cgi-bin/video.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"FCS-3084"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/102"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
+36
-18
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"0v600-365-kd",
|
"0v600-365-kd",
|
||||||
@@ -153,24 +171,6 @@
|
|||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "snapshot.jpg?account=[USERNAME]&password=[PASSWORD]"
|
"url": "snapshot.jpg?account=[USERNAME]&password=[PASSWORD]"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"BTD2",
|
|
||||||
"CAM2",
|
|
||||||
"DVR-FTD4-8",
|
|
||||||
"DVR-THD30B",
|
|
||||||
"FTD4",
|
|
||||||
"Other",
|
|
||||||
"WM-CAM-WAWNP2L",
|
|
||||||
"wmvr-wnip2",
|
|
||||||
"WNIP2-CM",
|
|
||||||
"WNIP-2lta-bs"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/channels/301"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"CAM-1",
|
"CAM-1",
|
||||||
@@ -375,6 +375,24 @@
|
|||||||
"protocol": "http",
|
"protocol": "http",
|
||||||
"port": 80,
|
"port": 80,
|
||||||
"url": "/cgi-bin/snapshot.cgi?chn=0&u=[USERNAME]&p=[PASSWORD]"
|
"url": "/cgi-bin/snapshot.cgi?chn=0&u=[USERNAME]&p=[PASSWORD]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"BTD2",
|
||||||
|
"CAM2",
|
||||||
|
"DVR-FTD4-8",
|
||||||
|
"DVR-THD30B",
|
||||||
|
"FTD4",
|
||||||
|
"Other",
|
||||||
|
"WM-CAM-WAWNP2L",
|
||||||
|
"wmvr-wnip2",
|
||||||
|
"WNIP2-CM",
|
||||||
|
"WNIP-2lta-bs"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/channels/301"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 10554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 10554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"801",
|
"801",
|
||||||
|
|||||||
+128
-92
@@ -4,6 +4,42 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"005FTCD",
|
"005FTCD",
|
||||||
@@ -588,58 +624,6 @@
|
|||||||
"port": 554,
|
"port": 554,
|
||||||
"url": "/ch05/1"
|
"url": "/ch05/1"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"7-12",
|
|
||||||
"8ch 3MP NVR",
|
|
||||||
"dv8-3425",
|
|
||||||
"DVR w/ Web Port",
|
|
||||||
"DVR W/ WEB PORT",
|
|
||||||
"DVR4 4350",
|
|
||||||
"DVR8",
|
|
||||||
"DVR8-4900",
|
|
||||||
"DVR8-8050",
|
|
||||||
"DVR8-8075",
|
|
||||||
"HDR8050",
|
|
||||||
"lv-9808",
|
|
||||||
"NHD-850CAM",
|
|
||||||
"NHH-880CAM",
|
|
||||||
"nvr16-7090",
|
|
||||||
"NVR-7200",
|
|
||||||
"Other",
|
|
||||||
"SWIFI-FLOCAM2",
|
|
||||||
"swifi-spotcam",
|
|
||||||
"SWIFI-XTRCAM",
|
|
||||||
"SWWHD-OUTCAM",
|
|
||||||
"T855"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/Channels/101"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"880",
|
|
||||||
"DVR4 4350",
|
|
||||||
"DVR8-1500",
|
|
||||||
"DVR8-1525",
|
|
||||||
"DVR8-4500",
|
|
||||||
"DVR8-4900",
|
|
||||||
"HDR8050",
|
|
||||||
"lv-9808",
|
|
||||||
"NHD-850CAM",
|
|
||||||
"nvr16-7090",
|
|
||||||
"NVR-7200",
|
|
||||||
"Other",
|
|
||||||
"SPOTCAM",
|
|
||||||
"WIFI-PT"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/Channels/102"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"887"
|
"887"
|
||||||
@@ -874,37 +858,6 @@
|
|||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "/Streaming/Unicast/channels/401"
|
"url": "/Streaming/Unicast/channels/401"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"DVR W/ WEB PORT",
|
|
||||||
"DVR4 4350",
|
|
||||||
"DVR8-8075",
|
|
||||||
"lv-9808",
|
|
||||||
"Other"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 0,
|
|
||||||
"url": "/Streaming/channels/101"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"DVR-1500"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/Channels/701"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"DVR-1500"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/Channels/601"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"DVR4",
|
"DVR4",
|
||||||
@@ -942,15 +895,6 @@
|
|||||||
"port": 80,
|
"port": 80,
|
||||||
"url": "/?action=stream"
|
"url": "/?action=stream"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"models": [
|
|
||||||
"DVR8-4500"
|
|
||||||
],
|
|
||||||
"type": "FFMPEG",
|
|
||||||
"protocol": "rtsp",
|
|
||||||
"port": 554,
|
|
||||||
"url": "/Streaming/Channels/301"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"DVR8-4500",
|
"DVR8-4500",
|
||||||
@@ -1314,6 +1258,98 @@
|
|||||||
"protocol": "rtsp",
|
"protocol": "rtsp",
|
||||||
"port": 0,
|
"port": 0,
|
||||||
"url": "/Streaming/Channels/2"
|
"url": "/Streaming/Channels/2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"7-12",
|
||||||
|
"8ch 3MP NVR",
|
||||||
|
"dv8-3425",
|
||||||
|
"DVR w/ Web Port",
|
||||||
|
"DVR W/ WEB PORT",
|
||||||
|
"DVR4 4350",
|
||||||
|
"DVR8",
|
||||||
|
"DVR8-4900",
|
||||||
|
"DVR8-8050",
|
||||||
|
"DVR8-8075",
|
||||||
|
"HDR8050",
|
||||||
|
"lv-9808",
|
||||||
|
"NHD-850CAM",
|
||||||
|
"NHH-880CAM",
|
||||||
|
"nvr16-7090",
|
||||||
|
"NVR-7200",
|
||||||
|
"Other",
|
||||||
|
"SWIFI-FLOCAM2",
|
||||||
|
"swifi-spotcam",
|
||||||
|
"SWIFI-XTRCAM",
|
||||||
|
"SWWHD-OUTCAM",
|
||||||
|
"T855"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"880",
|
||||||
|
"DVR4 4350",
|
||||||
|
"DVR8-1500",
|
||||||
|
"DVR8-1525",
|
||||||
|
"DVR8-4500",
|
||||||
|
"DVR8-4900",
|
||||||
|
"HDR8050",
|
||||||
|
"lv-9808",
|
||||||
|
"NHD-850CAM",
|
||||||
|
"nvr16-7090",
|
||||||
|
"NVR-7200",
|
||||||
|
"Other",
|
||||||
|
"SPOTCAM",
|
||||||
|
"WIFI-PT"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/Channels/102"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"DVR W/ WEB PORT",
|
||||||
|
"DVR4 4350",
|
||||||
|
"DVR8-8075",
|
||||||
|
"lv-9808",
|
||||||
|
"Other"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 0,
|
||||||
|
"url": "/Streaming/channels/101"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"DVR-1500"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/701"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"DVR-1500"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/601"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"DVR8-4500"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/301"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,6 +4,24 @@
|
|||||||
"last_updated": "2025-10-17",
|
"last_updated": "2025-10-17",
|
||||||
"source": "ispyconnect.com",
|
"source": "ispyconnect.com",
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"models": [
|
||||||
|
"ALL"
|
||||||
|
],
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
"TBK-BUL8841Z"
|
"TBK-BUL8841Z"
|
||||||
|
|||||||
@@ -31,6 +31,54 @@
|
|||||||
"notes": "Common RTSP sub stream for ONVIF cameras",
|
"notes": "Common RTSP sub stream for ONVIF cameras",
|
||||||
"model_count": 9998
|
"model_count": 9998
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]01",
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"notes": "Hikvision main stream - 0-based channel input (channel 0 -> 101, 1 -> 201)",
|
||||||
|
"model_count": 9500
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]01",
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"notes": "Hikvision main stream - 1-based channel input (channel 1 -> 101, 2 -> 201)",
|
||||||
|
"model_count": 9490
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]02",
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"notes": "Hikvision sub stream - 0-based channel input (channel 0 -> 102, 1 -> 202)",
|
||||||
|
"model_count": 9480
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]02",
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"notes": "Hikvision sub stream - 1-based channel input (channel 1 -> 102, 2 -> 202)",
|
||||||
|
"model_count": 9470
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL+1]03",
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"notes": "Hikvision third stream - 0-based channel input (channel 0 -> 103, 1 -> 203)",
|
||||||
|
"model_count": 9460
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "/Streaming/Channels/[CHANNEL]03",
|
||||||
|
"type": "FFMPEG",
|
||||||
|
"protocol": "rtsp",
|
||||||
|
"port": 554,
|
||||||
|
"notes": "Hikvision third stream - 1-based channel input (channel 1 -> 103, 2 -> 203)",
|
||||||
|
"model_count": 9450
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "/ch2",
|
"url": "/ch2",
|
||||||
"type": "FFMPEG",
|
"type": "FFMPEG",
|
||||||
|
|||||||
@@ -9,13 +9,10 @@ services:
|
|||||||
image: eduard256/strix:latest
|
image: eduard256/strix:latest
|
||||||
container_name: strix
|
container_name: strix
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
network_mode: host
|
||||||
- "4567:4567"
|
|
||||||
environment:
|
environment:
|
||||||
- STRIX_LOG_LEVEL=info
|
- STRIX_LOG_LEVEL=info
|
||||||
- STRIX_LOG_FORMAT=json
|
- STRIX_LOG_FORMAT=json
|
||||||
networks:
|
|
||||||
- cameras
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:4567/api/v1/health"]
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:4567/api/v1/health"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|||||||
+1
-3
@@ -7,9 +7,7 @@ services:
|
|||||||
# build: .
|
# build: .
|
||||||
container_name: strix
|
container_name: strix
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
network_mode: host
|
||||||
ports:
|
|
||||||
- "4567:4567"
|
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
# Logging configuration
|
# Logging configuration
|
||||||
|
|||||||
@@ -302,11 +302,13 @@ func (s *Scanner) collectStreams(ctx context.Context, req models.StreamDiscovery
|
|||||||
"model", req.Model,
|
"model", req.Model,
|
||||||
"limit", req.ModelLimit)
|
"limit", req.ModelLimit)
|
||||||
|
|
||||||
// Search for similar models
|
// Search for cameras using intelligent brand+model search
|
||||||
cameras, err := s.searchEngine.SearchByModel(req.Model, 0.8, req.ModelLimit)
|
searchResp, err := s.searchEngine.Search(req.Model, req.ModelLimit)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.logger.Error("model search failed", err)
|
s.logger.Error("model search failed", err)
|
||||||
} else {
|
} else {
|
||||||
|
cameras := searchResp.Cameras
|
||||||
|
|
||||||
// Collect entries from all matching cameras
|
// Collect entries from all matching cameras
|
||||||
var entries []models.CameraEntry
|
var entries []models.CameraEntry
|
||||||
for _, camera := range cameras {
|
for _, camera := range cameras {
|
||||||
@@ -409,26 +411,27 @@ func (s *Scanner) testStreamsConcurrently(ctx context.Context, streams []models.
|
|||||||
defer cancelProgress()
|
defer cancelProgress()
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
ticker := time.NewTicker(3 * time.Second)
|
// Use longer interval for Ingress mode to reduce traffic (padding is ~64KB per event)
|
||||||
defer ticker.Stop()
|
// Normal mode: 1 second, Ingress mode: 3 seconds
|
||||||
|
progressInterval := 1 * time.Second
|
||||||
|
if streamWriter.IsIngress() {
|
||||||
|
progressInterval = 3 * time.Second
|
||||||
|
}
|
||||||
|
|
||||||
lastTested := int32(0)
|
ticker := time.NewTicker(progressInterval)
|
||||||
|
defer ticker.Stop()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-progressCtx.Done():
|
case <-progressCtx.Done():
|
||||||
return
|
return
|
||||||
case <-ticker.C:
|
case <-ticker.C:
|
||||||
currentTested := atomic.LoadInt32(&tested)
|
// Send progress to prevent WriteTimeout and show scanning activity
|
||||||
// Only send if there's been progress
|
_ = streamWriter.SendJSON("progress", models.ProgressMessage{
|
||||||
if currentTested != lastTested {
|
Tested: int(atomic.LoadInt32(&tested)),
|
||||||
_ = streamWriter.SendJSON("progress", models.ProgressMessage{
|
Found: int(atomic.LoadInt32(&found)),
|
||||||
Tested: int(currentTested),
|
Remaining: len(streams) - int(atomic.LoadInt32(&tested)),
|
||||||
Found: int(atomic.LoadInt32(&found)),
|
})
|
||||||
Remaining: len(streams) - int(currentTested),
|
|
||||||
})
|
|
||||||
lastTested = currentTested
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|||||||
@@ -174,34 +174,38 @@ func (b *Builder) replacePlaceholders(urlPath string, ctx BuildContext) string {
|
|||||||
|
|
||||||
// Common placeholders
|
// Common placeholders
|
||||||
replacements := map[string]string{
|
replacements := map[string]string{
|
||||||
"[CHANNEL]": strconv.Itoa(ctx.Channel),
|
"[CHANNEL]": strconv.Itoa(ctx.Channel),
|
||||||
"[channel]": strconv.Itoa(ctx.Channel),
|
"[channel]": strconv.Itoa(ctx.Channel),
|
||||||
"{channel}": strconv.Itoa(ctx.Channel), // BUBBLE protocol uses {channel}
|
"[CHANNEL+1]": strconv.Itoa(ctx.Channel + 1), // For Hikvision-style channels (101, 201, 301...)
|
||||||
"{CHANNEL}": strconv.Itoa(ctx.Channel),
|
"[channel+1]": strconv.Itoa(ctx.Channel + 1),
|
||||||
"[WIDTH]": strconv.Itoa(ctx.Width),
|
"{CHANNEL}": strconv.Itoa(ctx.Channel), // BUBBLE protocol uses {channel}
|
||||||
"[width]": strconv.Itoa(ctx.Width),
|
"{channel}": strconv.Itoa(ctx.Channel),
|
||||||
"[HEIGHT]": strconv.Itoa(ctx.Height),
|
"{CHANNEL+1}": strconv.Itoa(ctx.Channel + 1),
|
||||||
"[height]": strconv.Itoa(ctx.Height),
|
"{channel+1}": strconv.Itoa(ctx.Channel + 1),
|
||||||
"[USERNAME]": ctx.Username,
|
"[WIDTH]": strconv.Itoa(ctx.Width),
|
||||||
"[username]": ctx.Username,
|
"[width]": strconv.Itoa(ctx.Width),
|
||||||
"[PASSWORD]": ctx.Password,
|
"[HEIGHT]": strconv.Itoa(ctx.Height),
|
||||||
"[password]": ctx.Password,
|
"[height]": strconv.Itoa(ctx.Height),
|
||||||
"[PASWORD]": ctx.Password, // Handle typo in database
|
"[USERNAME]": ctx.Username,
|
||||||
"[pasword]": ctx.Password,
|
"[username]": ctx.Username,
|
||||||
"[USER]": ctx.Username,
|
"[PASSWORD]": ctx.Password,
|
||||||
"[user]": ctx.Username,
|
"[password]": ctx.Password,
|
||||||
"[PASS]": ctx.Password,
|
"[PASWORD]": ctx.Password, // Handle typo in database
|
||||||
"[pass]": ctx.Password,
|
"[pasword]": ctx.Password,
|
||||||
"[PWD]": ctx.Password,
|
"[USER]": ctx.Username,
|
||||||
"[pwd]": ctx.Password,
|
"[user]": ctx.Username,
|
||||||
"[IP]": ctx.IP,
|
"[PASS]": ctx.Password,
|
||||||
"[ip]": ctx.IP,
|
"[pass]": ctx.Password,
|
||||||
"[PORT]": strconv.Itoa(ctx.Port),
|
"[PWD]": ctx.Password,
|
||||||
"[port]": strconv.Itoa(ctx.Port),
|
"[pwd]": ctx.Password,
|
||||||
"[AUTH]": auth, // base64(username:password) for basic auth
|
"[IP]": ctx.IP,
|
||||||
"[auth]": auth,
|
"[ip]": ctx.IP,
|
||||||
"[TOKEN]": "", // Empty for now
|
"[PORT]": strconv.Itoa(ctx.Port),
|
||||||
"[token]": "",
|
"[port]": strconv.Itoa(ctx.Port),
|
||||||
|
"[AUTH]": auth, // base64(username:password) for basic auth
|
||||||
|
"[auth]": auth,
|
||||||
|
"[TOKEN]": "", // Empty for now
|
||||||
|
"[token]": "",
|
||||||
}
|
}
|
||||||
|
|
||||||
// Replace all placeholders
|
// Replace all placeholders
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ func Load() *Config {
|
|||||||
Server: ServerConfig{
|
Server: ServerConfig{
|
||||||
Listen: ":4567", // Default listen address
|
Listen: ":4567", // Default listen address
|
||||||
ReadTimeout: 30 * time.Second,
|
ReadTimeout: 30 * time.Second,
|
||||||
WriteTimeout: 30 * time.Second,
|
WriteTimeout: 5 * time.Minute, // Increased for SSE long-polling
|
||||||
},
|
},
|
||||||
Database: DatabaseConfig{
|
Database: DatabaseConfig{
|
||||||
DataPath: dataPath,
|
DataPath: dataPath,
|
||||||
|
|||||||
+67
-5
@@ -5,9 +5,20 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// IngressPaddingSize is the padding size for Home Assistant Ingress mode.
|
||||||
|
// HA Supervisor uses aiohttp with 64KB buffer for StreamResponse.
|
||||||
|
// We need to fill this buffer to force immediate delivery of SSE events.
|
||||||
|
IngressPaddingSize = 64 * 1024 // 64KB
|
||||||
|
|
||||||
|
// IngressHeader is the header that Home Assistant Ingress adds to requests
|
||||||
|
IngressHeader = "X-Ingress-Path"
|
||||||
|
)
|
||||||
|
|
||||||
// Event represents a Server-Sent Event
|
// Event represents a Server-Sent Event
|
||||||
type Event struct {
|
type Event struct {
|
||||||
ID string
|
ID string
|
||||||
@@ -253,8 +264,9 @@ func generateClientID() string {
|
|||||||
|
|
||||||
// StreamWriter provides a simple interface for writing SSE events
|
// StreamWriter provides a simple interface for writing SSE events
|
||||||
type StreamWriter struct {
|
type StreamWriter struct {
|
||||||
client *Client
|
client *Client
|
||||||
server *Server
|
server *Server
|
||||||
|
isIngress bool // True when running through Home Assistant Ingress proxy
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewStreamWriter creates a new stream writer for a client
|
// NewStreamWriter creates a new stream writer for a client
|
||||||
@@ -275,6 +287,9 @@ func (s *Server) NewStreamWriter(w http.ResponseWriter, r *http.Request) (*Strea
|
|||||||
// Send initial flush to establish connection
|
// Send initial flush to establish connection
|
||||||
flusher.Flush()
|
flusher.Flush()
|
||||||
|
|
||||||
|
// Detect Home Assistant Ingress mode by checking for X-Ingress-Path header
|
||||||
|
isIngress := r.Header.Get(IngressHeader) != ""
|
||||||
|
|
||||||
// Create client
|
// Create client
|
||||||
ctx, cancel := context.WithCancel(r.Context())
|
ctx, cancel := context.WithCancel(r.Context())
|
||||||
client := &Client{
|
client := &Client{
|
||||||
@@ -287,8 +302,9 @@ func (s *Server) NewStreamWriter(w http.ResponseWriter, r *http.Request) (*Strea
|
|||||||
}
|
}
|
||||||
|
|
||||||
return &StreamWriter{
|
return &StreamWriter{
|
||||||
client: client,
|
client: client,
|
||||||
server: s,
|
server: s,
|
||||||
|
isIngress: isIngress,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -304,7 +320,48 @@ func (sw *StreamWriter) SendEvent(eventType string, data interface{}) error {
|
|||||||
return fmt.Errorf("response does not support flushing")
|
return fmt.Errorf("response does not support flushing")
|
||||||
}
|
}
|
||||||
|
|
||||||
return sw.server.writeEvent(sw.client.Response, flusher, event)
|
// Use Ingress-aware write method
|
||||||
|
return sw.writeEventWithIngress(sw.client.Response, flusher, event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// writeEventWithIngress writes an event and adds padding for Ingress mode
|
||||||
|
func (sw *StreamWriter) writeEventWithIngress(w http.ResponseWriter, flusher http.Flusher, event Event) error {
|
||||||
|
// Write the event using standard method
|
||||||
|
if err := sw.server.writeEvent(w, flusher, event); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// In Ingress mode, add padding to fill the 64KB buffer and force immediate delivery
|
||||||
|
if sw.isIngress {
|
||||||
|
if err := sw.writePadding(w, flusher); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// writePadding writes SSE comment padding to fill proxy buffers.
|
||||||
|
// SSE comments (lines starting with ':') are ignored by clients.
|
||||||
|
func (sw *StreamWriter) writePadding(w http.ResponseWriter, flusher http.Flusher) error {
|
||||||
|
// Create padding using SSE comments which are ignored by clients
|
||||||
|
// Each line is ": " + padding content + "\n"
|
||||||
|
// We need ~64KB to fill the aiohttp StreamResponse buffer
|
||||||
|
const lineSize = 1024 // 1KB per line
|
||||||
|
const numLines = 64 // 64 lines = 64KB
|
||||||
|
|
||||||
|
paddingLine := ": " + strings.Repeat(".", lineSize-4) + "\n" // -4 for ": " and "\n"
|
||||||
|
|
||||||
|
for i := 0; i < numLines; i++ {
|
||||||
|
if _, err := fmt.Fprint(w, paddingLine); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flush the padding
|
||||||
|
flusher.Flush()
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendJSON sends JSON data as an event
|
// SendJSON sends JSON data as an event
|
||||||
@@ -312,6 +369,11 @@ func (sw *StreamWriter) SendJSON(eventType string, v interface{}) error {
|
|||||||
return sw.SendEvent(eventType, v)
|
return sw.SendEvent(eventType, v)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IsIngress returns true if running through Home Assistant Ingress proxy
|
||||||
|
func (sw *StreamWriter) IsIngress() bool {
|
||||||
|
return sw.isIngress
|
||||||
|
}
|
||||||
|
|
||||||
// SendMessage sends a simple message
|
// SendMessage sends a simple message
|
||||||
func (sw *StreamWriter) SendMessage(message string) error {
|
func (sw *StreamWriter) SendMessage(message string) error {
|
||||||
return sw.SendEvent("message", map[string]string{"message": message})
|
return sw.SendEvent("message", map[string]string{"message": message})
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "webui",
|
"name": "webui",
|
||||||
"version": "1.0.3",
|
"version": "1.0.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
|||||||
+525
-101
@@ -79,6 +79,37 @@ body {
|
|||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ===== MOCK MODE BADGE ===== */
|
||||||
|
.mock-badge {
|
||||||
|
position: fixed;
|
||||||
|
top: 1rem;
|
||||||
|
right: 1rem;
|
||||||
|
z-index: 9999;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
background: rgba(245, 158, 11, 0.15);
|
||||||
|
border: 1px solid var(--warning);
|
||||||
|
border-radius: 6px;
|
||||||
|
color: var(--warning);
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
animation: fadeIn var(--transition-base);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mock-badge svg {
|
||||||
|
animation: pulse 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% { opacity: 1; }
|
||||||
|
50% { opacity: 0.5; }
|
||||||
|
}
|
||||||
|
|
||||||
/* ===== LAYOUT ===== */
|
/* ===== LAYOUT ===== */
|
||||||
#app {
|
#app {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@@ -555,148 +586,318 @@ body {
|
|||||||
margin-bottom: var(--space-6);
|
margin-bottom: var(--space-6);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===== CAROUSEL ===== */
|
/* ===== STREAMS LIST ===== */
|
||||||
.carousel-wrapper {
|
.streams-list {
|
||||||
position: relative;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-6);
|
||||||
|
padding: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===== STREAM GROUPS ===== */
|
||||||
|
.stream-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--space-4);
|
gap: var(--space-2);
|
||||||
|
padding-bottom: var(--space-2);
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
cursor: pointer;
|
||||||
|
user-select: none;
|
||||||
|
transition: color var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-header:hover {
|
||||||
|
color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-toggle {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
transition: all var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-toggle .chevron {
|
||||||
|
transition: transform var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group.collapsed .stream-group-toggle .chevron {
|
||||||
|
transform: rotate(-90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group.collapsed .stream-group-content {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-title {
|
||||||
|
font-size: var(--text-sm);
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-count {
|
||||||
|
font-size: var(--text-sm);
|
||||||
|
font-weight: 400;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-group-empty {
|
||||||
|
padding: var(--space-4);
|
||||||
|
text-align: center;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
font-size: var(--text-sm);
|
||||||
|
background: var(--bg-secondary);
|
||||||
|
border: 1px dashed var(--border-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ===== STREAM SUBGROUPS (Main/Sub/Other within Recommended) ===== */
|
||||||
|
.stream-subgroup {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup:not(:last-child) {
|
||||||
margin-bottom: var(--space-4);
|
margin-bottom: var(--space-4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel {
|
.stream-subgroup-header {
|
||||||
flex: 1;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding-left: var(--space-2);
|
||||||
|
cursor: pointer;
|
||||||
|
user-select: none;
|
||||||
|
transition: color var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup-header:hover {
|
||||||
|
color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup-toggle {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
transition: all var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup-toggle .chevron {
|
||||||
|
transition: transform var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup.collapsed .stream-subgroup-toggle .chevron {
|
||||||
|
transform: rotate(-90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup.collapsed .stream-subgroup-content {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup-title {
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.08em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup-count {
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
font-weight: 400;
|
||||||
|
color: var(--text-disabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-subgroup-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom scrollbar */
|
||||||
|
.streams-list::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.streams-list::-webkit-scrollbar-track {
|
||||||
|
background: var(--bg-secondary);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.streams-list::-webkit-scrollbar-thumb {
|
||||||
|
background: var(--purple-primary);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.streams-list::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: var(--purple-light);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stream item */
|
||||||
|
.stream-item {
|
||||||
|
background: var(--bg-secondary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
transition: all var(--transition-base);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel-track {
|
.stream-item:hover {
|
||||||
display: flex;
|
|
||||||
transition: transform var(--transition-slow);
|
|
||||||
}
|
|
||||||
|
|
||||||
.stream-card {
|
|
||||||
flex: 0 0 100%;
|
|
||||||
width: 100%;
|
|
||||||
padding: var(--space-6);
|
|
||||||
background: var(--bg-secondary);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 12px;
|
|
||||||
transition: all var(--transition-base);
|
|
||||||
}
|
|
||||||
|
|
||||||
.stream-card:hover {
|
|
||||||
border-color: var(--purple-primary);
|
border-color: var(--purple-primary);
|
||||||
box-shadow: 0 8px 24px var(--purple-glow);
|
box-shadow: 0 4px 12px var(--purple-glow);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-type {
|
.stream-item.expanded {
|
||||||
|
border-color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stream item header */
|
||||||
|
.stream-item-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: var(--space-4);
|
||||||
|
padding: var(--space-4);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-item-main {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-3);
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-info-left {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-2);
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-type-badge {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--space-2);
|
gap: var(--space-2);
|
||||||
font-size: var(--text-sm);
|
font-size: var(--text-sm);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: var(--purple-primary);
|
color: var(--purple-primary);
|
||||||
margin-bottom: var(--space-4);
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-type svg {
|
.stream-type-badge svg {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-url {
|
.stream-url-preview {
|
||||||
|
font-family: var(--font-mono);
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
color: var(--text-secondary);
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-toggle {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding: var(--space-2);
|
||||||
|
cursor: pointer;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
transition: all var(--transition-fast);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-toggle:hover {
|
||||||
|
color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-toggle .chevron {
|
||||||
|
transition: transform var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-item.expanded .stream-toggle .chevron {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-use-stream {
|
||||||
|
flex-shrink: 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
padding: var(--space-3) var(--space-4);
|
||||||
|
font-size: var(--text-sm);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Stream item details */
|
||||||
|
.stream-item-details {
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height var(--transition-base);
|
||||||
|
padding: 0 var(--space-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-item-details.visible {
|
||||||
|
max-height: 500px;
|
||||||
|
padding: 0 var(--space-4) var(--space-4) var(--space-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stream-url-full {
|
||||||
font-family: var(--font-mono);
|
font-family: var(--font-mono);
|
||||||
font-size: var(--text-sm);
|
font-size: var(--text-sm);
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
margin-bottom: var(--space-4);
|
margin-bottom: var(--space-3);
|
||||||
padding: var(--space-3);
|
padding: var(--space-3);
|
||||||
background: var(--bg-tertiary);
|
background: var(--bg-tertiary);
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-meta {
|
.stream-meta-item {
|
||||||
font-size: var(--text-sm);
|
font-size: var(--text-sm);
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
margin-bottom: var(--space-2);
|
margin-bottom: var(--space-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-actions {
|
.stream-meta-item:last-child {
|
||||||
margin-top: var(--space-6);
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.carousel-arrow {
|
.meta-label {
|
||||||
flex-shrink: 0;
|
font-weight: 600;
|
||||||
width: 48px;
|
color: var(--text-primary);
|
||||||
height: 48px;
|
|
||||||
background: var(--bg-elevated);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: all var(--transition-fast);
|
|
||||||
color: var(--text-secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-arrow:hover:not(:disabled) {
|
|
||||||
background: var(--purple-primary);
|
|
||||||
border-color: var(--purple-primary);
|
|
||||||
color: white;
|
|
||||||
box-shadow: 0 4px 12px var(--purple-glow);
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-arrow:disabled {
|
|
||||||
opacity: 0.3;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
|
||||||
.carousel-wrapper {
|
|
||||||
flex-direction: column;
|
|
||||||
gap: var(--space-3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-arrow {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-info {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-counter {
|
|
||||||
font-size: var(--text-sm);
|
|
||||||
color: var(--text-secondary);
|
|
||||||
margin-bottom: var(--space-3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-dots {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
gap: var(--space-2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-dot {
|
|
||||||
width: 8px;
|
|
||||||
height: 8px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background: rgba(139, 92, 246, 0.3);
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: all var(--transition-base);
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-dot.active {
|
|
||||||
width: 24px;
|
|
||||||
border-radius: 4px;
|
|
||||||
background: var(--purple-primary);
|
|
||||||
box-shadow: 0 0 8px var(--purple-glow);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===== SELECTED STREAM INFO ===== */
|
/* ===== SELECTED STREAM INFO ===== */
|
||||||
@@ -718,6 +919,9 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.stream-label {
|
.stream-label {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-2);
|
||||||
font-size: var(--text-xs);
|
font-size: var(--text-xs);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: var(--text-tertiary);
|
color: var(--text-tertiary);
|
||||||
@@ -976,6 +1180,104 @@ body {
|
|||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Button with tooltip wrapper */
|
||||||
|
.button-with-tooltip {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-with-tooltip .btn-generate {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Button with tooltip in secondary-actions */
|
||||||
|
.secondary-actions .button-with-tooltip {
|
||||||
|
flex: 1.2;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.secondary-actions .button-with-tooltip .btn {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.secondary-actions .button-with-tooltip:last-child {
|
||||||
|
flex: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Info icon inside button */
|
||||||
|
.info-icon-button {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
cursor: help;
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
transition: color var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon-button:hover {
|
||||||
|
color: rgba(255, 255, 255, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon-button svg {
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Info icon inside outline button */
|
||||||
|
.info-icon-button-outline {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
cursor: help;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
transition: color var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon-button-outline:hover {
|
||||||
|
color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon-button-outline svg {
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Info icon inside stream type badge */
|
||||||
|
.info-icon-stream {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
margin-left: var(--space-2);
|
||||||
|
cursor: help;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
transition: color var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon-stream:hover {
|
||||||
|
color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon-stream svg {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.frigate-output-section {
|
.frigate-output-section {
|
||||||
margin-top: var(--space-6);
|
margin-top: var(--space-6);
|
||||||
padding-top: var(--space-6);
|
padding-top: var(--space-6);
|
||||||
@@ -987,6 +1289,128 @@ body {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ===== TOOLTIPS ===== */
|
||||||
|
.label-with-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
cursor: help;
|
||||||
|
color: var(--text-tertiary);
|
||||||
|
transition: color var(--transition-fast);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon:hover {
|
||||||
|
color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon svg {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip {
|
||||||
|
position: absolute;
|
||||||
|
bottom: calc(100% + 8px);
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
background: var(--bg-elevated);
|
||||||
|
border: 1px solid var(--purple-primary);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: var(--space-4);
|
||||||
|
width: 320px;
|
||||||
|
max-width: 90vw;
|
||||||
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--purple-glow);
|
||||||
|
z-index: 1000;
|
||||||
|
opacity: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
transition: opacity var(--transition-fast), visibility var(--transition-fast);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tooltip opens downward */
|
||||||
|
.tooltip.tooltip-down {
|
||||||
|
bottom: auto;
|
||||||
|
top: calc(100% + 8px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon:hover .tooltip {
|
||||||
|
opacity: 1;
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
border: 6px solid transparent;
|
||||||
|
border-top-color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Arrow for downward tooltip */
|
||||||
|
.tooltip.tooltip-down::after {
|
||||||
|
top: auto;
|
||||||
|
bottom: 100%;
|
||||||
|
border-top-color: transparent;
|
||||||
|
border-bottom-color: var(--purple-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-title {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--purple-primary);
|
||||||
|
margin-bottom: var(--space-2);
|
||||||
|
font-size: var(--text-sm);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-text {
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
line-height: 1.5;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
margin-bottom: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-text:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-examples {
|
||||||
|
margin-top: var(--space-3);
|
||||||
|
padding-top: var(--space-3);
|
||||||
|
border-top: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-examples-title {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
margin-bottom: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-example {
|
||||||
|
font-family: var(--font-mono);
|
||||||
|
font-size: var(--text-xs);
|
||||||
|
color: var(--purple-light);
|
||||||
|
background: var(--bg-secondary);
|
||||||
|
padding: var(--space-1) var(--space-2);
|
||||||
|
border-radius: 4px;
|
||||||
|
margin-bottom: var(--space-1);
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-example:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* ===== UTILITIES ===== */
|
/* ===== UTILITIES ===== */
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
|
|||||||
Executable
+14
@@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Simple development server for Strix WebUI
|
||||||
|
# This allows you to test the UI without running the Go backend
|
||||||
|
|
||||||
|
PORT=${1:-8080}
|
||||||
|
|
||||||
|
echo "Starting development server on port $PORT"
|
||||||
|
echo "Open: http://localhost:$PORT?mock=true"
|
||||||
|
echo ""
|
||||||
|
echo "Press Ctrl+C to stop"
|
||||||
|
|
||||||
|
# Use Python's built-in HTTP server
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
python3 -m http.server $PORT
|
||||||
+372
-80
@@ -8,6 +8,15 @@
|
|||||||
<link rel="stylesheet" href="css/main.css">
|
<link rel="stylesheet" href="css/main.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<!-- Mock Mode Indicator -->
|
||||||
|
<div id="mock-mode-badge" class="mock-badge hidden">
|
||||||
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
|
||||||
|
<path d="M8 1v6l4 2" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="2" fill="none"/>
|
||||||
|
</svg>
|
||||||
|
MOCK MODE
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<!-- Screen 1: Initial Address Input -->
|
<!-- Screen 1: Initial Address Input -->
|
||||||
<div id="screen-address" class="screen active">
|
<div id="screen-address" class="screen active">
|
||||||
@@ -33,7 +42,30 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="network-address" class="label">Network Address</label>
|
<label for="network-address" class="label label-with-info">
|
||||||
|
Network Address
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Network Address</div>
|
||||||
|
<p class="tooltip-text">Enter the network location of your IP camera. This can be an IP address, hostname, or a complete RTSP URL.</p>
|
||||||
|
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Accepted formats:</div>
|
||||||
|
<code class="tooltip-example">192.168.1.100 - IP address only</code>
|
||||||
|
<code class="tooltip-example">camera.local - Hostname/mDNS</code>
|
||||||
|
<code class="tooltip-example">rtsp://user:pass@192.168.1.100/stream - Full URL</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>Where to find it:</strong><br>Check your camera's web interface, router's DHCP leases page, or network scanner app. Most cameras use addresses in the 192.168.x.x range.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>Next steps:</strong><br>After entering the address, click "Check Address" to validate the camera connection and proceed to stream discovery.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
id="network-address"
|
id="network-address"
|
||||||
@@ -73,7 +105,26 @@
|
|||||||
<h2 class="screen-title">Camera Configuration</h2>
|
<h2 class="screen-title">Camera Configuration</h2>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="address-validated" class="label">Network Address</label>
|
<label for="address-validated" class="label label-with-info">
|
||||||
|
Network Address
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Network Address</div>
|
||||||
|
<p class="tooltip-text">The IP address, hostname, or full RTSP URL of your camera. This is the network location where the camera can be reached.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Examples:</div>
|
||||||
|
<code class="tooltip-example">192.168.1.100</code>
|
||||||
|
<code class="tooltip-example">camera.local</code>
|
||||||
|
<code class="tooltip-example">rtsp://admin:pass@192.168.1.100</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Find it in your camera's network settings or router's device list (DHCP leases).</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<div class="input-validated">
|
<div class="input-validated">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
@@ -88,7 +139,27 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="camera-model" class="label">Camera Model <span class="optional">(optional)</span></label>
|
<label for="camera-model" class="label label-with-info">
|
||||||
|
Camera Model <span class="optional">(optional)</span>
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Camera Model</div>
|
||||||
|
<p class="tooltip-text">The manufacturer and model of your IP camera. This helps the system use optimized stream paths for your specific camera brand.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Examples:</div>
|
||||||
|
<code class="tooltip-example">Hikvision: DS-2CD2142FWD</code>
|
||||||
|
<code class="tooltip-example">Dahua: IPC-HDW4433C</code>
|
||||||
|
<code class="tooltip-example">Amcrest: IP4M-1041</code>
|
||||||
|
<code class="tooltip-example">Reolink: RLC-410</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Find it on the camera label, in the camera's web interface (Device Info), or in your purchase documentation. Leave empty for auto-detection.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<div class="autocomplete-wrapper">
|
<div class="autocomplete-wrapper">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
@@ -104,18 +175,52 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="username" class="label">Username</label>
|
<label for="username" class="label label-with-info">
|
||||||
|
Username
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Username</div>
|
||||||
|
<p class="tooltip-text">The authentication username for accessing your camera's RTSP stream. This is required for most IP cameras to access video feeds.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Common defaults:</div>
|
||||||
|
<code class="tooltip-example">admin</code>
|
||||||
|
<code class="tooltip-example">root</code>
|
||||||
|
<code class="tooltip-example">user</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Find it in your camera setup documentation or the camera's web interface under User Management. Change default credentials for security.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
id="username"
|
id="username"
|
||||||
class="input"
|
class="input"
|
||||||
|
value="admin"
|
||||||
placeholder="admin"
|
placeholder="admin"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="password" class="label">Password</label>
|
<label for="password" class="label label-with-info">
|
||||||
|
Password
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Password</div>
|
||||||
|
<p class="tooltip-text">The authentication password for your camera's RTSP stream. This credential is used together with the username to access the video feed.</p>
|
||||||
|
<p class="tooltip-text">For security reasons, always use a strong, unique password and avoid default passwords like "12345" or "password".</p>
|
||||||
|
<p class="tooltip-text">Find it in your camera's documentation, setup guide, or change it via the camera's web interface under Security/User Management settings.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<div class="input-password-wrapper">
|
<div class="input-password-wrapper">
|
||||||
<input
|
<input
|
||||||
type="password"
|
type="password"
|
||||||
@@ -134,23 +239,65 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="channel" class="label label-with-info">
|
||||||
|
Channel
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Channel Number</div>
|
||||||
|
<p class="tooltip-text">The channel number identifies which specific camera or video input to access on the device.</p>
|
||||||
|
<p class="tooltip-text"><strong>For standalone IP cameras:</strong> Always use 0 (default). Single cameras don't use channel numbers.</p>
|
||||||
|
<p class="tooltip-text"><strong>For NVR/DVR systems ONLY:</strong> Each connected camera has its own channel number. Channel numbering typically starts from 0.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">NVR/DVR channel values:</div>
|
||||||
|
<code class="tooltip-example">0 - First camera on NVR/DVR</code>
|
||||||
|
<code class="tooltip-example">1 - Second camera on NVR/DVR</code>
|
||||||
|
<code class="tooltip-example">2-15 - Additional cameras (for 4, 8, 16-channel NVRs)</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Check your NVR's camera list in the device web interface to see the correct channel assignment for each camera.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="number"
|
||||||
|
id="channel"
|
||||||
|
class="input"
|
||||||
|
value="0"
|
||||||
|
min="0"
|
||||||
|
max="255"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
<details class="advanced-section">
|
<details class="advanced-section">
|
||||||
<summary class="advanced-toggle">Advanced</summary>
|
<summary class="advanced-toggle">Advanced</summary>
|
||||||
<div class="advanced-content">
|
<div class="advanced-content">
|
||||||
<div class="form-group">
|
|
||||||
<label for="channel" class="label">Channel</label>
|
|
||||||
<input
|
|
||||||
type="number"
|
|
||||||
id="channel"
|
|
||||||
class="input"
|
|
||||||
value="0"
|
|
||||||
min="0"
|
|
||||||
max="255"
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="label">Resolution <span class="optional">(optional)</span></label>
|
<label class="label label-with-info">
|
||||||
|
Resolution <span class="optional">(optional)</span>
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Resolution Filter</div>
|
||||||
|
<p class="tooltip-text">Optionally filter discovered streams by specific resolution. Leave empty to find all available resolutions. Use this to target specific stream qualities.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Common resolutions:</div>
|
||||||
|
<code class="tooltip-example">1920 × 1080 - Full HD (main stream)</code>
|
||||||
|
<code class="tooltip-example">1280 × 720 - HD (sub stream)</code>
|
||||||
|
<code class="tooltip-example">640 × 480 - VGA (low quality)</code>
|
||||||
|
<code class="tooltip-example">3840 × 2160 - 4K Ultra HD</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Tip: Leave empty for initial discovery, then use specific values to find particular stream types (main vs sub streams).</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<div class="input-row">
|
<div class="input-row">
|
||||||
<input
|
<input
|
||||||
type="number"
|
type="number"
|
||||||
@@ -169,7 +316,26 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="max-streams" class="label">Max Streams</label>
|
<label for="max-streams" class="label label-with-info">
|
||||||
|
Max Streams
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Maximum Streams</div>
|
||||||
|
<p class="tooltip-text">The maximum number of stream URLs to test during discovery. Higher values increase scan time but may find more stream variants. Lower values speed up discovery.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Recommended values:</div>
|
||||||
|
<code class="tooltip-example">5 - Quick scan (faster)</code>
|
||||||
|
<code class="tooltip-example">10 - Balanced (default)</code>
|
||||||
|
<code class="tooltip-example">20-50 - Thorough scan (slower)</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Purpose: Controls how many different RTSP URL patterns are tested. Most cameras have 2-5 valid streams (main, sub, mobile, etc.).</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<input
|
<input
|
||||||
type="number"
|
type="number"
|
||||||
id="max-streams"
|
id="max-streams"
|
||||||
@@ -207,46 +373,11 @@
|
|||||||
<p id="progress-text" class="progress-text">Starting scan...</p>
|
<p id="progress-text" class="progress-text">Starting scan...</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="stats">
|
|
||||||
<div class="stat">
|
|
||||||
<span class="stat-value" id="stat-tested">0</span>
|
|
||||||
<span class="stat-label">Tested</span>
|
|
||||||
</div>
|
|
||||||
<div class="stat">
|
|
||||||
<span class="stat-value stat-primary" id="stat-found">0</span>
|
|
||||||
<span class="stat-label">Found</span>
|
|
||||||
</div>
|
|
||||||
<div class="stat">
|
|
||||||
<span class="stat-value" id="stat-remaining">0</span>
|
|
||||||
<span class="stat-label">Remaining</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="streams-section" class="streams-section hidden">
|
<div id="streams-section" class="streams-section hidden">
|
||||||
<h3 class="section-title">Found Connections</h3>
|
<h3 class="section-title">Found Connections</h3>
|
||||||
|
|
||||||
<div class="carousel-wrapper">
|
<div id="streams-list" class="streams-list"></div>
|
||||||
<button id="carousel-prev" class="carousel-arrow carousel-arrow-left" aria-label="Previous stream">
|
|
||||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
||||||
<path d="M15 18l-6-6 6-6" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<div class="carousel">
|
|
||||||
<div id="carousel-track" class="carousel-track"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<button id="carousel-next" class="carousel-arrow carousel-arrow-right" aria-label="Next stream">
|
|
||||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
||||||
<path d="M9 18l6-6-6-6" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="carousel-info">
|
|
||||||
<p id="carousel-counter" class="carousel-counter">Stream 1 of 1</p>
|
|
||||||
<div id="carousel-dots" class="carousel-dots"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -265,13 +396,51 @@
|
|||||||
|
|
||||||
<div class="stream-selection-container">
|
<div class="stream-selection-container">
|
||||||
<div class="selected-stream-info">
|
<div class="selected-stream-info">
|
||||||
<p class="stream-label">Main Stream</p>
|
<div class="stream-label">
|
||||||
|
<span>Main Stream</span>
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Main Stream</div>
|
||||||
|
<p class="tooltip-text">The primary high-resolution video stream from your camera. This stream is typically used for recording and high-quality viewing.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Common uses:</div>
|
||||||
|
<code class="tooltip-example">Recording to disk</code>
|
||||||
|
<code class="tooltip-example">Live HD viewing</code>
|
||||||
|
<code class="tooltip-example">High-quality playback</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Resolution is usually 1080p (1920×1080) or higher. Higher resolution means better quality but requires more bandwidth and storage.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<p id="selected-main-type" class="selected-type"></p>
|
<p id="selected-main-type" class="selected-type"></p>
|
||||||
<p id="selected-main-url" class="selected-url"></p>
|
<p id="selected-main-url" class="selected-url"></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="sub-stream-info" class="selected-stream-info sub-stream hidden">
|
<div id="sub-stream-info" class="selected-stream-info sub-stream hidden">
|
||||||
<p class="stream-label">Sub Stream</p>
|
<div class="stream-label">
|
||||||
|
<span>Sub Stream</span>
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Sub Stream</div>
|
||||||
|
<p class="tooltip-text">A secondary lower-resolution video stream from your camera. This stream is optimized for object detection and reduces CPU usage.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Common uses:</div>
|
||||||
|
<code class="tooltip-example">Motion detection</code>
|
||||||
|
<code class="tooltip-example">Object detection (person, car)</code>
|
||||||
|
<code class="tooltip-example">Low-bandwidth monitoring</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text">Resolution is usually 640×480 or 720p. Using a sub stream for detection significantly improves performance while maintaining recording quality on the main stream.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<p id="selected-sub-type" class="selected-type"></p>
|
<p id="selected-sub-type" class="selected-type"></p>
|
||||||
<p id="selected-sub-url" class="selected-url"></p>
|
<p id="selected-sub-url" class="selected-url"></p>
|
||||||
<button id="btn-remove-sub" class="btn-remove-sub">Remove Sub Stream</button>
|
<button id="btn-remove-sub" class="btn-remove-sub">Remove Sub Stream</button>
|
||||||
@@ -280,24 +449,41 @@
|
|||||||
|
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="tabs-scroll">
|
<div class="tabs-scroll">
|
||||||
<button class="tab active" data-tab="url">URL</button>
|
<button class="tab active" data-tab="frigate">Frigate</button>
|
||||||
<button class="tab" data-tab="go2rtc">Go2RTC</button>
|
<button class="tab" data-tab="go2rtc">Go2RTC</button>
|
||||||
<button class="tab" data-tab="frigate">Frigate</button>
|
<button class="tab" data-tab="url">URL</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="tab-pane active" data-pane="url">
|
<div class="tab-pane active" data-pane="frigate">
|
||||||
<pre id="config-url" class="config-code"></pre>
|
|
||||||
</div>
|
|
||||||
<div class="tab-pane" data-pane="go2rtc">
|
|
||||||
<pre id="config-go2rtc" class="config-code"></pre>
|
|
||||||
</div>
|
|
||||||
<div class="tab-pane" data-pane="frigate">
|
|
||||||
<!-- Input section for existing config -->
|
<!-- Input section for existing config -->
|
||||||
<div class="frigate-input-section">
|
<div class="frigate-input-section">
|
||||||
<label class="frigate-label">
|
<label class="frigate-label label-with-info">
|
||||||
Your Current Frigate Config
|
Your Current Frigate Config <span class="optional">(optional)</span>
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Frigate Configuration</div>
|
||||||
|
<p class="tooltip-text">You can either create a new Frigate config or add this camera to your existing configuration.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>Option 1: New Config (Recommended for beginners)</strong><br>Leave the example config below as-is, and the system will generate a complete working configuration for you.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>Option 2: Add to Existing Config</strong><br>If you already have Frigate running, paste your current config.yml here. The system will intelligently add this camera without breaking your existing setup.</p>
|
||||||
|
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Where to find your config.yml:</div>
|
||||||
|
<code class="tooltip-example">Docker: /config/config.yml</code>
|
||||||
|
<code class="tooltip-example">Home Assistant addon: /config/frigate.yml</code>
|
||||||
|
<code class="tooltip-example">Standalone: /etc/frigate/config.yml</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="tooltip-text">The generator will preserve all your existing cameras and settings, only adding the new camera configuration.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
<span class="hint">Paste your existing config.yml or leave the example below</span>
|
<span class="hint">Paste your existing config.yml or leave the example below</span>
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
@@ -308,16 +494,72 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Generate button -->
|
<!-- Generate button -->
|
||||||
<button id="btn-generate-frigate" class="btn btn-primary btn-generate">
|
<div class="button-with-tooltip">
|
||||||
Generate Config
|
<button id="btn-generate-frigate" class="btn btn-primary btn-generate">
|
||||||
</button>
|
Generate Config
|
||||||
|
<span class="info-icon info-icon-button">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Generate Configuration</div>
|
||||||
|
<p class="tooltip-text">This button will process your camera streams and generate a ready-to-use Frigate configuration.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>What happens:</strong></p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Configuration includes:</div>
|
||||||
|
<code class="tooltip-example">Go2RTC streams setup</code>
|
||||||
|
<code class="tooltip-example">Camera with detect & record roles</code>
|
||||||
|
<code class="tooltip-example">Object tracking (person, car, etc.)</code>
|
||||||
|
<code class="tooltip-example">Recording settings</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="tooltip-text">If you provided an existing config, your camera will be added to it. Otherwise, a complete new configuration will be created.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text">After generation, use Copy or Download buttons to save your config.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Output section (hidden by default) -->
|
<!-- Output section (hidden by default) -->
|
||||||
<div id="frigate-output-section" class="frigate-output-section hidden">
|
<div id="frigate-output-section" class="frigate-output-section hidden">
|
||||||
<label class="frigate-label">Updated Config (Camera Added)</label>
|
<label class="frigate-label label-with-info">
|
||||||
|
Updated Config (Camera Added)
|
||||||
|
<span class="info-icon">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">Generated Configuration</div>
|
||||||
|
<p class="tooltip-text">This is your complete Frigate configuration with the camera successfully added.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>What's included:</strong></p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Configuration sections:</div>
|
||||||
|
<code class="tooltip-example">go2rtc: Stream definitions</code>
|
||||||
|
<code class="tooltip-example">cameras: Camera with roles</code>
|
||||||
|
<code class="tooltip-example">objects: Person, car tracking</code>
|
||||||
|
<code class="tooltip-example">record: Recording settings</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>How to use:</strong><br>Copy or download this configuration and save it as <code>config.yml</code> in your Frigate directory. Restart Frigate to apply the changes.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text">If you added to existing config, your previous cameras and settings are preserved - only the new camera was added.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
<pre id="config-frigate" class="config-code"></pre>
|
<pre id="config-frigate" class="config-code"></pre>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="tab-pane" data-pane="go2rtc">
|
||||||
|
<pre id="config-go2rtc" class="config-code"></pre>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane" data-pane="url">
|
||||||
|
<pre id="config-url" class="config-code"></pre>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
@@ -337,15 +579,65 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="secondary-actions">
|
<div class="secondary-actions">
|
||||||
<button id="btn-add-sub-stream" class="btn btn-primary">
|
<div class="button-with-tooltip">
|
||||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
|
<button id="btn-add-sub-stream" class="btn btn-primary">
|
||||||
<path d="M10 4v12M4 10h12" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
|
||||||
</svg>
|
<path d="M10 4v12M4 10h12" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||||
Add Sub Stream
|
</svg>
|
||||||
</button>
|
Add Sub Stream
|
||||||
<button id="btn-new-search" class="btn btn-outline">
|
<span class="info-icon info-icon-button">
|
||||||
Add Another Camera
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
</button>
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Add Sub Stream</div>
|
||||||
|
<p class="tooltip-text">Add a secondary lower-resolution stream for efficient object detection and motion monitoring.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>Why add a sub stream?</strong></p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Benefits:</div>
|
||||||
|
<code class="tooltip-example">Reduces CPU usage by 50-70%</code>
|
||||||
|
<code class="tooltip-example">Faster object detection</code>
|
||||||
|
<code class="tooltip-example">Lower bandwidth consumption</code>
|
||||||
|
<code class="tooltip-example">Main stream quality preserved</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>How it works:</strong><br>After clicking, you'll return to the stream list where you can select a lower-resolution stream (usually 640×480 or 720p). Frigate will use this for detection while recording the main stream in full quality.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>Recommended:</strong> Most IP cameras support multiple streams. Using a sub stream is highly recommended for optimal Frigate performance.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="button-with-tooltip">
|
||||||
|
<button id="btn-new-search" class="btn btn-outline">
|
||||||
|
Add Another Camera
|
||||||
|
<span class="info-icon info-icon-button-outline">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip">
|
||||||
|
<div class="tooltip-title">Add Another Camera</div>
|
||||||
|
<p class="tooltip-text">Start the configuration process for a new camera from the beginning.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>⚠️ Important - Save First!</strong><br>Before clicking this button, make sure to save your current configuration using Copy or Download buttons above. This will reset the form.</p>
|
||||||
|
|
||||||
|
<p class="tooltip-text"><strong>What happens:</strong></p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">The process will:</div>
|
||||||
|
<code class="tooltip-example">1. Return to address input screen</code>
|
||||||
|
<code class="tooltip-example">2. Clear current camera settings</code>
|
||||||
|
<code class="tooltip-example">3. Start fresh discovery</code>
|
||||||
|
<code class="tooltip-example">4. Generate new config for next camera</code>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="tooltip-text">You can then add the new camera to your saved Frigate config by pasting it in the config field.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,14 +1,23 @@
|
|||||||
|
import { MockCameraSearch } from '../mock/mock-data.js';
|
||||||
|
|
||||||
export class CameraSearchAPI {
|
export class CameraSearchAPI {
|
||||||
constructor(baseURL = null) {
|
constructor(baseURL = null, useMock = false) {
|
||||||
// Use relative URLs since API and UI are on the same port
|
// Use relative URLs since API and UI are on the same port
|
||||||
if (!baseURL) {
|
if (!baseURL) {
|
||||||
this.baseURL = '';
|
this.baseURL = '';
|
||||||
} else {
|
} else {
|
||||||
this.baseURL = baseURL;
|
this.baseURL = baseURL;
|
||||||
}
|
}
|
||||||
|
this.useMock = useMock;
|
||||||
|
this.mockAPI = useMock ? new MockCameraSearch() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async search(query, limit = 10) {
|
async search(query, limit = 10) {
|
||||||
|
// Use mock API if enabled
|
||||||
|
if (this.useMock) {
|
||||||
|
return await this.mockAPI.search(query, limit);
|
||||||
|
}
|
||||||
|
|
||||||
const response = await fetch(`${this.baseURL}api/v1/cameras/search`, {
|
const response = await fetch(`${this.baseURL}api/v1/cameras/search`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
|
import { MockStreamDiscovery } from '../mock/mock-data.js';
|
||||||
|
|
||||||
export class StreamDiscoveryAPI {
|
export class StreamDiscoveryAPI {
|
||||||
constructor(baseURL = null) {
|
constructor(baseURL = null, useMock = false) {
|
||||||
// Use relative URLs since API and UI are on the same port
|
// Use relative URLs since API and UI are on the same port
|
||||||
if (!baseURL) {
|
if (!baseURL) {
|
||||||
this.baseURL = '';
|
this.baseURL = '';
|
||||||
@@ -7,11 +9,19 @@ export class StreamDiscoveryAPI {
|
|||||||
this.baseURL = baseURL;
|
this.baseURL = baseURL;
|
||||||
}
|
}
|
||||||
this.eventSource = null;
|
this.eventSource = null;
|
||||||
|
this.useMock = useMock;
|
||||||
|
this.mockAPI = useMock ? new MockStreamDiscovery() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
discover(request, callbacks) {
|
discover(request, callbacks) {
|
||||||
this.close();
|
this.close();
|
||||||
|
|
||||||
|
// Use mock API if enabled
|
||||||
|
if (this.useMock) {
|
||||||
|
this.mockAPI.discover(request, callbacks);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
fetch(`${this.baseURL}api/v1/streams/discover`, {
|
fetch(`${this.baseURL}api/v1/streams/discover`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
@@ -91,6 +101,9 @@ export class StreamDiscoveryAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
|
if (this.useMock && this.mockAPI) {
|
||||||
|
this.mockAPI.close();
|
||||||
|
}
|
||||||
if (this.eventSource) {
|
if (this.eventSource) {
|
||||||
this.eventSource.close();
|
this.eventSource.close();
|
||||||
this.eventSource = null;
|
this.eventSource = null;
|
||||||
|
|||||||
@@ -252,6 +252,15 @@ export class FrigateGenerator {
|
|||||||
return lines;
|
return lines;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build RTSP path with optional ?mp4 suffix for BUBBLE streams
|
||||||
|
*/
|
||||||
|
static buildRtspPath(streamName, streamType) {
|
||||||
|
const basePath = `rtsp://127.0.0.1:8554/${streamName}`;
|
||||||
|
// Add ?mp4 parameter only for BUBBLE streams to enable recording in Frigate
|
||||||
|
return streamType === 'BUBBLE' ? `${basePath}?mp4` : basePath;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate camera lines for cameras section
|
* Generate camera lines for cameras section
|
||||||
*/
|
*/
|
||||||
@@ -264,11 +273,14 @@ export class FrigateGenerator {
|
|||||||
|
|
||||||
if (cameraInfo.subStream) {
|
if (cameraInfo.subStream) {
|
||||||
// Use sub for detect, main for record
|
// Use sub for detect, main for record
|
||||||
lines.push(` - path: rtsp://127.0.0.1:8554/${cameraInfo.subStreamName}`);
|
const subPath = this.buildRtspPath(cameraInfo.subStreamName, cameraInfo.subStream.type);
|
||||||
|
const mainPath = this.buildRtspPath(cameraInfo.mainStreamName, cameraInfo.mainStream.type);
|
||||||
|
|
||||||
|
lines.push(` - path: ${subPath}`);
|
||||||
lines.push(' input_args: preset-rtsp-restream');
|
lines.push(' input_args: preset-rtsp-restream');
|
||||||
lines.push(' roles:');
|
lines.push(' roles:');
|
||||||
lines.push(' - detect');
|
lines.push(' - detect');
|
||||||
lines.push(` - path: rtsp://127.0.0.1:8554/${cameraInfo.mainStreamName}`);
|
lines.push(` - path: ${mainPath}`);
|
||||||
lines.push(' input_args: preset-rtsp-restream');
|
lines.push(' input_args: preset-rtsp-restream');
|
||||||
lines.push(' roles:');
|
lines.push(' roles:');
|
||||||
lines.push(' - record');
|
lines.push(' - record');
|
||||||
@@ -280,7 +292,9 @@ export class FrigateGenerator {
|
|||||||
lines.push(` Sub Stream: ${cameraInfo.subStreamName} # Низкое разрешение (опционально)`);
|
lines.push(` Sub Stream: ${cameraInfo.subStreamName} # Низкое разрешение (опционально)`);
|
||||||
} else {
|
} else {
|
||||||
// Use main for both detect and record
|
// Use main for both detect and record
|
||||||
lines.push(` - path: rtsp://127.0.0.1:8554/${cameraInfo.mainStreamName}`);
|
const mainPath = this.buildRtspPath(cameraInfo.mainStreamName, cameraInfo.mainStream.type);
|
||||||
|
|
||||||
|
lines.push(` - path: ${mainPath}`);
|
||||||
lines.push(' input_args: preset-rtsp-restream');
|
lines.push(' input_args: preset-rtsp-restream');
|
||||||
lines.push(' roles:');
|
lines.push(' roles:');
|
||||||
lines.push(' - detect');
|
lines.push(' - detect');
|
||||||
|
|||||||
+93
-32
@@ -1,18 +1,36 @@
|
|||||||
import { CameraSearchAPI } from './api/camera-search.js';
|
import { CameraSearchAPI } from './api/camera-search.js';
|
||||||
import { StreamDiscoveryAPI } from './api/stream-discovery.js';
|
import { StreamDiscoveryAPI } from './api/stream-discovery.js';
|
||||||
|
import { MockCameraAPI } from './mock/mock-camera-api.js';
|
||||||
|
import { MockStreamAPI } from './mock/mock-stream-api.js';
|
||||||
import { SearchForm } from './ui/search-form.js';
|
import { SearchForm } from './ui/search-form.js';
|
||||||
import { StreamCarousel } from './ui/stream-carousel.js';
|
import { StreamList } from './ui/stream-list.js';
|
||||||
import { ConfigPanel } from './ui/config-panel.js';
|
import { ConfigPanel } from './ui/config-panel.js';
|
||||||
import { FrigateGenerator } from './config-generators/frigate/index.js';
|
import { FrigateGenerator } from './config-generators/frigate/index.js';
|
||||||
import { showToast } from './utils/toast.js';
|
import { showToast } from './utils/toast.js';
|
||||||
|
|
||||||
class StrixApp {
|
class StrixApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.cameraAPI = new CameraSearchAPI();
|
// Check if mock mode is enabled via URL parameter
|
||||||
this.streamAPI = new StreamDiscoveryAPI();
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
|
const isMockMode = urlParams.get('mock') === 'true';
|
||||||
|
|
||||||
|
if (isMockMode) {
|
||||||
|
console.log('🎭 Mock mode enabled - using fake data');
|
||||||
|
this.cameraAPI = new MockCameraAPI();
|
||||||
|
this.streamAPI = new MockStreamAPI();
|
||||||
|
|
||||||
|
// Show mock mode badge
|
||||||
|
const mockBadge = document.getElementById('mock-mode-badge');
|
||||||
|
if (mockBadge) {
|
||||||
|
mockBadge.classList.remove('hidden');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.cameraAPI = new CameraSearchAPI();
|
||||||
|
this.streamAPI = new StreamDiscoveryAPI();
|
||||||
|
}
|
||||||
|
|
||||||
this.searchForm = new SearchForm();
|
this.searchForm = new SearchForm();
|
||||||
this.carousel = new StreamCarousel();
|
this.streamList = new StreamList();
|
||||||
this.configPanel = new ConfigPanel();
|
this.configPanel = new ConfigPanel();
|
||||||
|
|
||||||
this.currentAddress = '';
|
this.currentAddress = '';
|
||||||
@@ -20,15 +38,41 @@ class StrixApp {
|
|||||||
this.selectedMainStream = null;
|
this.selectedMainStream = null;
|
||||||
this.selectedSubStream = null;
|
this.selectedSubStream = null;
|
||||||
this.isSelectingSubStream = false;
|
this.isSelectingSubStream = false;
|
||||||
|
this.frigateConfigGenerated = false; // Track if Frigate config has been generated
|
||||||
|
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
this.setupEventListeners();
|
this.setupEventListeners();
|
||||||
|
this.prefillNetworkAddress();
|
||||||
this.showScreen('address');
|
this.showScreen('address');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pre-fill network address input with smart default based on server IP
|
||||||
|
*/
|
||||||
|
prefillNetworkAddress() {
|
||||||
|
const hostname = window.location.hostname;
|
||||||
|
const input = document.getElementById('network-address');
|
||||||
|
|
||||||
|
// Skip if localhost or empty
|
||||||
|
if (!hostname || hostname === 'localhost' || hostname === '127.0.0.1' || hostname === '0.0.0.0') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if hostname is an IP address (matches pattern like 192.168.1.1)
|
||||||
|
const ipPattern = /^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/;
|
||||||
|
const match = hostname.match(ipPattern);
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
// Extract first three octets (e.g., "192.168.1." from "192.168.1.254")
|
||||||
|
const networkPrefix = `${match[1]}.${match[2]}.${match[3]}.`;
|
||||||
|
input.value = networkPrefix;
|
||||||
|
input.placeholder = `${networkPrefix}100`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
setupEventListeners() {
|
setupEventListeners() {
|
||||||
// Screen 1: Address input
|
// Screen 1: Address input
|
||||||
document.getElementById('btn-check-address').addEventListener('click', () => this.checkAddress());
|
document.getElementById('btn-check-address').addEventListener('click', () => this.checkAddress());
|
||||||
@@ -77,24 +121,6 @@ class StrixApp {
|
|||||||
this.showScreen('config');
|
this.showScreen('config');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Carousel navigation
|
|
||||||
document.getElementById('carousel-prev').addEventListener('click', () => {
|
|
||||||
this.carousel.prev();
|
|
||||||
});
|
|
||||||
|
|
||||||
document.getElementById('carousel-next').addEventListener('click', () => {
|
|
||||||
this.carousel.next();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Keyboard navigation
|
|
||||||
document.addEventListener('keydown', (e) => {
|
|
||||||
const currentScreen = document.querySelector('.screen.active').id;
|
|
||||||
if (currentScreen === 'screen-discovery') {
|
|
||||||
if (e.key === 'ArrowLeft') this.carousel.prev();
|
|
||||||
if (e.key === 'ArrowRight') this.carousel.next();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Screen 4: Configuration output
|
// Screen 4: Configuration output
|
||||||
document.getElementById('btn-back-to-streams').addEventListener('click', () => {
|
document.getElementById('btn-back-to-streams').addEventListener('click', () => {
|
||||||
this.isSelectingSubStream = false;
|
this.isSelectingSubStream = false;
|
||||||
@@ -155,10 +181,12 @@ class StrixApp {
|
|||||||
try {
|
try {
|
||||||
const urlObj = new URL(url);
|
const urlObj = new URL(url);
|
||||||
|
|
||||||
// Extract credentials
|
// Extract credentials (only override if provided in URL)
|
||||||
if (urlObj.username) {
|
if (urlObj.username) {
|
||||||
document.getElementById('username').value = urlObj.username;
|
document.getElementById('username').value = urlObj.username;
|
||||||
}
|
}
|
||||||
|
// If no username in URL, keep the default "admin" value
|
||||||
|
|
||||||
if (urlObj.password) {
|
if (urlObj.password) {
|
||||||
document.getElementById('password').value = urlObj.password;
|
document.getElementById('password').value = urlObj.password;
|
||||||
}
|
}
|
||||||
@@ -285,11 +313,13 @@ class StrixApp {
|
|||||||
resetDiscoveryUI() {
|
resetDiscoveryUI() {
|
||||||
document.getElementById('progress-fill').style.width = '0%';
|
document.getElementById('progress-fill').style.width = '0%';
|
||||||
document.getElementById('progress-text').textContent = 'Starting scan...';
|
document.getElementById('progress-text').textContent = 'Starting scan...';
|
||||||
document.getElementById('stat-tested').textContent = '0';
|
|
||||||
document.getElementById('stat-found').textContent = '0';
|
|
||||||
document.getElementById('stat-remaining').textContent = '0';
|
|
||||||
document.getElementById('streams-section').classList.add('hidden');
|
document.getElementById('streams-section').classList.add('hidden');
|
||||||
this.currentStreams = [];
|
this.currentStreams = [];
|
||||||
|
// Reset stream list state for fresh discovery
|
||||||
|
this.streamList.selectionMode = 'main';
|
||||||
|
this.streamList.collapsedGroups.clear();
|
||||||
|
this.streamList.collapsedSubgroups.clear();
|
||||||
|
this.streamList.needsSmartDefaults = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
handleProgress(data) {
|
handleProgress(data) {
|
||||||
@@ -298,9 +328,6 @@ class StrixApp {
|
|||||||
|
|
||||||
document.getElementById('progress-fill').style.width = `${percentage}%`;
|
document.getElementById('progress-fill').style.width = `${percentage}%`;
|
||||||
document.getElementById('progress-text').textContent = `Testing streams... ${Math.round(percentage)}%`;
|
document.getElementById('progress-text').textContent = `Testing streams... ${Math.round(percentage)}%`;
|
||||||
document.getElementById('stat-tested').textContent = data.tested;
|
|
||||||
document.getElementById('stat-found').textContent = data.found;
|
|
||||||
document.getElementById('stat-remaining').textContent = data.remaining;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handleStreamFound(data) {
|
handleStreamFound(data) {
|
||||||
@@ -312,8 +339,8 @@ class StrixApp {
|
|||||||
streamsSection.classList.remove('hidden');
|
streamsSection.classList.remove('hidden');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update carousel
|
// Update stream list (smart defaults applied automatically on first render)
|
||||||
this.carousel.render(this.currentStreams, (stream, index) => {
|
this.streamList.render(this.currentStreams, (stream, index) => {
|
||||||
this.selectStream(stream, index);
|
this.selectStream(stream, index);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -338,16 +365,22 @@ class StrixApp {
|
|||||||
// Selecting main stream
|
// Selecting main stream
|
||||||
this.selectedMainStream = stream;
|
this.selectedMainStream = stream;
|
||||||
this.selectedSubStream = null;
|
this.selectedSubStream = null;
|
||||||
|
this.frigateConfigGenerated = false; // Reset Frigate config state
|
||||||
this.configPanel.render(this.selectedMainStream, this.selectedSubStream);
|
this.configPanel.render(this.selectedMainStream, this.selectedSubStream);
|
||||||
this.updateSubStreamUI();
|
this.updateSubStreamUI();
|
||||||
this.showScreen('output');
|
this.showScreen('output');
|
||||||
|
// Hide action buttons initially since Frigate tab is active by default
|
||||||
|
document.querySelector('.actions').style.display = 'none';
|
||||||
} else {
|
} else {
|
||||||
// Selecting sub stream
|
// Selecting sub stream
|
||||||
this.selectedSubStream = stream;
|
this.selectedSubStream = stream;
|
||||||
this.isSelectingSubStream = false;
|
this.isSelectingSubStream = false;
|
||||||
|
this.frigateConfigGenerated = false; // Reset Frigate config state
|
||||||
this.configPanel.render(this.selectedMainStream, this.selectedSubStream);
|
this.configPanel.render(this.selectedMainStream, this.selectedSubStream);
|
||||||
this.updateSubStreamUI();
|
this.updateSubStreamUI();
|
||||||
this.showScreen('output');
|
this.showScreen('output');
|
||||||
|
// Hide action buttons initially since Frigate tab is active by default
|
||||||
|
document.querySelector('.actions').style.display = 'none';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -363,14 +396,28 @@ class StrixApp {
|
|||||||
document.getElementById('frigate-output-section').classList.add('hidden');
|
document.getElementById('frigate-output-section').classList.add('hidden');
|
||||||
document.getElementById('config-frigate').textContent = '';
|
document.getElementById('config-frigate').textContent = '';
|
||||||
|
|
||||||
|
// Set stream list to sub selection mode (will collapse Main, show Sub)
|
||||||
|
this.streamList.setSelectionMode('sub');
|
||||||
|
this.streamList.render(this.currentStreams, (stream, index) => {
|
||||||
|
this.selectStream(stream, index);
|
||||||
|
});
|
||||||
|
|
||||||
showToast('Select a sub stream from available streams');
|
showToast('Select a sub stream from available streams');
|
||||||
this.showScreen('discovery');
|
this.showScreen('discovery');
|
||||||
}
|
}
|
||||||
|
|
||||||
removeSubStream() {
|
removeSubStream() {
|
||||||
this.selectedSubStream = null;
|
this.selectedSubStream = null;
|
||||||
|
this.frigateConfigGenerated = false; // Reset Frigate config state when sub stream is removed
|
||||||
this.configPanel.render(this.selectedMainStream, this.selectedSubStream);
|
this.configPanel.render(this.selectedMainStream, this.selectedSubStream);
|
||||||
this.updateSubStreamUI();
|
this.updateSubStreamUI();
|
||||||
|
|
||||||
|
// Hide action buttons if on Frigate tab
|
||||||
|
const activeTab = document.querySelector('.tab.active').dataset.tab;
|
||||||
|
if (activeTab === 'frigate') {
|
||||||
|
document.querySelector('.actions').style.display = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
showToast('Sub stream removed');
|
showToast('Sub stream removed');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -395,6 +442,10 @@ class StrixApp {
|
|||||||
document.getElementById('config-frigate').textContent = newConfig;
|
document.getElementById('config-frigate').textContent = newConfig;
|
||||||
document.getElementById('frigate-output-section').classList.remove('hidden');
|
document.getElementById('frigate-output-section').classList.remove('hidden');
|
||||||
|
|
||||||
|
// Mark as generated and show action buttons
|
||||||
|
this.frigateConfigGenerated = true;
|
||||||
|
document.querySelector('.actions').style.display = 'flex';
|
||||||
|
|
||||||
// Scroll to result
|
// Scroll to result
|
||||||
document.getElementById('frigate-output-section').scrollIntoView({
|
document.getElementById('frigate-output-section').scrollIntoView({
|
||||||
behavior: 'smooth',
|
behavior: 'smooth',
|
||||||
@@ -429,6 +480,16 @@ class StrixApp {
|
|||||||
// Update tab panes
|
// Update tab panes
|
||||||
document.querySelectorAll('.tab-pane').forEach(p => p.classList.remove('active'));
|
document.querySelectorAll('.tab-pane').forEach(p => p.classList.remove('active'));
|
||||||
document.querySelector(`.tab-pane[data-pane="${tabName}"]`).classList.add('active');
|
document.querySelector(`.tab-pane[data-pane="${tabName}"]`).classList.add('active');
|
||||||
|
|
||||||
|
// Show/hide action buttons based on tab and Frigate config state
|
||||||
|
const actionsContainer = document.querySelector('.actions');
|
||||||
|
if (tabName === 'frigate' && !this.frigateConfigGenerated) {
|
||||||
|
// Hide buttons on Frigate tab until config is generated
|
||||||
|
actionsContainer.style.display = 'none';
|
||||||
|
} else {
|
||||||
|
// Show buttons for other tabs or after Frigate config is generated
|
||||||
|
actionsContainer.style.display = 'flex';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
copyConfig() {
|
copyConfig() {
|
||||||
@@ -482,7 +543,7 @@ class StrixApp {
|
|||||||
document.getElementById('camera-model').value = '';
|
document.getElementById('camera-model').value = '';
|
||||||
document.getElementById('camera-model').disabled = false;
|
document.getElementById('camera-model').disabled = false;
|
||||||
document.getElementById('camera-model').placeholder = 'Start typing...';
|
document.getElementById('camera-model').placeholder = 'Start typing...';
|
||||||
document.getElementById('username').value = '';
|
document.getElementById('username').value = 'admin'; // Reset to default value
|
||||||
document.getElementById('password').value = '';
|
document.getElementById('password').value = '';
|
||||||
document.getElementById('channel').value = '0';
|
document.getElementById('channel').value = '0';
|
||||||
document.getElementById('max-streams').value = '10';
|
document.getElementById('max-streams').value = '10';
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
// Mock implementation of CameraSearchAPI for development
|
||||||
|
export class MockCameraAPI {
|
||||||
|
constructor() {
|
||||||
|
this.mockCameras = [
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2042WD-I" },
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2142FWD-I" },
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2032-I" },
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2385G1-I" },
|
||||||
|
{ brand: "Dahua", model: "IPC-HFW4431R-Z" },
|
||||||
|
{ brand: "Dahua", model: "IPC-HDBW4433R-ZS" },
|
||||||
|
{ brand: "Dahua", model: "DH-IPC-HFW2431S-S-S2" },
|
||||||
|
{ brand: "Dahua", model: "IPC-HDW2531T-AS-S2" },
|
||||||
|
{ brand: "Axis", model: "M3046-V" },
|
||||||
|
{ brand: "Axis", model: "P3245-LVE" },
|
||||||
|
{ brand: "Axis", model: "M5525-E" },
|
||||||
|
{ brand: "Uniview", model: "IPC322SR3-DVS28-F" },
|
||||||
|
{ brand: "Uniview", model: "IPC2124SR3-DPF40" },
|
||||||
|
{ brand: "Reolink", model: "RLC-410" },
|
||||||
|
{ brand: "Reolink", model: "RLC-520A" },
|
||||||
|
{ brand: "Reolink", model: "RLC-810A" },
|
||||||
|
{ brand: "TP-Link", model: "VIGI C300HP-4" },
|
||||||
|
{ brand: "TP-Link", model: "VIGI C540V" },
|
||||||
|
{ brand: "Amcrest", model: "IP8M-2496EW" },
|
||||||
|
{ brand: "Amcrest", model: "IP4M-1041B" },
|
||||||
|
{ brand: "Foscam", model: "FI9900P" },
|
||||||
|
{ brand: "Foscam", model: "R5" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
async search(query, limit = 10) {
|
||||||
|
// Simulate network delay
|
||||||
|
await this.delay(150);
|
||||||
|
|
||||||
|
const lowerQuery = query.toLowerCase();
|
||||||
|
const filtered = this.mockCameras.filter(camera => {
|
||||||
|
const searchText = `${camera.brand} ${camera.model}`.toLowerCase();
|
||||||
|
return searchText.includes(lowerQuery);
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
cameras: filtered.slice(0, limit),
|
||||||
|
total: filtered.length
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,209 @@
|
|||||||
|
// Mock data for development and testing
|
||||||
|
export const MOCK_CAMERAS = [
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2143G0-I" },
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2385G1-I" },
|
||||||
|
{ brand: "Hikvision", model: "DS-2CD2T85G1-I8" },
|
||||||
|
{ brand: "Dahua", model: "IPC-HFW5831E-Z5E" },
|
||||||
|
{ brand: "Dahua", model: "IPC-HDW5831R-ZE" },
|
||||||
|
{ brand: "Axis", model: "M3046-V" },
|
||||||
|
{ brand: "Axis", model: "P3245-LVE" },
|
||||||
|
{ brand: "Uniview", model: "IPC2324LB-ADZK-G" },
|
||||||
|
{ brand: "Reolink", model: "RLC-810A" },
|
||||||
|
{ brand: "TP-Link", model: "VIGI C540V" }
|
||||||
|
];
|
||||||
|
|
||||||
|
export const MOCK_STREAMS = [
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100:554/stream1",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 4096,
|
||||||
|
audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100:554/stream2",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "640x360",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 15,
|
||||||
|
bitrate: 512,
|
||||||
|
audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "http://admin:password@192.168.1.100:80/onvif/device_service",
|
||||||
|
type: "ONVIF",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 4096,
|
||||||
|
audio: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100/live/main",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "2560x1440",
|
||||||
|
codec: "h265",
|
||||||
|
fps: 30,
|
||||||
|
bitrate: 6144,
|
||||||
|
audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100/live/sub",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "704x576",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 15,
|
||||||
|
bitrate: 768,
|
||||||
|
audio: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100:554/ch01/0",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "3840x2160",
|
||||||
|
codec: "h265",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 8192,
|
||||||
|
audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100:554/ch01/1",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1280x720",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 20,
|
||||||
|
bitrate: 2048,
|
||||||
|
audio: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "http://admin:password@192.168.1.100:8080/video.mjpeg",
|
||||||
|
type: "MJPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "mjpeg",
|
||||||
|
fps: 10,
|
||||||
|
bitrate: 3072,
|
||||||
|
audio: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://admin:password@192.168.1.100/h264_stream",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 30,
|
||||||
|
bitrate: 4096,
|
||||||
|
audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "http://admin:password@192.168.1.100:8081/stream.m3u8",
|
||||||
|
type: "HLS",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "h264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 4096,
|
||||||
|
audio: true
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
// Mock Camera Search API
|
||||||
|
export class MockCameraSearch {
|
||||||
|
async search(query, limit = 10) {
|
||||||
|
// Simulate network delay
|
||||||
|
await this.delay(100);
|
||||||
|
|
||||||
|
const results = MOCK_CAMERAS.filter(camera => {
|
||||||
|
const searchStr = `${camera.brand} ${camera.model}`.toLowerCase();
|
||||||
|
return searchStr.includes(query.toLowerCase());
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
cameras: results.slice(0, limit),
|
||||||
|
total: results.length
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mock Stream Discovery API
|
||||||
|
export class MockStreamDiscovery {
|
||||||
|
constructor() {
|
||||||
|
this.isRunning = false;
|
||||||
|
this.timeoutId = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
discover(request, callbacks) {
|
||||||
|
this.isRunning = true;
|
||||||
|
let tested = 0;
|
||||||
|
const totalToTest = 516;
|
||||||
|
const foundStreams = [...MOCK_STREAMS];
|
||||||
|
|
||||||
|
// Initial progress
|
||||||
|
callbacks.onProgress({
|
||||||
|
tested: 0,
|
||||||
|
found: 0,
|
||||||
|
remaining: totalToTest
|
||||||
|
});
|
||||||
|
|
||||||
|
// Simulate progressive testing
|
||||||
|
const progressInterval = setInterval(() => {
|
||||||
|
if (!this.isRunning) {
|
||||||
|
clearInterval(progressInterval);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
tested += Math.floor(Math.random() * 30) + 20;
|
||||||
|
if (tested > totalToTest) tested = totalToTest;
|
||||||
|
|
||||||
|
callbacks.onProgress({
|
||||||
|
tested: tested,
|
||||||
|
found: foundStreams.length,
|
||||||
|
remaining: totalToTest - tested
|
||||||
|
});
|
||||||
|
|
||||||
|
if (tested >= totalToTest) {
|
||||||
|
clearInterval(progressInterval);
|
||||||
|
}
|
||||||
|
}, 200);
|
||||||
|
|
||||||
|
// Send found streams progressively
|
||||||
|
let streamIndex = 0;
|
||||||
|
const streamInterval = setInterval(() => {
|
||||||
|
if (!this.isRunning) {
|
||||||
|
clearInterval(streamInterval);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (streamIndex < foundStreams.length) {
|
||||||
|
callbacks.onStreamFound({
|
||||||
|
stream: foundStreams[streamIndex]
|
||||||
|
});
|
||||||
|
streamIndex++;
|
||||||
|
} else {
|
||||||
|
clearInterval(streamInterval);
|
||||||
|
}
|
||||||
|
}, 800);
|
||||||
|
|
||||||
|
// Complete after ~7.7 seconds
|
||||||
|
this.timeoutId = setTimeout(() => {
|
||||||
|
if (!this.isRunning) return;
|
||||||
|
|
||||||
|
callbacks.onComplete({
|
||||||
|
total_found: foundStreams.length,
|
||||||
|
duration: 7.7
|
||||||
|
});
|
||||||
|
|
||||||
|
this.isRunning = false;
|
||||||
|
}, 7700);
|
||||||
|
}
|
||||||
|
|
||||||
|
close() {
|
||||||
|
this.isRunning = false;
|
||||||
|
if (this.timeoutId) {
|
||||||
|
clearTimeout(this.timeoutId);
|
||||||
|
this.timeoutId = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,311 @@
|
|||||||
|
// Mock implementation of StreamDiscoveryAPI for development
|
||||||
|
export class MockStreamAPI {
|
||||||
|
constructor() {
|
||||||
|
this.mockStreams = [
|
||||||
|
// RTSP Main streams (1920x1080)
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/Streaming/Channels/101",
|
||||||
|
path: "/Streaming/Channels/101",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 4096000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/live/main",
|
||||||
|
path: "/live/main",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 30,
|
||||||
|
bitrate: 4608000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/stream1",
|
||||||
|
path: "/stream1",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.265",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 3584000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
// JPEG snapshots (5 items in different positions)
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/snap.jpg",
|
||||||
|
path: "/snap.jpg",
|
||||||
|
type: "JPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "JPEG",
|
||||||
|
fps: 1,
|
||||||
|
bitrate: 0,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// RTSP Sub streams (640x480)
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/Streaming/Channels/102",
|
||||||
|
path: "/Streaming/Channels/102",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "640x480",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 5,
|
||||||
|
bitrate: 512000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/live/sub",
|
||||||
|
path: "/live/sub",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "640x480",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 10,
|
||||||
|
bitrate: 768000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// JPEG #2
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/cgi-bin/snapshot.cgi",
|
||||||
|
path: "/cgi-bin/snapshot.cgi",
|
||||||
|
type: "JPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "JPEG",
|
||||||
|
fps: 1,
|
||||||
|
bitrate: 0,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/stream2",
|
||||||
|
path: "/stream2",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "640x480",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 15,
|
||||||
|
bitrate: 640000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// ONVIF streams
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/onvif/profile0",
|
||||||
|
path: "/onvif/profile0",
|
||||||
|
type: "ONVIF",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 4096000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/onvif/profile1",
|
||||||
|
path: "/onvif/profile1",
|
||||||
|
type: "ONVIF",
|
||||||
|
resolution: "640x480",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 15,
|
||||||
|
bitrate: 512000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// JPEG #3
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/image/jpeg.cgi",
|
||||||
|
path: "/image/jpeg.cgi",
|
||||||
|
type: "JPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "JPEG",
|
||||||
|
fps: 1,
|
||||||
|
bitrate: 0,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// More RTSP variants
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/cam/realmonitor?channel=1&subtype=0",
|
||||||
|
path: "/cam/realmonitor?channel=1&subtype=0",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.265",
|
||||||
|
fps: 30,
|
||||||
|
bitrate: 5120000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/cam/realmonitor?channel=1&subtype=1",
|
||||||
|
path: "/cam/realmonitor?channel=1&subtype=1",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "640x480",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 10,
|
||||||
|
bitrate: 512000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// MJPEG
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/video.mjpg",
|
||||||
|
path: "/video.mjpg",
|
||||||
|
type: "MJPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "MJPEG",
|
||||||
|
fps: 10,
|
||||||
|
bitrate: 3072000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// JPEG #4
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/Streaming/channels/1/picture",
|
||||||
|
path: "/Streaming/channels/1/picture",
|
||||||
|
type: "JPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "JPEG",
|
||||||
|
fps: 1,
|
||||||
|
bitrate: 0,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// HLS
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/stream/live.m3u8",
|
||||||
|
path: "/stream/live.m3u8",
|
||||||
|
type: "HLS",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 3072000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
// HTTP Video
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/videostream.cgi?user=admin&pwd=12345",
|
||||||
|
path: "/videostream.cgi?user=admin&pwd=12345",
|
||||||
|
type: "HTTP_VIDEO",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 20,
|
||||||
|
bitrate: 2560000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// BUBBLE
|
||||||
|
{
|
||||||
|
url: "bubble://192.168.1.100:34567/bubble/live?ch=0&stream=0",
|
||||||
|
path: "/bubble/live?ch=0&stream=0",
|
||||||
|
type: "BUBBLE",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 3584000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
// JPEG #5
|
||||||
|
{
|
||||||
|
url: "http://192.168.1.100/tmpfs/auto.jpg",
|
||||||
|
path: "/tmpfs/auto.jpg",
|
||||||
|
type: "JPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "JPEG",
|
||||||
|
fps: 1,
|
||||||
|
bitrate: 0,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
// Additional RTSP
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/h264_stream",
|
||||||
|
path: "/h264_stream",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 30,
|
||||||
|
bitrate: 4096000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/av0_0",
|
||||||
|
path: "/av0_0",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 3840000,
|
||||||
|
has_audio: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/av0_1",
|
||||||
|
path: "/av0_1",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "640x480",
|
||||||
|
codec: "H.264",
|
||||||
|
fps: 10,
|
||||||
|
bitrate: 512000,
|
||||||
|
has_audio: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "rtsp://192.168.1.100:554/unicast/c1/s0/live",
|
||||||
|
path: "/unicast/c1/s0/live",
|
||||||
|
type: "FFMPEG",
|
||||||
|
resolution: "1920x1080",
|
||||||
|
codec: "H.265",
|
||||||
|
fps: 25,
|
||||||
|
bitrate: 4608000,
|
||||||
|
has_audio: true
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
discover(request, callbacks) {
|
||||||
|
const totalToScan = 450;
|
||||||
|
const streamsToFind = this.mockStreams;
|
||||||
|
let tested = 0;
|
||||||
|
let found = 0;
|
||||||
|
|
||||||
|
const startTime = Date.now();
|
||||||
|
|
||||||
|
// Simulate progressive discovery - 1 stream per second
|
||||||
|
const progressInterval = setInterval(() => {
|
||||||
|
const increment = Math.floor(Math.random() * 15) + 10;
|
||||||
|
tested = Math.min(tested + increment, totalToScan);
|
||||||
|
const remaining = totalToScan - tested;
|
||||||
|
|
||||||
|
// Send progress event
|
||||||
|
if (callbacks.onProgress) {
|
||||||
|
callbacks.onProgress({
|
||||||
|
tested: tested,
|
||||||
|
found: found,
|
||||||
|
remaining: remaining
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Complete when done
|
||||||
|
if (tested >= totalToScan) {
|
||||||
|
clearInterval(progressInterval);
|
||||||
|
|
||||||
|
const duration = (Date.now() - startTime) / 1000;
|
||||||
|
|
||||||
|
if (callbacks.onComplete) {
|
||||||
|
callbacks.onComplete({
|
||||||
|
total_tested: totalToScan,
|
||||||
|
total_found: found,
|
||||||
|
duration: duration
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 300);
|
||||||
|
|
||||||
|
// Find streams at ~1 per second
|
||||||
|
const streamInterval = setInterval(() => {
|
||||||
|
if (found < streamsToFind.length) {
|
||||||
|
const stream = streamsToFind[found];
|
||||||
|
found++;
|
||||||
|
|
||||||
|
if (callbacks.onStreamFound) {
|
||||||
|
callbacks.onStreamFound({
|
||||||
|
stream: stream
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
clearInterval(streamInterval);
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
close() {
|
||||||
|
// Nothing to close in mock mode
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,562 @@
|
|||||||
|
export class StreamList {
|
||||||
|
constructor() {
|
||||||
|
this.listContainer = document.getElementById('streams-list');
|
||||||
|
this.streams = [];
|
||||||
|
this.onUseCallback = null;
|
||||||
|
this.expandedIndex = null;
|
||||||
|
// Track collapsed state for groups and subgroups
|
||||||
|
this.collapsedGroups = new Set();
|
||||||
|
this.collapsedSubgroups = new Set();
|
||||||
|
// Selection mode: 'main' or 'sub'
|
||||||
|
this.selectionMode = 'main';
|
||||||
|
// Flag to apply smart defaults on first render after reset
|
||||||
|
this.needsSmartDefaults = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set selection mode and apply smart defaults for collapsed state
|
||||||
|
* Only resets collapsed state when mode actually changes
|
||||||
|
*/
|
||||||
|
setSelectionMode(mode) {
|
||||||
|
if (this.selectionMode === mode) return;
|
||||||
|
|
||||||
|
this.selectionMode = mode;
|
||||||
|
this.applySmartDefaults();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply smart collapsed defaults based on current selection mode and available streams
|
||||||
|
*/
|
||||||
|
applySmartDefaults() {
|
||||||
|
// Get current stream classification
|
||||||
|
const recommended = this.streams.filter(s => this.isRecommended(s));
|
||||||
|
const { main, sub, other } = this.classifyRecommendedStreams(
|
||||||
|
recommended.map((stream, i) => ({ stream, index: i }))
|
||||||
|
);
|
||||||
|
|
||||||
|
// Reset all collapsed states
|
||||||
|
this.collapsedGroups.clear();
|
||||||
|
this.collapsedSubgroups.clear();
|
||||||
|
|
||||||
|
if (this.selectionMode === 'main') {
|
||||||
|
// Main mode: show Main, collapse Sub/Other/Alternative
|
||||||
|
if (main.length > 0) {
|
||||||
|
// Has main streams - collapse everything except Main
|
||||||
|
this.collapsedGroups.add('alternative');
|
||||||
|
this.collapsedSubgroups.add('recommended-sub');
|
||||||
|
this.collapsedSubgroups.add('recommended-other');
|
||||||
|
}
|
||||||
|
// If no main streams - leave everything open
|
||||||
|
} else {
|
||||||
|
// Sub mode: show Sub, collapse Main/Other/Alternative
|
||||||
|
if (sub.length > 0) {
|
||||||
|
// Has sub streams - collapse everything except Sub
|
||||||
|
this.collapsedGroups.add('alternative');
|
||||||
|
this.collapsedSubgroups.add('recommended-main');
|
||||||
|
this.collapsedSubgroups.add('recommended-other');
|
||||||
|
}
|
||||||
|
// If no sub streams - leave everything open
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stream types considered "recommended" (standard video streams)
|
||||||
|
static RECOMMENDED_TYPES = ['FFMPEG', 'ONVIF'];
|
||||||
|
|
||||||
|
// Minimum width threshold for Main streams (HD quality)
|
||||||
|
static MIN_MAIN_WIDTH = 720;
|
||||||
|
|
||||||
|
// Minimum gap between resolutions to split Main/Sub
|
||||||
|
static MIN_GAP_FOR_SPLIT = 400;
|
||||||
|
|
||||||
|
isRecommended(stream) {
|
||||||
|
return StreamList.RECOMMENDED_TYPES.includes(stream.type);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse resolution string "1920x1080" to width number
|
||||||
|
* Returns null if resolution is missing or invalid
|
||||||
|
*/
|
||||||
|
parseResolutionWidth(resolution) {
|
||||||
|
if (!resolution) return null;
|
||||||
|
const match = resolution.match(/^(\d+)x(\d+)$/);
|
||||||
|
if (!match) return null;
|
||||||
|
return parseInt(match[1], 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Classify recommended streams into Main/Sub/Other using clustering algorithm
|
||||||
|
*
|
||||||
|
* Algorithm:
|
||||||
|
* 1. Streams with width >= 720 are candidates for Main
|
||||||
|
* 2. Streams with width < 720 go to Sub
|
||||||
|
* 3. Streams without resolution go to Other
|
||||||
|
* 4. Among Main candidates, find max gap between sorted resolutions
|
||||||
|
* 5. If gap > 400px, split into Main (higher) and Sub (lower)
|
||||||
|
*/
|
||||||
|
classifyRecommendedStreams(items) {
|
||||||
|
const main = [];
|
||||||
|
const sub = [];
|
||||||
|
const other = [];
|
||||||
|
|
||||||
|
// First pass: separate by resolution availability and threshold
|
||||||
|
const mainCandidates = []; // width >= 720
|
||||||
|
|
||||||
|
items.forEach(item => {
|
||||||
|
const width = this.parseResolutionWidth(item.stream.resolution);
|
||||||
|
|
||||||
|
if (width === null) {
|
||||||
|
other.push(item);
|
||||||
|
} else if (width < StreamList.MIN_MAIN_WIDTH) {
|
||||||
|
sub.push(item);
|
||||||
|
} else {
|
||||||
|
mainCandidates.push({ ...item, width });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// If no main candidates or only one, no need to cluster
|
||||||
|
if (mainCandidates.length <= 1) {
|
||||||
|
mainCandidates.forEach(item => main.push({ stream: item.stream, index: item.index }));
|
||||||
|
return { main, sub, other };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sort candidates by width descending
|
||||||
|
mainCandidates.sort((a, b) => b.width - a.width);
|
||||||
|
|
||||||
|
// Find the largest gap between adjacent resolutions
|
||||||
|
let maxGap = 0;
|
||||||
|
let splitIndex = -1;
|
||||||
|
|
||||||
|
for (let i = 0; i < mainCandidates.length - 1; i++) {
|
||||||
|
const gap = mainCandidates[i].width - mainCandidates[i + 1].width;
|
||||||
|
if (gap > maxGap) {
|
||||||
|
maxGap = gap;
|
||||||
|
splitIndex = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If max gap is significant, split into Main and Sub
|
||||||
|
if (maxGap > StreamList.MIN_GAP_FOR_SPLIT && splitIndex >= 0) {
|
||||||
|
mainCandidates.forEach((item, i) => {
|
||||||
|
const cleanItem = { stream: item.stream, index: item.index };
|
||||||
|
if (i <= splitIndex) {
|
||||||
|
main.push(cleanItem);
|
||||||
|
} else {
|
||||||
|
sub.push(cleanItem);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// All candidates stay in Main
|
||||||
|
mainCandidates.forEach(item => {
|
||||||
|
main.push({ stream: item.stream, index: item.index });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return { main, sub, other };
|
||||||
|
}
|
||||||
|
|
||||||
|
render(streams, onUseCallback) {
|
||||||
|
this.streams = streams;
|
||||||
|
this.onUseCallback = onUseCallback;
|
||||||
|
|
||||||
|
// Apply smart defaults on first render after reset
|
||||||
|
if (this.needsSmartDefaults && streams.length > 0) {
|
||||||
|
this.needsSmartDefaults = false;
|
||||||
|
this.applySmartDefaults();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Split streams into groups while preserving original indices
|
||||||
|
const recommended = [];
|
||||||
|
const alternative = [];
|
||||||
|
|
||||||
|
streams.forEach((stream, index) => {
|
||||||
|
if (this.isRecommended(stream)) {
|
||||||
|
recommended.push({ stream, index });
|
||||||
|
} else {
|
||||||
|
alternative.push({ stream, index });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Render only non-empty groups
|
||||||
|
let html = '';
|
||||||
|
if (recommended.length > 0) {
|
||||||
|
html += this.renderRecommendedGroup(recommended);
|
||||||
|
}
|
||||||
|
if (alternative.length > 0) {
|
||||||
|
html += this.renderGroup('Alternative', alternative, 'alternative');
|
||||||
|
}
|
||||||
|
this.listContainer.innerHTML = html;
|
||||||
|
|
||||||
|
// Attach event listeners
|
||||||
|
this.attachEventListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render Recommended group with Main/Sub/Other subgroups
|
||||||
|
*/
|
||||||
|
renderRecommendedGroup(items) {
|
||||||
|
const { main, sub, other } = this.classifyRecommendedStreams(items);
|
||||||
|
const totalCount = items.length;
|
||||||
|
const isCollapsed = this.collapsedGroups.has('recommended');
|
||||||
|
|
||||||
|
let subgroupsHtml = '';
|
||||||
|
|
||||||
|
if (main.length > 0) {
|
||||||
|
subgroupsHtml += this.renderSubgroup('Main', main, 'recommended');
|
||||||
|
}
|
||||||
|
if (sub.length > 0) {
|
||||||
|
subgroupsHtml += this.renderSubgroup('Sub', sub, 'recommended');
|
||||||
|
}
|
||||||
|
if (other.length > 0) {
|
||||||
|
subgroupsHtml += this.renderSubgroup('Other', other, 'recommended');
|
||||||
|
}
|
||||||
|
|
||||||
|
return `
|
||||||
|
<div class="stream-group stream-group-recommended ${isCollapsed ? 'collapsed' : ''}">
|
||||||
|
<div class="stream-group-header" data-group="recommended">
|
||||||
|
<button class="stream-group-toggle" aria-label="Toggle group">
|
||||||
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" class="chevron">
|
||||||
|
<path d="M3 4.5l3 3 3-3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
<span class="stream-group-title">Recommended</span>
|
||||||
|
<span class="stream-group-count">(${totalCount})</span>
|
||||||
|
</div>
|
||||||
|
<div class="stream-group-content">
|
||||||
|
${subgroupsHtml}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render a subgroup (Main/Sub/Other) within Recommended
|
||||||
|
*/
|
||||||
|
renderSubgroup(title, items, parentGroup) {
|
||||||
|
const subgroupKey = `${parentGroup}-${title.toLowerCase()}`;
|
||||||
|
const isCollapsed = this.collapsedSubgroups.has(subgroupKey);
|
||||||
|
|
||||||
|
return `
|
||||||
|
<div class="stream-subgroup ${isCollapsed ? 'collapsed' : ''}" data-subgroup="${subgroupKey}">
|
||||||
|
<div class="stream-subgroup-header" data-subgroup="${subgroupKey}">
|
||||||
|
<button class="stream-subgroup-toggle" aria-label="Toggle subgroup">
|
||||||
|
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" class="chevron">
|
||||||
|
<path d="M2.5 3.75l2.5 2.5 2.5-2.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
<span class="stream-subgroup-title">${title}</span>
|
||||||
|
<span class="stream-subgroup-count">(${items.length})</span>
|
||||||
|
</div>
|
||||||
|
<div class="stream-subgroup-content">
|
||||||
|
${items.map(({ stream, index }) => this.renderItem(stream, index)).join('')}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
renderGroup(title, items, groupClass) {
|
||||||
|
const count = items.length;
|
||||||
|
const isCollapsed = this.collapsedGroups.has(groupClass);
|
||||||
|
|
||||||
|
return `
|
||||||
|
<div class="stream-group stream-group-${groupClass} ${isCollapsed ? 'collapsed' : ''}">
|
||||||
|
<div class="stream-group-header" data-group="${groupClass}">
|
||||||
|
<button class="stream-group-toggle" aria-label="Toggle group">
|
||||||
|
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" class="chevron">
|
||||||
|
<path d="M3 4.5l3 3 3-3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
<span class="stream-group-title">${title}</span>
|
||||||
|
<span class="stream-group-count">(${count})</span>
|
||||||
|
</div>
|
||||||
|
<div class="stream-group-content">
|
||||||
|
${items.map(({ stream, index }) => this.renderItem(stream, index)).join('')}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
renderItem(stream, index) {
|
||||||
|
const icon = this.getStreamIcon(stream.type);
|
||||||
|
const isExpanded = this.expandedIndex === index;
|
||||||
|
const truncatedUrl = this.truncateURL(stream.url, 60);
|
||||||
|
|
||||||
|
return `
|
||||||
|
<div class="stream-item ${isExpanded ? 'expanded' : ''}" data-index="${index}">
|
||||||
|
<div class="stream-item-header" data-index="${index}">
|
||||||
|
<div class="stream-item-main">
|
||||||
|
<div class="stream-info-left">
|
||||||
|
<div class="stream-type-badge">
|
||||||
|
${icon}
|
||||||
|
<span>${stream.type}</span>
|
||||||
|
${this.getStreamTypeTooltip(stream.type)}
|
||||||
|
</div>
|
||||||
|
<div class="stream-url-preview">${truncatedUrl}</div>
|
||||||
|
</div>
|
||||||
|
<button class="stream-toggle" data-index="${index}" aria-label="Toggle details">
|
||||||
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" class="chevron">
|
||||||
|
<path d="M4 6l4 4 4-4" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<button class="btn btn-primary btn-use-stream" data-index="${index}">Use Stream</button>
|
||||||
|
</div>
|
||||||
|
<div class="stream-item-details ${isExpanded ? 'visible' : ''}">
|
||||||
|
<div class="stream-url-full">${stream.url}</div>
|
||||||
|
${stream.resolution ? `<div class="stream-meta-item"><span class="meta-label">Resolution:</span> ${stream.resolution}</div>` : ''}
|
||||||
|
${stream.codec ? `<div class="stream-meta-item"><span class="meta-label">Codec:</span> ${stream.codec}${stream.fps ? ` • ${stream.fps} fps` : ''}${stream.bitrate ? ` • ${Math.round(stream.bitrate / 1000)} Kbps` : ''}</div>` : ''}
|
||||||
|
${stream.has_audio ? '<div class="stream-meta-item"><span class="meta-label">Audio:</span> Yes</div>' : ''}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
truncateURL(url, maxLength = 60) {
|
||||||
|
if (url.length <= maxLength) {
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
return url.substring(0, maxLength) + '...';
|
||||||
|
}
|
||||||
|
|
||||||
|
getStreamIcon(type) {
|
||||||
|
const icons = {
|
||||||
|
'FFMPEG': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><rect x="3" y="4" width="14" height="12" rx="1" stroke="currentColor" stroke-width="1.5"/><circle cx="7" cy="8" r="1" fill="currentColor"/><path d="M14 14l-3-2-3 2V8l3 2 3-2v6z" fill="currentColor"/></svg>',
|
||||||
|
'ONVIF': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><circle cx="10" cy="10" r="2" fill="currentColor"/><circle cx="10" cy="10" r="5" stroke="currentColor" stroke-width="1.5" stroke-dasharray="2 2"/><circle cx="10" cy="10" r="8" stroke="currentColor" stroke-width="1.5" stroke-dasharray="3 3"/></svg>',
|
||||||
|
'JPEG': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><rect x="3" y="4" width="14" height="12" rx="1" stroke="currentColor" stroke-width="1.5"/><circle cx="7" cy="8" r="1" fill="currentColor"/><path d="M3 13l4-4 3 3 5-5" stroke="currentColor" stroke-width="1.5"/></svg>',
|
||||||
|
'MJPEG': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><rect x="2" y="4" width="7" height="12" rx="1" stroke="currentColor" stroke-width="1.5"/><rect x="11" y="4" width="7" height="12" rx="1" stroke="currentColor" stroke-width="1.5"/><path d="M5 8l2 2-2 2M14 8l2 2-2 2" stroke="currentColor" stroke-width="1.5"/></svg>',
|
||||||
|
'HLS': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><circle cx="10" cy="10" r="7" stroke="currentColor" stroke-width="1.5"/><path d="M10 6v8M6 10h8" stroke="currentColor" stroke-width="1.5"/></svg>',
|
||||||
|
'HTTP_VIDEO': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M7 6l6 4-6 4V6z" fill="currentColor"/><circle cx="10" cy="10" r="8" stroke="currentColor" stroke-width="1.5"/></svg>',
|
||||||
|
'BUBBLE': '<svg width="20" height="20" viewBox="0 0 20 20" fill="none"><circle cx="10" cy="10" r="7" stroke="currentColor" stroke-width="1.5"/><circle cx="7" cy="9" r="1.5" fill="currentColor"/><circle cx="10" cy="9" r="1.5" fill="currentColor"/><circle cx="13" cy="9" r="1.5" fill="currentColor"/><path d="M6 13q2 2 4 2t4-2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/></svg>'
|
||||||
|
};
|
||||||
|
return icons[type] || icons['FFMPEG'];
|
||||||
|
}
|
||||||
|
|
||||||
|
getStreamTypeTooltip(type) {
|
||||||
|
const tooltips = {
|
||||||
|
'FFMPEG': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">FFMPEG Stream</div>
|
||||||
|
<p class="tooltip-text">Standard video stream decoded by FFmpeg. Most compatible and widely supported format for RTSP, HTTP, and other protocols.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">✓ Universal compatibility</code>
|
||||||
|
<code class="tooltip-example">✓ Supports H.264, H.265, MJPEG</code>
|
||||||
|
<code class="tooltip-example">✓ Works with most cameras</code>
|
||||||
|
<code class="tooltip-example">✓ Best for recording</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Best for:</strong> Main streams, recording, high-quality playback. Default choice for most use cases.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`,
|
||||||
|
'ONVIF': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">ONVIF Stream</div>
|
||||||
|
<p class="tooltip-text">Industry standard protocol for IP cameras. Discovered via ONVIF specification, ensuring maximum compatibility with camera features.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">✓ Standardized protocol</code>
|
||||||
|
<code class="tooltip-example">✓ Auto-discovery support</code>
|
||||||
|
<code class="tooltip-example">✓ PTZ control capable</code>
|
||||||
|
<code class="tooltip-example">✓ Vendor-independent</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Best for:</strong> Enterprise cameras, systems requiring standardization, cameras with PTZ controls.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`,
|
||||||
|
'JPEG': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">JPEG Snapshot</div>
|
||||||
|
<p class="tooltip-text">Single static image endpoint. Can be converted to video stream by repeatedly fetching images.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">✓ Low bandwidth</code>
|
||||||
|
<code class="tooltip-example">✓ Simple HTTP request</code>
|
||||||
|
<code class="tooltip-example">✓ No streaming protocol needed</code>
|
||||||
|
<code class="tooltip-example">⚠ Limited framerate (1-10 fps)</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Best for:</strong> Thumbnails, snapshots, very low bandwidth scenarios. Not recommended for recording.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`,
|
||||||
|
'MJPEG': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">MJPEG Stream</div>
|
||||||
|
<p class="tooltip-text">Motion JPEG - sequence of JPEG images transmitted continuously. Simple but bandwidth-intensive.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">✓ Simple HTTP streaming</code>
|
||||||
|
<code class="tooltip-example">✓ No complex codecs</code>
|
||||||
|
<code class="tooltip-example">✓ Frame-by-frame</code>
|
||||||
|
<code class="tooltip-example">⚠ High bandwidth usage</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Best for:</strong> Sub streams, low-latency monitoring, simple camera integration. Higher bandwidth than H.264.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`,
|
||||||
|
'HLS': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">HLS Stream</div>
|
||||||
|
<p class="tooltip-text">HTTP Live Streaming - Apple's adaptive bitrate streaming protocol. Delivers video in small chunks over HTTP.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">✓ Adaptive bitrate</code>
|
||||||
|
<code class="tooltip-example">✓ Wide browser support</code>
|
||||||
|
<code class="tooltip-example">✓ Firewall-friendly (HTTP)</code>
|
||||||
|
<code class="tooltip-example">⚠ Higher latency (5-30s)</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Best for:</strong> Web playback, public streaming, CDN delivery. Not ideal for real-time monitoring.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`,
|
||||||
|
'HTTP_VIDEO': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">HTTP Video Stream</div>
|
||||||
|
<p class="tooltip-text">Generic HTTP-based video stream. Simple protocol that works over standard web connections.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">✓ Simple HTTP protocol</code>
|
||||||
|
<code class="tooltip-example">✓ No special ports</code>
|
||||||
|
<code class="tooltip-example">✓ Firewall-friendly</code>
|
||||||
|
<code class="tooltip-example">✓ Direct browser playback</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Best for:</strong> Quick viewing, simple setups, scenarios where RTSP ports are blocked.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`,
|
||||||
|
'BUBBLE': `
|
||||||
|
<span class="info-icon info-icon-stream">
|
||||||
|
<svg viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5"/>
|
||||||
|
<path d="M8 7v4M8 5v.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
<div class="tooltip tooltip-down">
|
||||||
|
<div class="tooltip-title">BUBBLE / DVRIP Protocol</div>
|
||||||
|
<p class="tooltip-text">Proprietary protocol for Chinese DVR/NVR cameras. Also known as: ESeeCloud, dvr163, DVR-IP, NetSurveillance, Sofia protocol, XMeye SDK.</p>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Compatible brands:</div>
|
||||||
|
<code class="tooltip-example">XMEye, Floureon, ZOSI</code>
|
||||||
|
<code class="tooltip-example">Sannce, Annke, DVR163</code>
|
||||||
|
<code class="tooltip-example">ESeeCloud, NetSurveillance</code>
|
||||||
|
</div>
|
||||||
|
<div class="tooltip-examples">
|
||||||
|
<div class="tooltip-examples-title">Features:</div>
|
||||||
|
<code class="tooltip-example">⚠ Proprietary protocol</code>
|
||||||
|
<code class="tooltip-example">✓ Go2RTC converts to standard</code>
|
||||||
|
<code class="tooltip-example">✓ Two-way audio support</code>
|
||||||
|
<code class="tooltip-example">⚠ TCP only (port 34567)</code>
|
||||||
|
</div>
|
||||||
|
<p class="tooltip-text"><strong>Note:</strong> Automatically converted to standard RTSP format by Go2RTC. Works seamlessly with Frigate without additional configuration.</p>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
`
|
||||||
|
};
|
||||||
|
return tooltips[type] || '';
|
||||||
|
}
|
||||||
|
|
||||||
|
attachEventListeners() {
|
||||||
|
// Group header toggle (Recommended, Alternative)
|
||||||
|
this.listContainer.querySelectorAll('.stream-group-header').forEach(header => {
|
||||||
|
header.addEventListener('click', (e) => {
|
||||||
|
const groupKey = header.dataset.group;
|
||||||
|
if (groupKey) {
|
||||||
|
this.toggleGroup(groupKey);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Subgroup header toggle (Main, Sub, Other)
|
||||||
|
this.listContainer.querySelectorAll('.stream-subgroup-header').forEach(header => {
|
||||||
|
header.addEventListener('click', (e) => {
|
||||||
|
e.stopPropagation(); // Don't bubble to group header
|
||||||
|
const subgroupKey = header.dataset.subgroup;
|
||||||
|
if (subgroupKey) {
|
||||||
|
this.toggleSubgroup(subgroupKey);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Click on stream item header to toggle details
|
||||||
|
this.listContainer.querySelectorAll('.stream-item-header').forEach(header => {
|
||||||
|
header.addEventListener('click', (e) => {
|
||||||
|
// Don't toggle if clicking "Use Stream" button
|
||||||
|
if (e.target.closest('.btn-use-stream')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const index = parseInt(header.dataset.index);
|
||||||
|
this.toggleExpand(index);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Use Stream buttons
|
||||||
|
this.listContainer.querySelectorAll('.btn-use-stream').forEach(btn => {
|
||||||
|
btn.addEventListener('click', (e) => {
|
||||||
|
e.stopPropagation(); // Prevent toggle
|
||||||
|
const index = parseInt(e.target.dataset.index);
|
||||||
|
if (this.onUseCallback) {
|
||||||
|
this.onUseCallback(this.streams[index], index);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleGroup(groupKey) {
|
||||||
|
if (this.collapsedGroups.has(groupKey)) {
|
||||||
|
this.collapsedGroups.delete(groupKey);
|
||||||
|
} else {
|
||||||
|
this.collapsedGroups.add(groupKey);
|
||||||
|
}
|
||||||
|
this.render(this.streams, this.onUseCallback);
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleSubgroup(subgroupKey) {
|
||||||
|
if (this.collapsedSubgroups.has(subgroupKey)) {
|
||||||
|
this.collapsedSubgroups.delete(subgroupKey);
|
||||||
|
} else {
|
||||||
|
this.collapsedSubgroups.add(subgroupKey);
|
||||||
|
}
|
||||||
|
this.render(this.streams, this.onUseCallback);
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleExpand(index) {
|
||||||
|
if (this.expandedIndex === index) {
|
||||||
|
// Collapse if already expanded
|
||||||
|
this.expandedIndex = null;
|
||||||
|
} else {
|
||||||
|
// Expand new item
|
||||||
|
this.expandedIndex = index;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Re-render to update state
|
||||||
|
this.render(this.streams, this.onUseCallback);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user