One Hat Cyber Team
Your IP :
216.73.216.136
Server IP :
162.240.179.46
Server :
Linux vps-14493116.nutrivittasaude.com.br 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
wireplumber
/
scripts
/
monitors
/
v4l2
/
View File Name :
name-device.lua
-- 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 ()