[PR #350] [CLOSED] Started working on Remote Webcam #1115

Closed
opened 2026-02-27 15:53:10 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/350
Author: @ghost
Created: 8/24/2015
Status: Closed

Base: masterHead: master


📝 Commits (1)

  • 5bde742 Started working on Remote Webcam

📊 Changes

24 files changed (+1539 additions, -32 deletions)

View changed files

📝 Client/Client.csproj (+5 -0)
📝 Client/Core/Commands/SurveillanceHandler.cs (+64 -0)
Client/Core/Helper/WebcamHelper.cs (+57 -0)
Client/Core/Packets/ClientPackets/GetWebcamImageResponse.cs (+34 -0)
Client/Core/Packets/ClientPackets/GetWebcamsResponse.cs (+25 -0)
📝 Client/Core/Packets/PacketHandler.cs (+8 -0)
Client/Core/Packets/ServerPackets/GetWebcamImage.cs (+28 -0)
Client/Core/Packets/ServerPackets/GetWebcams.cs (+18 -0)
📝 Client/Program.cs (+4 -0)
📝 Server/Core/Commands/SurveillanceHandler.cs (+38 -0)
📝 Server/Core/Networking/ConnectionHandler.cs (+4 -0)
📝 Server/Core/Networking/UserState.cs (+1 -0)
Server/Core/Packets/ClientPackets/GetWebcamImageResponse.cs (+34 -0)
Server/Core/Packets/ClientPackets/GetWebcamsResponse.cs (+25 -0)
📝 Server/Core/Packets/PacketHandler.cs (+8 -0)
Server/Core/Packets/ServerPackets/GetWebcamImage.cs (+28 -0)
Server/Core/Packets/ServerPackets/GetWebcams.cs (+18 -0)
📝 Server/Forms/FrmMain.Designer.cs (+41 -31)
📝 Server/Forms/FrmMain.cs (+14 -0)
📝 Server/Forms/FrmMain.resx (+18 -1)

...and 4 more files

📄 Description

TODO

  • Make Remote Webcam stream-able.
  • Make button allow to capture only 1 frame but not continuously recording to prevent victim attention to webcam's indicator light
  • Fix wrong webcam counting on server, need someone have multiple webcam to help fix this.
  • Clean up some unused variable used from Remote Desktop
  • Sent webcam device name to server

My webcam capture class using windows API to get image from webcam therefore some of webcam emulator software don't have driver will not work.

@MaxXor plz help me with the stream problem.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/quasar/Quasar/pull/350 **Author:** [@ghost](https://github.com/ghost) **Created:** 8/24/2015 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`5bde742`](https://github.com/quasar/Quasar/commit/5bde742168d06060da0b470dc87c8fe3d0af7401) Started working on Remote Webcam ### 📊 Changes **24 files changed** (+1539 additions, -32 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+5 -0) 📝 `Client/Core/Commands/SurveillanceHandler.cs` (+64 -0) ➕ `Client/Core/Helper/WebcamHelper.cs` (+57 -0) ➕ `Client/Core/Packets/ClientPackets/GetWebcamImageResponse.cs` (+34 -0) ➕ `Client/Core/Packets/ClientPackets/GetWebcamsResponse.cs` (+25 -0) 📝 `Client/Core/Packets/PacketHandler.cs` (+8 -0) ➕ `Client/Core/Packets/ServerPackets/GetWebcamImage.cs` (+28 -0) ➕ `Client/Core/Packets/ServerPackets/GetWebcams.cs` (+18 -0) 📝 `Client/Program.cs` (+4 -0) 📝 `Server/Core/Commands/SurveillanceHandler.cs` (+38 -0) 📝 `Server/Core/Networking/ConnectionHandler.cs` (+4 -0) 📝 `Server/Core/Networking/UserState.cs` (+1 -0) ➕ `Server/Core/Packets/ClientPackets/GetWebcamImageResponse.cs` (+34 -0) ➕ `Server/Core/Packets/ClientPackets/GetWebcamsResponse.cs` (+25 -0) 📝 `Server/Core/Packets/PacketHandler.cs` (+8 -0) ➕ `Server/Core/Packets/ServerPackets/GetWebcamImage.cs` (+28 -0) ➕ `Server/Core/Packets/ServerPackets/GetWebcams.cs` (+18 -0) 📝 `Server/Forms/FrmMain.Designer.cs` (+41 -31) 📝 `Server/Forms/FrmMain.cs` (+14 -0) 📝 `Server/Forms/FrmMain.resx` (+18 -1) _...and 4 more files_ </details> ### 📄 Description _TODO_ - Make Remote Webcam stream-able. - Make button allow to capture only 1 frame but not continuously recording to prevent victim attention to webcam's indicator light - Fix wrong webcam counting on server, need someone have multiple webcam to help fix this. - Clean up some unused variable used from Remote Desktop - Sent webcam device name to server My webcam capture class using windows API to get image from webcam therefore some of webcam emulator software don't have driver will not work. @MaxXor plz help me with the stream problem. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:53:10 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#1115
No description provided.