Initial commit
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/system/bin/sh
|
||||
PROVIDER_DST="/data/local/tmp/virtual_camera_provider"
|
||||
LIB_DST="/data/local/tmp/virtualcam_libs"
|
||||
sleep 30
|
||||
if ! pgrep -f virtual_camera_provider >/dev/null 2>&1 && [ -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 &
|
||||
fi
|
||||
exit 0
|
||||
Reference in New Issue
Block a user