Приложение: fakecam Fakecam Fake background for your webcam for use in streaming and video conferencing. The app provides the ability to either blur your surroundings or replace them with an image of your choosing. [Based on the work of Ben Elder](https://elder.dev/posts/open-source-virtual-background/) ## v4l2loopback To use this app you need to install the `v4l2loopback` kernel module. ### Step by step instructions On Debian and Ubuntu install the package with: sudo apt install v4l2loopback-dkms You will also need to configure the kernel module with some non-default options. options v4l2loopback devices=1 video_nr=20 card_label="fakecam" \ exclusive_caps=1 The kernel module is not loaded at bootup so we also need to add a configuration to make it load automatically. ## TL;DR Script for Debian and Ubuntu derivatives sudo apt-get install v4l2loopback-dkms echo options v4l2loopback devices=1 video_nr=20 \ card_label="fakecam" exclusive_caps=1 | sudo tee -a \ /etc/modprobe.d/fakecam.conf echo v4l2loopback | sudo tee -a /etc/modules-load.d/fakecam.conf sudo modprobe -r v4l2loopback sudo modprobe v4l2loopback ## Credits * [Ben Elder](https://elder.dev) for the original implementation * Snap Store Banner Photo by [Wallace Chuck](https://www.pexels.com/@chuck?utm_content=attributionCopyText&utm_medium=referral&utm_source=pexels) from [Pexels](https://www.pexels.com/photo/woman-in-yellow-top-3189984/?utm_content=attributionCopyText&utm_medium=referral&utm_source=pexels) Источник |