Reputation: 179
I'm creating a background app in electron and the objective is to send a notification every time the webcam is activated.
Is there a way to catch those webcam activation events from system to trigger a function?
Upvotes: 0
Views: 241
Reputation: 2989
There is no "clean" solution in javascript.
So the good news is its doable. Even trying that with C# or C++ directly on the OS-level is a PITA.
Upvotes: 1