「WirePlumber」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(英語版から転載)
 
(一部翻訳)
4行目: 4行目:
 
{{Related articles end}}
 
{{Related articles end}}
   
[https://pipewire.pages.freedesktop.org/wireplumber WirePlumber] is a powerful session and policy manager for [[PipeWire]]. Based on a modular design, with Lua plugins that implement the actual management functionality, it is highly configurable and extendable.
+
[https://pipewire.pages.freedesktop.org/wireplumber WirePlumber] は、[[PipeWire]] 用の強力なセッションおよびポリシーマネージャです。モジュール設計に基づき、実際の管理機能を実装する Lua プラグインによって、高度な設定と拡張が可能です。
   
== Installation ==
+
== インストール ==
   
 
[[Install]] the {{Pkg|wireplumber}} package. It will conflict with other PipeWire Session Managers and make sure they are uninstalled.
 
[[Install]] the {{Pkg|wireplumber}} package. It will conflict with other PipeWire Session Managers and make sure they are uninstalled.
14行目: 14行目:
 
Optionally, install {{Pkg|wireplumber-docs}} to review the documentation.
 
Optionally, install {{Pkg|wireplumber-docs}} to review the documentation.
   
== Configuration ==
+
== 設定 ==
 
WirePlumber's modular design confers lots of flexibility when it comes to swapping the implementation of a specific functionality without having to re-implement the rest of it. Detailed information can be found at the [https://pipewire.pages.freedesktop.org/wireplumber/configuration.html official documentation].
 
WirePlumber's modular design confers lots of flexibility when it comes to swapping the implementation of a specific functionality without having to re-implement the rest of it. Detailed information can be found at the [https://pipewire.pages.freedesktop.org/wireplumber/configuration.html official documentation].
   
 
Bellow we add examples of simple configurations.
 
Bellow we add examples of simple configurations.
   
  +
=== デバイス/ノードのプロパティを変更する ===
=== Changing a device/node property ===
 
   
 
To change a device or node property, such as it's description or nick, you must create a Lua script and add it into {{ic|~/.config/wireplumber}} under the proper path and name.
 
To change a device or node property, such as it's description or nick, you must create a Lua script and add it into {{ic|~/.config/wireplumber}} under the proper path and name.
55行目: 55行目:
 
The properties that you can change as well as the matching rules to select devices or nodes are documented at [https://pipewire.pages.freedesktop.org/wireplumber/configuration/alsa.html ALSA configuration] and [https://pipewire.pages.freedesktop.org/wireplumber/configuration/bluetooth.html Bluetooth configuration].
 
The properties that you can change as well as the matching rules to select devices or nodes are documented at [https://pipewire.pages.freedesktop.org/wireplumber/configuration/alsa.html ALSA configuration] and [https://pipewire.pages.freedesktop.org/wireplumber/configuration/bluetooth.html Bluetooth configuration].
   
== See also ==
+
== 参照 ==
   
 
* [https://pipewire.pages.freedesktop.org/wireplumber/ Documentation] — Official documentation
 
* [https://pipewire.pages.freedesktop.org/wireplumber/ Documentation] — Official documentation

2022年2月4日 (金) 18:22時点における版

関連記事

WirePlumber は、PipeWire 用の強力なセッションおよびポリシーマネージャです。モジュール設計に基づき、実際の管理機能を実装する Lua プラグインによって、高度な設定と拡張が可能です。

インストール

Install the wireplumber package. It will conflict with other PipeWire Session Managers and make sure they are uninstalled.

WirePlumber uses systemd/User for management of the server and automatic socket activation.

Optionally, install wireplumber-docs to review the documentation.

設定

WirePlumber's modular design confers lots of flexibility when it comes to swapping the implementation of a specific functionality without having to re-implement the rest of it. Detailed information can be found at the official documentation.

Bellow we add examples of simple configurations.

デバイス/ノードのプロパティを変更する

To change a device or node property, such as it's description or nick, you must create a Lua script and add it into ~/.config/wireplumber under the proper path and name.

For instance, to change the description of an ALSA node, you would create a file such as ~/.config/wireplumber/main.lua.d/51-alsa-rename.lua with the following content:

51-alsa-rename.lua
rule = {
  matches = {
    {
      { "node.name", "equals", "alsa_output.pci-0000_00_1f.3.output_analog-stereo" },
    },
  },
  apply_properties = {
    ["node.description"] = "Laptop",
  },
}

table.insert(alsa_monitor.rules,rule)

If instead you wish to change something on a Bluetooth node or device, you could create ~/.config/wireplumber/bluetooth.lua.d/51-rename.lua with a content such as:

51-rename.lua
rule = {
  matches = {
    {
      { "node.name", "equals", "bluez_output.02_11_45_A0_B3_27.a2dp-sink" },
    },
  },
  apply_properties = {
    ["node.nick"] = "Headphones",
  },
}

table.insert(bluez_monitor.rules,rule)

The Lua scripts' filenames and locations are thus devised in a way that allows WirePlumber's Multi-path merging to run them just after the default config files (e.g. /usr/share/wireplumber/main.lua.d/50-alsa-config.lua) but before the file that loads and enables the devices (e.g. /usr/share/wireplumber/main.lua.d/90-enable-all.lua).

The properties that you can change as well as the matching rules to select devices or nodes are documented at ALSA configuration and Bluetooth configuration.

参照