Jump to content

Droidcam: Difference between revisions

From NixOS Wiki
Gepbird (talk | contribs)
Use the obs-studio NixOS module to handle most of the lower level configuration, make a user-friendly description for people who aren't used to OBS
Gepbird (talk | contribs)
m Put category at the bottom
 
Line 18: Line 18:
</syntaxhighlight>
</syntaxhighlight>


Since this adds a kernel module, you will need to reboot your system. Once rebooted, open OBS Studio and add a DroidCam OBS source to a scene. Then activate the virtual camera to and make sure it is linked to your selected scene.


[[Category:Applications]]
[[Category:Applications]]
Since this adds a kernel module, you will need to reboot your system. Once rebooted, open OBS Studio and add a DroidCam OBS source to a scene. Then activate the virtual camera to and make sure it is linked to your selected scene.

Latest revision as of 19:17, 12 May 2025

Droidcam is a mobile app (Android, iOS). With Droidcam the mobile device can be used as webcam for a PC.

Using it as a virtual camera with OBS Studio

Its possible to use Droidcam as a virtual camera in OBS Studio with the following NixOS configuration:

{ pkgs, ... }:

{
  programs.obs-studio = {
    enable = true;
    enableVirtualCamera = true;
    plugins = with pkgs.obs-studio-plugins; [
      droidcam-obs
    ];
  };
}

Since this adds a kernel module, you will need to reboot your system. Once rebooted, open OBS Studio and add a DroidCam OBS source to a scene. Then activate the virtual camera to and make sure it is linked to your selected scene.