{"id":30179816,"url":"https://github.com/whitlocktech/rtspdeck","last_synced_at":"2025-08-12T06:23:32.463Z","repository":{"id":308438130,"uuid":"1031208128","full_name":"whitlocktech/RTSPDeck","owner":"whitlocktech","description":"RTSP View for Security Cameras","archived":false,"fork":false,"pushed_at":"2025-08-05T23:30:56.000Z","size":28425,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-06T00:17:39.114Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/whitlocktech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-03T08:48:24.000Z","updated_at":"2025-08-05T23:31:00.000Z","dependencies_parsed_at":"2025-08-06T00:27:48.816Z","dependency_job_id":null,"html_url":"https://github.com/whitlocktech/RTSPDeck","commit_stats":null,"previous_names":["whitlocktech/rtspdeck"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/whitlocktech/RTSPDeck","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitlocktech%2FRTSPDeck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitlocktech%2FRTSPDeck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitlocktech%2FRTSPDeck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitlocktech%2FRTSPDeck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whitlocktech","download_url":"https://codeload.github.com/whitlocktech/RTSPDeck/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitlocktech%2FRTSPDeck/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270012081,"owners_count":24512131,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-12T06:23:31.740Z","updated_at":"2025-08-12T06:23:32.455Z","avatar_url":"https://github.com/whitlocktech.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿\n# RTSPDeck\n\n**RTSPDeck** is a lightweight, open-source desktop application for Windows (10+) that lets you view and manage multiple RTSP security camera feeds. Built in C# using WPF and powered by LibVLCSharp.\n\n\u003e **Note**: Most of the architecture and functionality of this project was designed and implemented with the help of [ChatGPT (OpenAI)](https://openai.com/chatgpt).\n\n---\n\n## 🚀 Features\n\n- 📷 View multiple RTSP streams in a grid layout\n- 🔒 Save camera settings (IP, username, password, etc.) to a local config file\n- ➕ Add/remove cameras dynamically via a GUI\n- 🧩 Built with modern .NET and VLC libraries\n- 🖥️ Compatible with most ONVIF / RTSP-capable NVRs and IP cameras\n- 🌗 Attempts to follow system theme (light/dark), but full theme support is still being improved\n\n---\n\n## 📦 Tech Stack\n\n- [.NET 8.0 (LTS)](https://dotnet.microsoft.com/)\n- [WPF](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/)\n- [LibVLCSharp](https://code.videolan.org/videolan/LibVLCSharp)\n- JSON-based local config file for camera persistence\n\n---\n\n## 🛠️ How to Build\n\n### Prerequisites\n\n- Visual Studio 2022 or newer\n- [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)\n- Git (optional, for cloning)\n\n\u003e 🔧 **No standalone VLC installation is required at runtime.** The app uses `VideoLAN.LibVLC.Windows` NuGet package, which bundles the required native binaries (`libvlc.dll`, `libvlccore.dll`, `plugins/`). Just publish the full output folder.\n\n\u003e 🏗️ **Note**: Final build targets `x64` only.\n\n### Steps\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/yourname/RTSPDeck.git\n   cd RTSPDeck\n   ```\n\n2. **Open the solution:**\n\n   Open `RTSPDeck.sln` in Visual Studio 2022.\n\n3. **Install required NuGet packages (if not restored):**\n\n   ```powershell\n   Install-Package LibVLCSharp.WPF\n   Install-Package LibVLCSharp\n   Install-Package VideoLAN.LibVLC.Windows\n   ```\n\n4. **Build and run the project.**\n\n---\n\n## 📂 Configuration\n\nRTSPDeck uses a JSON file to store camera information. This is created automatically on first run as `config.json` in the same directory as the executable.\n\nEach camera feed entry includes:\n\n- `Name`\n- `IPAddress`\n- `Port`\n- `Username`\n- `Password`\n- `CameraNumber`\n\nThese values are used to generate a complete RTSP URL for each feed.\n\n---\n\n## 🎥 RTSP URL Format\n\nRTSPDeck builds stream URLs like so:\n\n```\nrtsp://{username}:{password}@{ip}:{port}/Streaming/Channels/{cameraNumber}\n```\n\nExample:\n\n```\nrtsp://admin:secretpass@192.168.0.90:554/Streaming/Channels/101\n```\n\nThis format is compatible with ANNKE, Hikvision, Dahua, Reolink, and most ONVIF-compliant systems.\n\n---\n\n## 🌓 Theme Support\n\nRTSPDeck attempts to automatically follow your system theme (light or dark). However, full support (including runtime switching and modern accent color blending) is still in development. For now:\n\n- Default styling matches light theme\n- Some system brushes (`SystemColors.*BrushKey`) are used dynamically\n- Dark theme styling may require explicit selection in a future release\n\n---\n\n## 🙏 Credits\n\n- Core design and implementation assisted by [ChatGPT](https://chat.openai.com)\n- RTSP video handling via [LibVLCSharp](https://code.videolan.org/videolan/LibVLCSharp)\n- WPF UI based on native Windows controls\n- Inspired by a need for a minimal, no-cloud, open RTSP viewer\n\n---\n\n## 📄 License\n\nThis project is licensed under the **MIT License**. You are free to use, modify, distribute, and share.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitlocktech%2Frtspdeck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhitlocktech%2Frtspdeck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitlocktech%2Frtspdeck/lists"}