OBS Studio: Difference between revisions
imported>Wackbyte add a guide for installing plugins |
imported>Wackbyte m "open source" -> "open-source" |
||
Line 1: | Line 1: | ||
[https://obsproject.com/ OBS Studio] is free and open source software for video recording and live streaming, licensed under the GNU GPLv2 license. | [https://obsproject.com/ OBS Studio] is free and open-source software for video recording and live streaming, licensed under the GNU GPLv2 license. | ||
=== Installing Plugins === | === Installing Plugins === |
Revision as of 22:23, 9 June 2022
OBS Studio is free and open-source software for video recording and live streaming, licensed under the GNU GPLv2 license.
Installing Plugins
Plugins are available from the obs-studio-plugins
package set.
They can be installed by either wrapping the package with wrapOBS
:
pkgs.wrapOBS.override { obs-studio = pkgs.obs-studio; } {
plugins = with pkgs.obs-studio-plugins; [
wlrobs
];
};
or using Home Manager:
{ config, pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
];
};
}
Using the Virtual Camera
The virtual camera requires the v4l2loopback
kernel module to be installed, like so:
{ config, ... }:
{
boot.extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
}