First decent version of the module

This commit is contained in:
2026-05-20 10:37:08 +02:00
parent a8fb9b3b9f
commit 6bdfeb68db
6 changed files with 68 additions and 79 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ cp "$MODDIR/vendor/bin/virtual_camera_provider" "$PROVIDER_DST" 2>/dev/null || t
chmod 755 "$PROVIDER_DST" 2>/dev/null || true
cp "$MODDIR/vendor/lib64"/*.so "$LIB_DST/" 2>/dev/null || true
# Start provider in background (failure won't block boot)
# Start provider in background (always at boot, disable flag is for runtime only)
if [ -x "$PROVIDER_DST" ]; then
nohup env LD_LIBRARY_PATH="$LIB_DST" "$PROVIDER_DST" -d /dev/video0 -w 1920 -h 1080 -i virtual </dev/null >/dev/null 2>&1 &
echo "[$(date)] provider started"