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 mutils = require ("monitor-utils") log = Log.open_topic ("s-monitors-v4l2") SimpleEventHook { name = "monitor/v4l2/name-device", interests = { EventInterest { Constraint { "event.type", "=", "create-v4l2-device" }, }, }, execute = function(event) local properties = event:get_data ("device-properties") local parent = event:get_subject () local id = event:get_data ("device-sub-id") local name = "v4l2_device." .. (properties["device.name"] or properties["device.bus-id"] or properties["device.bus-path"] or tostring (id)):gsub ("([^%w_%-%.])", "_") properties["device.name"] = name -- deduplicate devices with the same name for counter = 2, 99, 1 do if mutils.find_duplicate (parent, id, "device.name", properties["device.name"]) then properties["device.name"] = name .. "." .. counter else break end end -- ensure the device has a description properties["device.description"] = properties["device.description"] or properties["device.product.name"] or "Unknown device" event:set_data ("device-properties", properties) end }:register ()