Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
wireplumber /
scripts /
monitors /
v4l2 /
Delete
Unzip
Name
Size
Permission
Date
Action
create-device.lua
1.54
KB
-rw-r--r--
2025-10-10 14:43
create-node.lua
1.23
KB
-rw-r--r--
2025-10-10 14:43
enumerate-device.lua
979
B
-rw-r--r--
2025-10-10 14:43
name-device.lua
1.33
KB
-rw-r--r--
2025-10-10 14:43
name-node.lua
2.46
KB
-rw-r--r--
2025-10-10 14:43
Save
Rename
-- 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-v4l2") config = {} config.properties = Conf.get_section_as_properties ("monitor.v4l2.properties") function createCamDevice (parent, id, type, factory, properties) source = source or Plugin.find ("standard-event-source") local e = source:call ("create-event", "create-v4l2-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.v4l2.enum.udev", config.properties) if monitor then monitor:connect ("create-object", createCamDevice) monitor:activate (Feature.SpaDevice.ENABLED) else log:notice ("PipeWire's V4L2 SPA plugin is missing or broken. " .. "Some camera types may not be supported.") end