Initial Commit

This commit is contained in:
brotoskyj
2025-01-03 13:47:58 -05:00
commit ec81a3d58f
5 changed files with 55 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
use std::process::Command;
fn main() {
Command::new("/usr/sbin/modprobe")
.arg("v4l2loopback")
.arg("exclusive_caps=1")
.arg("card_label='OBS Virtual Camera'")
.spawn()
.expect("Modprobe command has failed");
}