-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added droidcam page - Fixes a little typo on KsysGuard page
- Loading branch information
Showing
3 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"label": "Camera", | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: DroidCam | ||
summary: Quick Start guide to DroidCam on Solus | ||
--- | ||
|
||
# DroidCam | ||
|
||
[DroidCam](https://www.dev47apps.com/) turns your phone or tablet into a webcam for your computer. You can use it with video conferencing programs like Zoom, MS Teams, and Skype. | ||
|
||
## Before Installation | ||
|
||
DroidCam relies on the v4l2loopback kernel module. So you need to install `v4l2loopback` or `v4l2loopback-current` depending of which kernel is installed on your computer. To find out which kernel is installed, run: | ||
|
||
```bash | ||
uname -r | ||
``` | ||
|
||
This should return a version which ends in `.current` or `.lts`. | ||
|
||
- If you are running the "current" kernel, install `v4l2loopback-current`: | ||
|
||
```bash | ||
sudo eopkg install v4l2loopback-current | ||
``` | ||
|
||
- If you are running the "lts" kernel, install `v4l2loopback`: | ||
|
||
```bash | ||
sudo eopkg install v4l2loopback | ||
``` | ||
|
||
After the kernel module is installed, continue to installation steps. | ||
|
||
## Installation | ||
|
||
DroidCam can be installed from Software Center or via terminal : | ||
|
||
```bash | ||
sudo eopkg it droidcam | ||
``` | ||
Once DroidCam is installed, reboot your system. Now DroidCam is ready to use. | ||
|
||
## Usage | ||
|
||
To start pairing your phone or tablet with your computer, you can follow steps provided by this [guide](https://www.dev47apps.com/droidcam/connect/) from the DroidCam developer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters