[PR #464] [MERGED] Added Remote Webcam #1146

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

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/464
Author: @meltingice1337
Created: 6/13/2016
Status: Merged
Merged: 6/18/2016
Merged by: @MaxXor

Base: masterHead: added-remote-webcam


📝 Commits (6)

📊 Changes

61 files changed (+7370 additions, -7 deletions)

View changed files

📝 Client/Client.csproj (+39 -0)
Client/Core/AForge/Video.DirectShow/CameraControlProperty.cs (+67 -0)
Client/Core/AForge/Video.DirectShow/FilterInfo.cs (+193 -0)
Client/Core/AForge/Video.DirectShow/FilterInfoCollection.cs (+138 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMCameraControl.cs (+81 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMCrossbar.cs (+88 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMStreamConfig.cs (+74 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMVideoControl.cs (+112 -0)
Client/Core/AForge/Video.DirectShow/Internals/IBaseFilter.cs (+161 -0)
Client/Core/AForge/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs (+192 -0)
Client/Core/AForge/Video.DirectShow/Internals/ICreateDevEnum.cs (+37 -0)
Client/Core/AForge/Video.DirectShow/Internals/IEnumFilters.cs (+71 -0)
Client/Core/AForge/Video.DirectShow/Internals/IEnumPins.cs (+68 -0)
Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph.cs (+113 -0)
Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph2.cs (+257 -0)
Client/Core/AForge/Video.DirectShow/Internals/IGraphBuilder.cs (+198 -0)
Client/Core/AForge/Video.DirectShow/Internals/IMediaControl.cs (+118 -0)
Client/Core/AForge/Video.DirectShow/Internals/IMediaEventEx.cs (+126 -0)
Client/Core/AForge/Video.DirectShow/Internals/IPin.cs (+191 -0)
Client/Core/AForge/Video.DirectShow/Internals/IPropertyBag.cs (+53 -0)

...and 41 more files

📄 Description

I added remote webcam using AForge, it may be a little hackish but it
works.


🔄 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/464 **Author:** [@meltingice1337](https://github.com/meltingice1337) **Created:** 6/13/2016 **Status:** ✅ Merged **Merged:** 6/18/2016 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `master` ← **Head:** `added-remote-webcam` --- ### 📝 Commits (6) - [`daac56a`](https://github.com/quasar/Quasar/commit/daac56a12c265ed77d4fe97a094676965ef86624) Added Remote Webcam - [`f890819`](https://github.com/quasar/Quasar/commit/f8908193a936769f9638eeb6c9b79a99927d3b41) Fixed mistake - [`02a6233`](https://github.com/quasar/Quasar/commit/02a62338633f063d8c9fc96700dbc12f7f396747) Fixed bug - [`4ff3af0`](https://github.com/quasar/Quasar/commit/4ff3af0a1143a8d411ffcb03a6094be2c11ba0d2) Added Remote Webcam contextual image - [`06f060f`](https://github.com/quasar/Quasar/commit/06f060f44c4f82bd13d79a8bad155b12a02d89fe) Removed unused files from AForge - [`9926ff9`](https://github.com/quasar/Quasar/commit/9926ff983e46494537bbc306f5481acfcd6b9500) Added Remote Webcam as feature in readme.md ### 📊 Changes **61 files changed** (+7370 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+39 -0) ➕ `Client/Core/AForge/Video.DirectShow/CameraControlProperty.cs` (+67 -0) ➕ `Client/Core/AForge/Video.DirectShow/FilterInfo.cs` (+193 -0) ➕ `Client/Core/AForge/Video.DirectShow/FilterInfoCollection.cs` (+138 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMCameraControl.cs` (+81 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMCrossbar.cs` (+88 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMStreamConfig.cs` (+74 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMVideoControl.cs` (+112 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IBaseFilter.cs` (+161 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs` (+192 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/ICreateDevEnum.cs` (+37 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IEnumFilters.cs` (+71 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IEnumPins.cs` (+68 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph.cs` (+113 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph2.cs` (+257 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IGraphBuilder.cs` (+198 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IMediaControl.cs` (+118 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IMediaEventEx.cs` (+126 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IPin.cs` (+191 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IPropertyBag.cs` (+53 -0) _...and 41 more files_ </details> ### 📄 Description I added remote webcam using AForge, it may be a little hackish but it works. --- <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:16 +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#1146
No description provided.