「PulseAudio/サンプル」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(同期)
(翻訳)
(同じ利用者による、間の3版が非表示)
9行目: 9行目:
 
== デフォルトの入力ソースを設定 ==
 
== デフォルトの入力ソースを設定 ==
   
  +
利用可能な入力ソースの一覧を表示するには:
List available input sources
 
 
{{hc|<nowiki>$ pacmd list-sources | grep -e device.string -e 'name:'</nowiki>|2=
 
{{hc|<nowiki>$ pacmd list-sources | grep -e device.string -e 'name:'</nowiki>|2=
 
name: <input>
 
name: <input>
19行目: 19行目:
 
}}
 
}}
   
  +
システム全体のデフォルトとして設定するには、使用する入力ソースを {{ic|/etc/pulse/default.pa}} に追加してください:
For permanent store in the ''default.pa'' file.
 
 
Set OSS as input
 
load-module module-oss device=/dev/dsp sink_name=alsa_output.pci-0000_04_01.0.analog-stereo mmap=1
 
Make it default
 
 
set-default-source alsa_output.pci-0000_04_01.0.analog-stereo.monitor
 
set-default-source alsa_output.pci-0000_04_01.0.analog-stereo.monitor
  +
一時的に使用するには:
 
  +
$ pacmd "set-default-source alsa_output.pci-0000_04_01.0.analog-stereo.monitor"
Set ALSA as input
 
  +
{{Tip|デフォルトのソースは、コマンド内で {{ic|@DEFAULT_SOURCE@}} として参照できます。たとえば: {{ic|$ pactl set-source-mute @DEFAULT_SOURCE@ toggle}}。}}
load-module module-alsa-source source_name=input device=hw:2
 
Make it default
 
set-default-source input
 
 
For temporary use
 
$ pacmd "load-module module-alsa-source source_name=input device=hw:2"
 
$ pacmd "set-default-source input"
 
   
 
== デフォルトの出力ソースを設定 ==
 
== デフォルトの出力ソースを設定 ==
{{Note| Use aplay to list devices that is a part of the {{Pkg|alsa-utils}} package and is not required to output to multiple sources. It is required to list playback devices therefore users can remove this package when finished with it.}}
 
   
  +
index の前に * が付いている新しいソースの名前を確認:
To select an alternative source as the default output you can list all sources:
 
 
{{hc|<nowiki>$ aplay -l | grep card</nowiki>|
 
card 0: CMI8768 [C-Media CMI8768], device 0: CMI8738-MC8 [C-Media PCI DAC/ADC]
 
card 0: CMI8768 [C-Media CMI8768], device 1: CMI8738-MC8 [C-Media PCI 2nd DAC]
 
card 0: CMI8768 [C-Media CMI8768], device 2: CMI8738-MC8 [C-Media PCI IEC958]
 
card 1: HDMI [HDA Intel HDMI], device 3: HDMI 0 [HDMI 0]
 
card 1: HDMI [HDA Intel HDMI], device 7: HDMI 1 [HDMI 1]
 
card 1: HDMI [HDA Intel HDMI], device 8: HDMI 2 [HDMI 2]}}
 
 
To chose ''card 0, device 0'' edit the {{ic|/etc/pulse/default.pa}} file and add
 
load-module module-alsa-sink device=hw:0,0
 
 
Determine the correct index of the new source:
 
 
{{hc|<nowiki>$ pacmd list-sinks | grep -e 'name:' -e 'index'</nowiki>|
 
{{hc|<nowiki>$ pacmd list-sinks | grep -e 'name:' -e 'index'</nowiki>|
 
* index: 0
 
* index: 0
59行目: 35行目:
 
}}
 
}}
   
For setting it as default in the {{ic|/etc/pulse/default.pa}} you can use
+
システム全体のデフォルトとして設定するには、以下を {{ic|/etc/pulse/default.pa}} に追加してください:
set-default-sink 0
+
set-default-sink alsa_output.pci-0000_04_01.0.analog-stereo
  +
設定したら変更を有効にするためにログアウト/ログインまたは PulseAudio を手動で再起動してください。
   
  +
{{Note|1=<nowiki></nowiki>
When done then you can logout/login or restart PulseAudio manually for these changes to take effect.
 
  +
* デフォルトに設定されている sink には、インデックスの前に {{ic|*}} 印が付きます。
  +
* sink の番号付けは永続的ではないため、{{ic|default.pa}} ファイル内ではすべての sink を名前で識別する必要があります。
  +
* 実行時に素早く識別したい場合 (音量の制御など)、sink 名の代わりに sink index を使用することができます: {{bc|<nowiki>
  +
$ pactl set-sink-volume 0 +3%
  +
$ pactl set-sink-volume 0 -- -3%
  +
$ pactl set-sink-mute 0 toggle
  +
</nowiki>}}
  +
* 通常の音量 (100%) を不必要に上書きしないようにするには、サウンドを管理するための別のユーティリティを使用する方がよいでしょう。詳細については [https://bbs.archlinux.org/viewtopic.php?id=124513 フォーラムスレッド] を参照してください。}}
   
  +
{{Tip|デフォルトの sink は {{ic|@DEFAULT_SINK@}} で指定することができます。たとえば: {{ic|$ pactl set-sink-volume @DEFAULT_SINK@ +5%}}。}}
{{Note|1=.
 
:* The index number corresponds to the 'alsa_output.hw_0_0' sink.
 
:* The sinks that are set as default are marked with '''*''' in front of index.
 
:* You can use the index number to manage sound volume:
 
{{bc|
 
$ pactl set-sink-volume '''0''' +3%
 
$ pactl set-sink-volume '''0''' -- -3%
 
$ pactl set-sink-mute '''0''' toggle}}
 
:* To avoid unnecessary overriding of 100% normal volume is better to use alternative utilities for managing of sound. See the [https://bbs.archlinux.org/viewtopic.php?id=124513 arch forum] for more info.}}
 
   
 
== HDMI とアナログの同時出力 ==
 
== HDMI とアナログの同時出力 ==
  +
PulseAudio は、複数のソースに同時に出力することができます。例えば、あるアプリケーションでは HDMI を使用するように設定しつつ、別のアプリケーションではアナログを使用するようにすることができます。また、複数のアプリケーションで同時に音声を受け取ることができます。
PulseAudio allows for simultaneous output to multiple sources. In this example, some applications are configured to use HDMI while others are configured to use analog. Multiple applications are able to receive audio at the same time.
 
{{bc|$ aplay -l
 
**** List of PLAYBACK Hardware Devices ****
 
card 0: Intel [HDA Intel], device 0: ALC889A Analog [ALC889A Analog]
 
Subdevices: 0/1
 
Subdevice #0: subdevice #0
 
card 0: Intel [HDA Intel], device 1: ALC889A Digital [ALC889A Digital]
 
Subdevices: 1/1
 
Subdevice #0: subdevice #0
 
card 0: Intel [HDA Intel], device 3: HDMI 0 [HDMI 0]
 
Subdevices: 0/1
 
Subdevice #0: subdevice #0}}
 
   
  +
{{hc|$ aplay -l|
Or by using the the {{ic|pacmd}} command:
 
  +
**** ハードウェアデバイス PLAYBACK のリスト ****
  +
カード 0: Intel [HDA Intel], デバイス 0: ALC889A Analog [ALC889A Analog]
  +
サブデバイス: 0/1
  +
サブデバイス #0: subdevice #0
  +
カード 0: Intel [HDA Intel], デバイス 1: ALC889A Digital [ALC889A Digital]
  +
サブデバイス: 1/1
  +
サブデバイス #0: subdevice #0
  +
カード 0: Intel [HDA Intel], デバイス 3: HDMI 0 [HDMI 0]
  +
サブデバイス: 0/1
  +
サブデバイス #0: subdevice #0}}
  +
  +
もしくは {{ic|pacmd}} コマンドを使用すると:
   
 
{{hc|<nowiki>$ pacmd list-sinks | grep -e 'name:' -e 'alsa.device ' -e 'alsa.subdevice '</nowiki>|<nowiki>
 
{{hc|<nowiki>$ pacmd list-sinks | grep -e 'name:' -e 'alsa.device ' -e 'alsa.subdevice '</nowiki>|<nowiki>
94行目: 72行目:
 
alsa.subdevice = "0"
 
alsa.subdevice = "0"
 
alsa.device = "0"</nowiki>}}
 
alsa.device = "0"</nowiki>}}
  +
このような構成では pavucontrol の Configuration > Internal Audio で選択されているものがデフォルトのデバイスになります。Load pavucontrol > Configuration を選択し、プロファイルとして HDMI を選択してください。
   
  +
アナログデバイスをセカンダリソースとして設定するには、{{ic|/etc/pulse/default.pa}} の最初の方に以下の行を追加します (他のモジュールよりも先にロードさせるため):
The key to a configuration like this is to understand that whatever is selected in pavucontrol under ''Configuration > Internal Audio'' is the default device. Load ''pavucontrol > Configuration'' and select HDMI as the profile.
 
 
To setup the analog device as a secondary source, add the following to the {{ic|/etc/pulse/default.pa}} configuration at the beginning, before any other modules are loaded:
 
 
### Load analog device
 
### Load analog device
 
load-module module-alsa-sink device=hw:0,0
 
load-module module-alsa-sink device=hw:0,0
103行目: 80行目:
 
set-default-sink combined
 
set-default-sink combined
   
  +
PulseAudio を再起動し pavucontrol を実行して「出力デバイス」タブを選択します。3つの設定が表示されます:
Restart PulseAudio, run ''pavucontrol'' and select the "Output Devices" tab. Three settings should be displayed:
 
 
# Internal Audio Digital Stereo (HDMI)
 
# Internal Audio Digital Stereo (HDMI)
 
# Internal Audio
 
# Internal Audio
 
# Simultaneous output to Internal Audio Digital Stereo (HDMI), Internal Audio
 
# Simultaneous output to Internal Audio Digital Stereo (HDMI), Internal Audio
   
  +
MPlayer, VLC, mpd などの PulseAudio を使用するプログラムを起動し「再生」タブに切り替えます。実行中のプログラムからドロップダウンリストを使って3つのソースのうちの1つを選択することができるはずです。
Now start a program that will use PulseAudio such as MPlayer, VLC, mpd, etc. and switch to the "Playback" tab. A drop-down list should be available for the running program to select one of the three sources.
 
   
Also see [https://bbs.archlinux.org/viewtopic.php?id=118026 this thread] for a variation on this theme and [http://www.freedesktop.org/wiki/Software/PulseAudio/FAQ#Can_I_use_PulseAudio_to_playback_music_on_two_sound_cards_simultaneously.3F PulseAudio FAQ].
+
詳しくは [http://www.freedesktop.org/wiki/Software/PulseAudio/FAQ#Can_I_use_PulseAudio_to_playback_music_on_two_sound_cards_simultaneously.3F PulseAudio FAQ] や [https://bbs.archlinux.org/viewtopic.php?id=118026 こちらのスレッド] を参照してください。
   
 
==HDMI 出力の設定==
 
==HDMI 出力の設定==
190行目: 167行目:
 
Now you have 2 additional sinks which can be used separately. You can choose 'sink_name' freely, as long as there is no sink with that name already. The 'remix' parameter controls whether the audio should be down-/upmixed to match the channels in the sink.
 
Now you have 2 additional sinks which can be used separately. You can choose 'sink_name' freely, as long as there is no sink with that name already. The 'remix' parameter controls whether the audio should be down-/upmixed to match the channels in the sink.
   
  +
{{Tip|pulseaudio が {{ic|master sink not found}} と表示する場合、リマップの行をコメントアウトしてから、PulseAudio を起動してカードの出力が正しく設定されているか確認してください (例: アナログサラウンド 4.0)。もしくは、sink 名の代わりに [[#デフォルトの出力ソースを設定|sink index]] を使ってみてください。}}
{{Tip|If pulseaudio fails with {{ic|master sink not found}}, comment out the remapping lines, start PulseAudio and verify your card output is set to the one you specified (e.g. analog surround 4.0). Alternatively, try using a [[#Set the defaulting output source|sink index]] instead of a sink name.}}
 
   
 
===7.1 を 5.1+2.0 に分割===
 
===7.1 を 5.1+2.0 に分割===
   
  +
上記の例と同じように、7.1 構成を 5.1 サラウンドとステレオ出力に分割することもできます。使用しているカードを 7.1 モードに設定してから、以下の行を {{ic|/etc/pulse/default.pa}} に追加してください:
Similar to the example above, you can also split a 7.1 configuration into 5.1 surround and stereo output devices.
 
Set your card to 7.1 mode, then add the following lines to {{ic|/etc/pulse/default.pa}}:
 
 
load-module module-remap-sink sink_name=Surround remix=no master=alsa_output.pci-0000_00_14.2.analog-surround-71 channels=6 master_channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe
 
load-module module-remap-sink sink_name=Surround remix=no master=alsa_output.pci-0000_00_14.2.analog-surround-71 channels=6 master_channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe
 
load-module module-remap-sink sink_name=Stereo remix=no master=alsa_output.pci-0000_00_14.2.analog-surround-71 channels=2 master_channel_map=side-left,side-right channel_map=front-left,front-right
 
load-module module-remap-sink sink_name=Stereo remix=no master=alsa_output.pci-0000_00_14.2.analog-surround-71 channels=2 master_channel_map=side-left,side-right channel_map=front-left,front-right
   
  +
{{ic|alsa_output.pci-0000_00_14.2}} は使用しているサウンドカードの名前に置き換えてください ({{ic|pacmd list-sinks}} で確認できます)。上記の設定は 5.1 sink ではフロント/リア/センター+LFE (緑/黒/橙) のジャックを使い stereo sink ではサイドスピーカー (灰) のジャックを使います。stereo sink 用に音声はステレオにダウンミックスされますが、5.1 出力には何も手を加えません。
Make sure to replace alsa_output.pci-0000_00_14.2 with your sound card name, get it by running 'pacmd list-sinks'.
 
This configuration will use the front/rear/center+lfe (green/black/orange) jacks for the 5.1 sink and the side (grey) jack for the stereo sink.
 
It will also downmix any audio to stereo for the stereo sink, but will not touch the 5.1 output.
 
   
  +
{{Tip|pulseaudio が {{ic|master sink not found}} と表示する場合、リマップの行をコメントアウトしてから、PulseAudio を起動してカードの出力がアナログサラウンド 7.1 に設定されているか確認してください。もしくは、sink 名の代わりに [[#デフォルトの出力ソースを設定|sink index]] を使ってみてください。}}
{{Tip|If pulseaudio fails with {{ic|master sink not found}}, comment out the remapping lines, start PulseAudio and verify your card output is set to analog surround 7.1. Alternatively, try using a [[#Set the default output source|sink index]] instead of a sink name.}}
 
   
 
===LFE リミックスの無効化===
 
===LFE リミックスの無効化===
210行目: 184行目:
 
; enable-lfe-remixing = yes
 
; enable-lfe-remixing = yes
   
and replace yes with no:
+
and replace no with no:
   
 
enable-lfe-remixing = no
 
enable-lfe-remixing = no
   
 
then restart Pulseaudio.
 
then restart Pulseaudio.
  +
  +
===バイノーラルヘッドフォン===
  +
{{AUR|ladspa-bs2b}} provides a plugin to simulate surround sound on stereo headphones. To use it, find your headphones with:
  +
{{hc|<nowiki>$ pacmd list-sinks | grep -e 'name:'</nowiki>|
  +
name: <alsa_output.pci-0000_00_1b.0.iec958-ac3-surround-51>
  +
name: <alsa_output.pci-0000_00_1b.0.iec958-ac3-surround-51.equalizer>
  +
name: <bluez_sink.00_1F_82_28_93_51>
  +
}}
  +
Load the plugin (''new'' sink_name is up to you, master=''headphone's sink name''):
  +
pacmd load-module module-ladspa-sink sink_name=binaural master=bluez_sink.00_1F_82_28_93_51 plugin=bs2b label=bs2b control=700,4.5
  +
Use {{Pkg|pavucontrol}} to transfer streams to the new sink, or:
  +
pactl move-sink-input $INPUTID $BINAURALSINKNAME
   
 
==ネットワークを介して PulseAudio==
 
==ネットワークを介して PulseAudio==
One of PulseAudio's unique features is its ability to stream audio from clients over TCP to a server running the PulseAudio daemon reliably within a LAN.
+
One of PulseAudio's unique features is its ability to stream audio from clients over TCP to a server running the PulseAudio daemon reliably within a LAN. Ensure that client and server systems agree on the time (e.g. use NTP), or audio streams may be choppy or may not work at all.
   
 
To accomplish this, one needs to enable module-native-protocol-tcp.
 
To accomplish this, one needs to enable module-native-protocol-tcp.
240行目: 226行目:
 
PulseAudio のリモートサーバーを PulseAudio Device Chooser ({{ic|pasystray}}) に表示させるには、適当な zeroconf モジュールをロードして、[[Avahi]] [[デーモン]]を有効化してください。
 
PulseAudio のリモートサーバーを PulseAudio Device Chooser ({{ic|pasystray}}) に表示させるには、適当な zeroconf モジュールをロードして、[[Avahi]] [[デーモン]]を有効化してください。
   
  +
クライアント側には {{Pkg|pulseaudio-zeroconf}} パッケージをインストールしてください。
On both machines, run:
 
  +
$ systemctl start avahi-daemon
 
  +
クライアント・サーバーの両方で {{ic|avahi-daemon}} の systemd ユニットを[[起動]]・[[有効化]]してください。
$ systemctl enable avahi-daemon
 
  +
 
On the server, add {{ic|load-module module-zeroconf-publish}} to {{ic|/etc/pulse/default.pa}}, on the client, add {{ic|load-module module-zeroconf-discover}} to {{ic|/etc/pulse/default.pa}}. Now redirect any stream or complete audio output to the remote PulseAudio server by selecting the appropriate sink.
 
On the server, add {{ic|load-module module-zeroconf-publish}} to {{ic|/etc/pulse/default.pa}}, on the client, add {{ic|load-module module-zeroconf-discover}} to {{ic|/etc/pulse/default.pa}}. Now redirect any stream or complete audio output to the remote PulseAudio server by selecting the appropriate sink.
   
 
If you have issues with the remote syncs appearing on the client, try restarting the Avahi daemon on the server to rebroadcast the available interfaces.
 
If you have issues with the remote syncs appearing on the client, try restarting the Avahi daemon on the server to rebroadcast the available interfaces.
  +
  +
===サーバーの選択===
  +
Run the graphical PulseAudio Volume Control {{ic|pavucontrol}}. Under the '''Output Devices''' tab, you should see the local and remote output devices. Under the '''Playback''' tab, to the left of the "X" Mute Audio button, you should see a box containing the name of an output device. That box is ''actually a button'', which will display a drop-down radio-button list of the available output devices, with one output device selected. Selecting an output device from the list will allow the audio stream to be switched to the PulseAudio server associated with that output device. This control is not at all obvious until you have used it, and is especially useful with a remote Headless sound server.
  +
  +
Similarly, under the '''Input Devices''' tab, local and remote input devices will be seen. And under the '''Recording''' tab, there will be a box, to the left of the "X" Mute Audio button, with the name of an input device which is actually a button which will display a drop-down radio-button list of available input devices.
  +
  +
Run {{ic|pavucontrol}} on the local or remote host associated with the audio stream to be directed. For instance, run {{ic|pavucontrol}} on the remote host to direct the remote audio output to the local host. Run {{ic|pavucontrol}} on the local host to direct the local audio output to some remote host.
  +
  +
Setting up simultaneous inputs or outputs is a different thing. Search about "monitor" and "module-combine-sink" for that.
   
 
===ローカルの X クライアントで使用する PulseAudio サーバーを切り替える===
 
===ローカルの X クライアントで使用する PulseAudio サーバーを切り替える===
  +
X の中からクライアントで使用するサーバーを切り替えるには {{ic|pax11publish}} コマンドを使います。例えば、デフォルトのサーバーからホストネーム foo のサーバーに切り替えるには:
To switch between servers on the client from within X, the {{ic|pax11publish}} command can be used. For example, to switch from the default server to the server at hostname foo:
 
 
$ pax11publish -e -S foo
 
$ pax11publish -e -S foo
   
  +
もしくは、デフォルトのサーバーに戻すには:
Or to switch back to the default:
 
 
$ pax11publish -e -r
 
$ pax11publish -e -r
   
  +
上記のコマンドは (上で説明しているのと同じように) PulseAudio サーバーで音声をストリーミングする代わりに、X11 ルートウィンドウの PulseAudio 変数を編集します。それによって PulseAudio のクライアントライブラリが {{ic|localhost}} 以外の PulseAudio サーバーに接続するようになります。プログラムはローカルの {{ic|pulseaudio}} プロセスに依存しなくなるため、ローカルのプロセスは[[停止]]してかまいません。{{ic|pactl}}, {{ic|pacmd}}, {{ic|pavucontrol}} などのプログラムでリモートの PulseAudio サーバーを制御するには適切な {{ic|PULSE_SERVER}} 変数/X 変数を指定して実行する必要があります。
Note that for the switch to become apparent, the programs using Pulse must be restarted.
 
  +
  +
Note that for the switch to become apparent, the programs using Pulse must be restarted, or their PulseAudio client library otherwise reinitialized (completely stopping and restarting playback may be enough). To make this setting permanent, edit {{ic|default-server}} in {{ic|~/.config/pulse/client.conf}} or {{ic|/etc/pulse/client.conf}}.
   
 
===何もかもが失敗しているような場合===
 
===何もかもが失敗しているような場合===
292行目: 290行目:
   
 
==PulseAudio と JACK==
 
==PulseAudio と JACK==
  +
The [[JACK Audio Connection Kit]] is popular for audio work, and is widely supported by Linux audio applications. It fills a similar niche as PulseAudio, but with more of an emphasis on professional audio work. In particular, audio applications such as Ardour and Audacity work well with Jack.
  +
 
===最新の方法===
 
===最新の方法===
This configuration only works with jackdbus (JACK2 compiled with D-Bus support). It also requires the {{Pkg|pulseaudio-jack}} package. Add to {{ic|/etc/pulse/default.pa}}:
+
This configuration only works with jackdbus (JACK2 compiled with D-Bus support). It also requires the {{Pkg|pulseaudio-jack}} package. Make sure that {{ic|/etc/pulse/default.pa}} contains a line:
load-module module-jackdbus-detect
+
load-module module-jackdbus-detect ''options''
  +
Where {{ic|''options''}} can be any options supported by this module, usually {{ic|1=channels=2}}.
  +
 
As described on the [https://github.com/jackaudio/jackaudio.github.com/wiki/JackDbusPackaging Jack-DBUS Packaging] page:
 
As described on the [https://github.com/jackaudio/jackaudio.github.com/wiki/JackDbusPackaging Jack-DBUS Packaging] page:
   
301行目: 303行目:
 
{{ic|module-jackdbus-detect.so}} dynamically loads and unloads module-jack-sink and module-jack-source when jackdbus is started and stopped.
 
{{ic|module-jackdbus-detect.so}} dynamically loads and unloads module-jack-sink and module-jack-source when jackdbus is started and stopped.
   
If PulseAudio sound does not work, check with {{ic|pavucontrol}} to see if the relevant programs appear in the playback tab. If not, add the following to {{ic|~/.asound.conf}} or {{ic|/etc/asound.conf}} to redirect ALSA to PulseAudio:
+
If PulseAudio sound does not work, check with {{ic|pavucontrol}} to see if the relevant programs appear in the playback tab. If not, add the following to {{ic|~/.asoundrc}} or {{ic|/etc/asound.conf}} to redirect ALSA to PulseAudio:
   
 
pcm.pulse {
 
pcm.pulse {
318行目: 320行目:
 
}
 
}
   
If it still does not work, check with {{ic|pavucontrol}} in the playback tab and make sure the relevant programs are outputting to PulseAudio JACK Sink instead of your audio card (which JACK has control of, so it will not work).
+
If it still does not work, check with {{ic|pavucontrol}} in the playback tab and make sure the relevant programs are outputting to PulseAudio JACK Sink instead of your audio card (which JACK has control of, so it will not work). Also ensure that in the JACK graph the PulseAudio JACK Source is connected to the system audio output.
   
 
===新しい方法===
 
===新しい方法===
360行目: 362行目:
   
 
===古い方法===
 
===古い方法===
  +
Install the {{Pkg|pulseaudio-jack}} package, which provides {{ic|module-jack-source}} and {{ic|module-jack-sink}} which allow PulseAudio to be run as a sound server above the JACK daemon. This allows the usage of per-volume adjustments and the like for the apps which need it, play-back apps for movies and audio, while allowing low-latency and inter-app connectivity for sound-processing apps which connect to JACK. However, this will prevent PulseAudio from directly writing to the sound card buffers, which will increase overall CPU usage.
The JACK-Audio-Connection-Kit is popular for audio work, and is widely supported by Linux audio applications. It fills a similar niche as PulseAudio, but with more of an emphasis on professional audio work. In particular, audio applications such as Ardour and Audacity (recently) work well with Jack.
 
 
PulseAudio provides module-jack-source and module-jack-sink which allow PulseAudio to be run as a sound server above the JACK daemon. This allows the usage of per-volume adjustments and the like for the apps which need it, play-back apps for movies and audio, while allowing low-latency and inter-app connectivity for sound-processing apps which connect to JACK. However, this will prevent PulseAudio from directly writing to the sound card buffers, which will increase overall CPU usage.
 
   
 
To just try PA on top of JACK, have PA load the necessary modules on start:
 
To just try PA on top of JACK, have PA load the necessary modules on start:
pulseaudio -L module-jack-sink -L module-jack-source
+
$ pulseaudio -L module-jack-sink -L module-jack-source
   
 
To use PulseAudio with JACK, JACK must be started before PulseAudio, using whichever method one prefers. PulseAudio then needs to be started loading the two relevant modules. Edit {{ic|/etc/pulse/default.pa}}, and change the following region:
 
To use PulseAudio with JACK, JACK must be started before PulseAudio, using whichever method one prefers. PulseAudio then needs to be started loading the two relevant modules. Edit {{ic|/etc/pulse/default.pa}}, and change the following region:
457行目: 457行目:
   
 
==PulseAudio サーバーの自動生成を無効化==
 
==PulseAudio サーバーの自動生成を無効化==
Some users may prefer to manually start the PulseAudio server before running certain programs and then stop the PulseAudio server when they are finished. A simple way to accomplish this is to edit {{ic|/etc/pulse/client.conf}} and change {{ic|1=autospawn = yes}} to {{ic|1=autospawn = no}}, and set {{ic|1=daemon-binary = /bin/true}}. Make sure the two lines are uncommented as well.
+
Some users may prefer to manually start the PulseAudio server before running certain programs and then stop the PulseAudio server when they are finished. A simple way to accomplish this is to edit {{ic|~/.config/pulse/client.conf}} or {{ic|/etc/pulse/client.conf}} and change {{ic|1=autospawn = yes}} to {{ic|1=autospawn=no}}. Make sure the line is uncommented as well.
{{hc|/etc/pulse/client.conf|<nowiki>
+
{{hc|~/.config/pulse/client.conf #or /etc/pulse/client.conf|<nowiki>
autospawn = no
+
autospawn=no
daemon-binary = /bin/true
 
 
</nowiki>}}
 
</nowiki>}}
 
Now you can manually start the pulseaudio server with
 
Now you can manually start the pulseaudio server with
466行目: 465行目:
 
and stop it with
 
and stop it with
 
$ pulseaudio --kill
 
$ pulseaudio --kill
  +
You may also have to move or delete a .desktop file in {{ic|/etc/xdg/autostart}} if it exists.
 
  +
This setting is also respected by the default pulseaudio dektop session startup script {{ic|start-pulseaudio-x11}} which is executed from {{ic|/etc/xdg/autostart/pulseaudio.desktop}}.
  +
  +
==pulseaudio デーモンの無効化==
  +
pulseaudio デーモンを完全に無効にして起動しないようにしたい場合、設定ファイル ({{ic|~/.config/pulse/client.conf}} または {{ic|/etc/pulse/client.conf}}) に {{ic|1=daemon-binary=/bin/true}} を追加してください:
  +
{{hc|~/.config/pulse/client.conf|2=daemon-binary=/bin/true}}
   
 
==ステレオからモノにリマップ==
 
==ステレオからモノにリマップ==
480行目: 484行目:
   
 
==左/右チャンネルの交換==
 
==左/右チャンネルの交換==
  +
左と右のチャンネルが入れ替わる「リバースステレオ」と同じ設定です。
Swap/reverse stereo channels by creating a virtual sink. Add to {{ic|/etc/pulse/default.pa}}:
 
   
  +
First, identify the card you want its channels swapped:
load-module module-remap-sink sink_name=reverse-stereo master=alsa_output.pci-0000_00_1f.5.analog-stereo channels=2 master_channel_map=front-right,front-left channel_map=front-left,front-right
 
  +
$ cat /proc/asound/cards
set-default-sink reverse-stereo
 
  +
and use the name string for the device you wish to use (the one in square brackets, e.g. [Intel]).
   
  +
Edit {{ic|/etc/pulse/default.pa}} and comment out module-hal-detect and module-detect lines.
(replace alsa_output.pci-0000_00_1f.5.analog-stereo in the sound card name shown from {{ic|pacmd list-sinks}})
 
  +
  +
Search for the commented-out line that starts "#load-module module-alsa-sink", uncomment it and change it to
  +
  +
load-module module-alsa-sink device=hw:[device name] channel_map=right,left
  +
Restart the pulseaudio deamon by running
  +
pulseaudio -k; pulseaudio -D
   
[http://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/Modules/#index12h3 module-remap-sink documentation]
+
[https://www.freedesktop.org/wiki/Software/PulseAudio/FAQ/#index34h3 Pulseaudio FAQ: How can I reverse my left and right speaker channels?]
   
 
== PulseAudio as a minimal unintrusive dumb pipe to ALSA ==
 
== PulseAudio as a minimal unintrusive dumb pipe to ALSA ==

2017年3月14日 (火) 21:10時点における版

関連記事

デフォルトの入力ソースを設定

利用可能な入力ソースの一覧を表示するには:

$ pacmd list-sources | grep -e device.string -e 'name:'
name: <input>
 device.string = "hw:2"
name: <oss_input.dsp>
 device.string = "/dev/dsp"
name: <alsa_output.pci-0000_04_01.0.analog-stereo.monitor>
name: <combined.monitor>

システム全体のデフォルトとして設定するには、使用する入力ソースを /etc/pulse/default.pa に追加してください:

set-default-source alsa_output.pci-0000_04_01.0.analog-stereo.monitor

一時的に使用するには:

$ pacmd "set-default-source alsa_output.pci-0000_04_01.0.analog-stereo.monitor"
ヒント: デフォルトのソースは、コマンド内で @DEFAULT_SOURCE@ として参照できます。たとえば: $ pactl set-source-mute @DEFAULT_SOURCE@ toggle

デフォルトの出力ソースを設定

index の前に * が付いている新しいソースの名前を確認:

$ pacmd list-sinks | grep -e 'name:' -e 'index'
  * index: 0
	name: <alsa_output.pci-0000_04_01.0.analog-stereo>
    index: 1
	name: <combined>

システム全体のデフォルトとして設定するには、以下を /etc/pulse/default.pa に追加してください:

set-default-sink alsa_output.pci-0000_04_01.0.analog-stereo

設定したら変更を有効にするためにログアウト/ログインまたは PulseAudio を手動で再起動してください。

ノート:
  • デフォルトに設定されている sink には、インデックスの前に * 印が付きます。
  • sink の番号付けは永続的ではないため、default.pa ファイル内ではすべての sink を名前で識別する必要があります。
  • 実行時に素早く識別したい場合 (音量の制御など)、sink 名の代わりに sink index を使用することができます:
    $ pactl set-sink-volume 0 +3%
    $ pactl set-sink-volume 0 -- -3%
    $ pactl set-sink-mute 0 toggle
    
  • 通常の音量 (100%) を不必要に上書きしないようにするには、サウンドを管理するための別のユーティリティを使用する方がよいでしょう。詳細については フォーラムスレッド を参照してください。
ヒント: デフォルトの sink は @DEFAULT_SINK@ で指定することができます。たとえば: $ pactl set-sink-volume @DEFAULT_SINK@ +5%

HDMI とアナログの同時出力

PulseAudio は、複数のソースに同時に出力することができます。例えば、あるアプリケーションでは HDMI を使用するように設定しつつ、別のアプリケーションではアナログを使用するようにすることができます。また、複数のアプリケーションで同時に音声を受け取ることができます。

$ aplay -l
**** ハードウェアデバイス PLAYBACK のリスト ****
カード 0: Intel [HDA Intel], デバイス 0: ALC889A Analog [ALC889A Analog]
  サブデバイス: 0/1
  サブデバイス #0: subdevice #0
カード 0: Intel [HDA Intel], デバイス 1: ALC889A Digital [ALC889A Digital]
  サブデバイス: 1/1
  サブデバイス #0: subdevice #0
カード 0: Intel [HDA Intel], デバイス 3: HDMI 0 [HDMI 0]
  サブデバイス: 0/1
  サブデバイス #0: subdevice #0

もしくは pacmd コマンドを使用すると:

$ pacmd list-sinks  | grep -e 'name:'  -e 'alsa.device ' -e 'alsa.subdevice '
	name: <alsa_output.pci-0000_00_1b.0.analog-stereo>
		alsa.subdevice = "0"
		alsa.device = "0"

このような構成では pavucontrol の Configuration > Internal Audio で選択されているものがデフォルトのデバイスになります。Load pavucontrol > Configuration を選択し、プロファイルとして HDMI を選択してください。

アナログデバイスをセカンダリソースとして設定するには、/etc/pulse/default.pa の最初の方に以下の行を追加します (他のモジュールよりも先にロードさせるため):

### Load analog device
load-module module-alsa-sink device=hw:0,0
load-module module-combine-sink sink_name=combined
set-default-sink combined

PulseAudio を再起動し pavucontrol を実行して「出力デバイス」タブを選択します。3つの設定が表示されます:

  1. Internal Audio Digital Stereo (HDMI)
  2. Internal Audio
  3. Simultaneous output to Internal Audio Digital Stereo (HDMI), Internal Audio

MPlayer, VLC, mpd などの PulseAudio を使用するプログラムを起動し「再生」タブに切り替えます。実行中のプログラムからドロップダウンリストを使って3つのソースのうちの1つを選択することができるはずです。

詳しくは PulseAudio FAQこちらのスレッド を参照してください。

HDMI 出力の設定

As outlined in ftp://download.nvidia.com/XFree86/gpu-hdmi-audio-document/gpu-hdmi-audio.html#_issues_in_pulseaudio unless the HDMI port is the first output, PulseAudio will not be able to have any audio when using certain graphics cards with HDMI audio support. This is because of a bug in PulseAudio where it will only select the first HDMI output on a device. A work around posted further down is to first find which HDMI output is working by using the aplay utility from ALSA.

The original title for this section indicated the problem is specific to nVidia cards. As seen in this forum thread other cards are affected as well. The rest of the section will use an nVidia card as a case-study but the solution should carry over for people using other affected cards.

HDMI 出力の確認

Then find the working output by listing the available cards

# aplay -l
sample output:
 **** List of PLAYBACK Hardware Devices ****
 card 0: NVidia [HDA NVidia], device 0: ALC1200 Analog [ALC1200 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 0: NVidia [HDA NVidia], device 3: ALC1200 Digital [ALC1200 Digital]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 1: NVidia_1 [HDA NVidia], device 3: HDMI 0 [HDMI 0]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 1: NVidia_1 [HDA NVidia], device 7: HDMI 0 [HDMI 0]
   Subdevices: 0/1
   Subdevice #0: subdevice #0
 card 1: NVidia_1 [HDA NVidia], device 8: HDMI 0 [HDMI 0]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 1: NVidia_1 [HDA NVidia], device 9: HDMI 0 [HDMI 0]
   Subdevices: 1/1
   Subdevice #0: subdevice #0

適切なカードでテスト

Now a list of the detected cards is known, users will need to test for which one is outputting to the TV/monitor

# aplay -D plughw:1,3 /usr/share/sounds/alsa/Front_Right.wav

where 1 is the card and 3 is the device substitute in the values listed from the previous section. If there is no audio, then try substituting a different device (on my card I had to use card 1 device 7)

PulseAudio を手動で設定して Nvidia HDMI を検出

Having identified which HDMI device is working, PulseAudio can be forced to use it via an edit to /etc/pulse/default.pa:

# load-module module-alsa-sink device=hw:1,7

where the 1 is the card and the 7 is the deivce found to work in the previous section

restart pulse audio

 $ pulseaudio -k
 $ pulseaudio --start

open the sound settings manager, make sure that under the hardware tab the graphics cards HDMI audio is set to "Digital Stereo (HDMI) Output" ( My graphics card audio is called "GF100 High Definition Audio Controller"

Then, open the output tab. There should now be two HDMI outputs for the graphics card. Test which one works by selecting one of them, and then using a program to play audio. For example, use VLC to play a movie, and if it does not work, then select the other.

サラウンドサウンドシステム

Many people have a surround sound card, but have speakers for just two channels, so PulseAudio cannot really default to a surround sound setup. To enable all of the channels, edit /etc/pulse/daemon.conf: uncomment the default-sample-channels line (i.e. remove the semicolon from the beginning of the line) and set the value to 6. For a 5.1 setup, or 8 for a 7.1 setup etc.

# Default
default-sample-channels=2
# For 5.1
default-sample-channels=6
# For 7.1
default-sample-channels=8

If your channels are not correclty mapped or the volume controls for the individual channels do not work as expected in pavucontrol, and you have a HDMI and an anlog soundcard, then try to add the following line to /etc/pulse/default.pa

load-module module-combine channels=6 channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe

Note that this example is for a 5.1 setup.

After doing the edit, restart PulseAudio.

フロント/リアの分割

Connect speakers to front analog output and headphones to rear output. It would be useful to split front/rear to separate sinks. Add to /etc/pulse/default.pa:

 load-module module-remap-sink sink_name=speakers remix=no master=alsa_output.pci-0000_05_00.0.analog-surround-40 channels=2 master_channel_map=front-left,front-right channel_map=front-left,front-right
 load-module module-remap-sink sink_name=headphones remix=no master=alsa_output.pci-0000_05_00.0.analog-surround-40 channels=2 master_channel_map=rear-left,rear-right   channel_map=front-left,front-right

Make sure to replace alsa_output.pci-0000_05_00.0.analog-surround-40 with the sound card name shown in 'pacmd list-sinks'.

Now you have 2 additional sinks which can be used separately. You can choose 'sink_name' freely, as long as there is no sink with that name already. The 'remix' parameter controls whether the audio should be down-/upmixed to match the channels in the sink.

ヒント: pulseaudio が master sink not found と表示する場合、リマップの行をコメントアウトしてから、PulseAudio を起動してカードの出力が正しく設定されているか確認してください (例: アナログサラウンド 4.0)。もしくは、sink 名の代わりに sink index を使ってみてください。

7.1 を 5.1+2.0 に分割

上記の例と同じように、7.1 構成を 5.1 サラウンドとステレオ出力に分割することもできます。使用しているカードを 7.1 モードに設定してから、以下の行を /etc/pulse/default.pa に追加してください:

 load-module module-remap-sink sink_name=Surround remix=no master=alsa_output.pci-0000_00_14.2.analog-surround-71 channels=6 master_channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe
 load-module module-remap-sink sink_name=Stereo remix=no master=alsa_output.pci-0000_00_14.2.analog-surround-71 channels=2 master_channel_map=side-left,side-right channel_map=front-left,front-right

alsa_output.pci-0000_00_14.2 は使用しているサウンドカードの名前に置き換えてください (pacmd list-sinks で確認できます)。上記の設定は 5.1 sink ではフロント/リア/センター+LFE (緑/黒/橙) のジャックを使い stereo sink ではサイドスピーカー (灰) のジャックを使います。stereo sink 用に音声はステレオにダウンミックスされますが、5.1 出力には何も手を加えません。

ヒント: pulseaudio が master sink not found と表示する場合、リマップの行をコメントアウトしてから、PulseAudio を起動してカードの出力がアナログサラウンド 7.1 に設定されているか確認してください。もしくは、sink 名の代わりに sink index を使ってみてください。

LFE リミックスの無効化

By default, PulseAudio remixes the number of channels to the default-sample-channels and since version 7 it also remixes the LFE channel. If you wish to disable LFE remixing, uncomment the line:

; enable-lfe-remixing = yes

and replace no with no:

enable-lfe-remixing = no

then restart Pulseaudio.

バイノーラルヘッドフォン

ladspa-bs2bAUR provides a plugin to simulate surround sound on stereo headphones. To use it, find your headphones with:

$ pacmd list-sinks | grep -e 'name:'
	name: <alsa_output.pci-0000_00_1b.0.iec958-ac3-surround-51>
	name: <alsa_output.pci-0000_00_1b.0.iec958-ac3-surround-51.equalizer>
	name: <bluez_sink.00_1F_82_28_93_51>

Load the plugin (new sink_name is up to you, master=headphone's sink name):

pacmd load-module module-ladspa-sink sink_name=binaural master=bluez_sink.00_1F_82_28_93_51 plugin=bs2b label=bs2b control=700,4.5

Use pavucontrol to transfer streams to the new sink, or:

pactl move-sink-input $INPUTID $BINAURALSINKNAME

ネットワークを介して PulseAudio

One of PulseAudio's unique features is its ability to stream audio from clients over TCP to a server running the PulseAudio daemon reliably within a LAN. Ensure that client and server systems agree on the time (e.g. use NTP), or audio streams may be choppy or may not work at all.

To accomplish this, one needs to enable module-native-protocol-tcp.

TCP サポート (networked sound)

To enable the TCP module, add this to (or uncomment, if already there) /etc/pulse/default.pa on both the client and server:

load-module module-native-protocol-tcp

For this to work, it is a requirement that both the client and server share the same cookie. Ensure that the clients and server share the same cookie file found under ~/.config/pulse/cookie. It does not matter whose cookie file you use (the server or a client's), just that the server and client(s) share the same one.

Note: If experiencing trouble connecting, use (on server)

pacmd list-modules

TCP サポートと匿名クライアント

If it is undesirable to copy the cookie file from clients, anonymous clients can access the server by giving these parameters to module-native-protocol-tcp on the server (again in /etc/pulse/default.pa):

 load-module module-native-protocol-tcp "auth-ip-acl=127.0.0.1;192.168.0.0/24 auth-anonymous=1"

Change the LAN IP subnet to match that of the those clients you wish to have access to the server.

Zeroconf (Avahi) パブリッシング

PulseAudio のリモートサーバーを PulseAudio Device Chooser (pasystray) に表示させるには、適当な zeroconf モジュールをロードして、Avahi デーモンを有効化してください。

クライアント側には pulseaudio-zeroconf パッケージをインストールしてください。

クライアント・サーバーの両方で avahi-daemon の systemd ユニットを起動有効化してください。

On the server, add load-module module-zeroconf-publish to /etc/pulse/default.pa, on the client, add load-module module-zeroconf-discover to /etc/pulse/default.pa. Now redirect any stream or complete audio output to the remote PulseAudio server by selecting the appropriate sink.

If you have issues with the remote syncs appearing on the client, try restarting the Avahi daemon on the server to rebroadcast the available interfaces.

サーバーの選択

Run the graphical PulseAudio Volume Control pavucontrol. Under the Output Devices tab, you should see the local and remote output devices. Under the Playback tab, to the left of the "X" Mute Audio button, you should see a box containing the name of an output device. That box is actually a button, which will display a drop-down radio-button list of the available output devices, with one output device selected. Selecting an output device from the list will allow the audio stream to be switched to the PulseAudio server associated with that output device. This control is not at all obvious until you have used it, and is especially useful with a remote Headless sound server.

Similarly, under the Input Devices tab, local and remote input devices will be seen. And under the Recording tab, there will be a box, to the left of the "X" Mute Audio button, with the name of an input device which is actually a button which will display a drop-down radio-button list of available input devices.

Run pavucontrol on the local or remote host associated with the audio stream to be directed. For instance, run pavucontrol on the remote host to direct the remote audio output to the local host. Run pavucontrol on the local host to direct the local audio output to some remote host.

Setting up simultaneous inputs or outputs is a different thing. Search about "monitor" and "module-combine-sink" for that.

ローカルの X クライアントで使用する PulseAudio サーバーを切り替える

X の中からクライアントで使用するサーバーを切り替えるには pax11publish コマンドを使います。例えば、デフォルトのサーバーからホストネーム foo のサーバーに切り替えるには:

$ pax11publish -e -S foo

もしくは、デフォルトのサーバーに戻すには:

$ pax11publish -e -r

上記のコマンドは (上で説明しているのと同じように) PulseAudio サーバーで音声をストリーミングする代わりに、X11 ルートウィンドウの PulseAudio 変数を編集します。それによって PulseAudio のクライアントライブラリが localhost 以外の PulseAudio サーバーに接続するようになります。プログラムはローカルの pulseaudio プロセスに依存しなくなるため、ローカルのプロセスは停止してかまいません。pactl, pacmd, pavucontrol などのプログラムでリモートの PulseAudio サーバーを制御するには適切な PULSE_SERVER 変数/X 変数を指定して実行する必要があります。

Note that for the switch to become apparent, the programs using Pulse must be restarted, or their PulseAudio client library otherwise reinitialized (completely stopping and restarting playback may be enough). To make this setting permanent, edit default-server in ~/.config/pulse/client.conf or /etc/pulse/client.conf.

何もかもが失敗しているような場合

The following is a quick fix and NOT a permanent solution

On the server:

 $ paprefs 

Go to Network Access -> Enable access to local sound devices (Also check both 'Allow discover' and 'Don't require authentication').

On the client:

 $ export PULSE_SERVER=server.ip && mplayer test.mp3

ALSA モニターのソース

To be able to record from a monitor source (a.k.a. "What-U-Hear", "Stereo Mix"), use pactl list to find out the name of the source in PulseAudio (e.g. alsa_output.pci-0000_00_1b.0.analog-stereo.monitor). Then add lines like the following to /etc/asound.conf or ~/.asoundrc:

pcm.pulse_monitor {
  type pulse
  device alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
}

ctl.pulse_monitor {
  type pulse
  device alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
}

Now you can select pulse_monitor as a recording source.

Alternatively, you can use pavucontrol to do this: make sure you have set up the display to "All input devices", then select "Monitor of [your sound card]" as the recording source.

特定の出力のモニター

It is possible to monitor a specific output, for example to stream audio from a music player into a VOIP application. Simply create a null output device:

pactl load-module module-null-sink sink_name=<name>

In Pulseaudio Volume Control (pavucontrol), under the "Playback" tab, change the output of an application to <name>, and in the recording tab change the input of an application to "Monitor of <name>". Audio will now be outputted from one application into the other.

PulseAudio と JACK

The JACK Audio Connection Kit is popular for audio work, and is widely supported by Linux audio applications. It fills a similar niche as PulseAudio, but with more of an emphasis on professional audio work. In particular, audio applications such as Ardour and Audacity work well with Jack.

最新の方法

This configuration only works with jackdbus (JACK2 compiled with D-Bus support). It also requires the pulseaudio-jack package. Make sure that /etc/pulse/default.pa contains a line:

load-module module-jackdbus-detect options

Where options can be any options supported by this module, usually channels=2.

As described on the Jack-DBUS Packaging page:

Server auto-launching is implemented as D-Bus call that auto-activates JACK D-Bus service, in case it is not already started, and starts the JACK server. Correct interaction with PulseAudio is done using a D-Bus based audio card "acquire/release" mechanism. When JACK server starts, it asks this D-Bus service to acquire the audio card and PulseAudio will unconditionally release it. When JACK server stops, it releases the audio card that can be grabbed again by PulseAudio.

module-jackdbus-detect.so dynamically loads and unloads module-jack-sink and module-jack-source when jackdbus is started and stopped.

If PulseAudio sound does not work, check with pavucontrol to see if the relevant programs appear in the playback tab. If not, add the following to ~/.asoundrc or /etc/asound.conf to redirect ALSA to PulseAudio:

pcm.pulse {
    type pulse
}

ctl.pulse {
    type pulse
}

pcm.!default {
    type pulse
}
ctl.!default {
    type pulse
}

If it still does not work, check with pavucontrol in the playback tab and make sure the relevant programs are outputting to PulseAudio JACK Sink instead of your audio card (which JACK has control of, so it will not work). Also ensure that in the JACK graph the PulseAudio JACK Source is connected to the system audio output.

新しい方法

The basic idea is that killing PulseAudio is a bad idea because it may crash any apps using PulseAudio and disrupt any audio playing.

The flow of how this setup works:

  1. PulseAudio releases the sound card
  2. JACK grabs sound card and starts up
  3. script redirects PulseAudio to JACK
  4. manually send PulseAudio apps to JACK output (pavucontrol may come in helpful for this)
  5. use JACK programs etc
  6. via script, stop redirecting PulseAudio to JACK
  7. stop JACK and release sound card
  8. PulseAudio grabs sound card and reroutes audio to it directly

With QJackCTL, set up these scripts:

pulse-jack-pre-start.sh set it up as the execute script on startup script

#!/bin/bash
pacmd suspend true

pulse-jack-post-start.sh set this one up as execute script after startup

#!/bin/bash
pactl load-module module-jack-sink channels=2
pactl load-module module-jack-source channels=2
pacmd set-default-sink jack_out
pacmd set-default-source jack_in

pulse-jack-pre-stop.sh "execute script on shutdown"

#!/bin/bash
SINKID=$(pactl list | grep -B 1 "Name: module-jack-sink" | grep Module | sed 's/[^0-9]//g')
SOURCEID=$(pactl list | grep -B 1 "Name: module-jack-source" | grep Module | sed 's/[^0-9]//g')
pactl unload-module $SINKID
pactl unload-module $SOURCEID
sleep 5

pulse-jack-post-stop.sh "execute script after shutdown"

#!/bin/bash
pacmd suspend false

古い方法

Install the pulseaudio-jack package, which provides module-jack-source and module-jack-sink which allow PulseAudio to be run as a sound server above the JACK daemon. This allows the usage of per-volume adjustments and the like for the apps which need it, play-back apps for movies and audio, while allowing low-latency and inter-app connectivity for sound-processing apps which connect to JACK. However, this will prevent PulseAudio from directly writing to the sound card buffers, which will increase overall CPU usage.

To just try PA on top of JACK, have PA load the necessary modules on start:

$ pulseaudio -L module-jack-sink -L module-jack-source

To use PulseAudio with JACK, JACK must be started before PulseAudio, using whichever method one prefers. PulseAudio then needs to be started loading the two relevant modules. Edit /etc/pulse/default.pa, and change the following region:

### Load audio drivers statically (it is probably better to not load
### these drivers manually, but instead use module-hal-detect --
### see below -- for doing this automatically)
#load-module module-alsa-sink
#load-module module-alsa-source device=hw:1,0
#load-module module-oss device="/dev/dsp" sink_name=output source_name=input
#load-module module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
#load-module module-null-sink
#load-module module-pipe-sink

### Automatically load driver modules depending on the hardware available
.ifexists module-udev-detect.so
load-module module-udev-detect
.else
### Alternatively use the static hardware detection module (for systems that
### lack udev support)
load-module module-detect
.endif

to the following:

### Load audio drivers statically (it is probably better to not load
### these drivers manually, but instead use module-hal-detect --
### see below -- for doing this automatically)
#load-module module-alsa-sink
#load-module module-alsa-source device=hw:1,0
#load-module module-oss device="/dev/dsp" sink_name=output source_name=input
#load-module module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
#load-module module-null-sink
#load-module module-pipe-sink
load-module module-jack-source
load-module module-jack-sink

### Automatically load driver modules depending on the hardware available
#.ifexists module-udev-detect.so
#load-module module-udev-detect
#.else
### Alternatively use the static hardware detection module (for systems that
### lack udev support)
#load-module module-detect
#.endif

Basically, this prevents module-udev-detect from loading. module-udev-detect will always try to grab the sound card (JACK has already done that, so this will cause an error). Also, the JACK source and sink must be explicitly loaded.

QjackCtl とスタートアップ/シャットダウンスクリプト

Using the settings listed above, use QjackCtl to execute a script upon startup and shutdown to load/unload PulseAudio. Part of the reason users may wish to do this is that the above changes disable PulseAudio's automatic hardware detection modules. This particular setup is for using PulseAudio in an exclusive fashion with JACK, though the scripts could be modified to unload and load an alternate non-JACK setup, but killing and starting PulseAudio while programs might be using it would become problematic.

ノート: padevchooser in the following example is deprecated. It is replaced by pasystray

The following example could be used and modified as necessary as a startup script that daemonizes PulseAudio and loads the padevchooser program (optional, needs to be built from AUR) called jack_startup:

#!/bin/bash
#Load PulseAudio and PulseAudio Device Chooser

pulseaudio -D
padevchooser&

as well as a shutdown script to kill PulseAudio and the Pulse Audio Device Chooser, as another example called jack_shutdown also in the home directory:

#!/bin/bash
#Kill PulseAudio and PulseAudio Device Chooser

pulseaudio --kill
killall padevchooser

Both scripts need to be made executable:

chmod +x jack_startup jack_shutdown

then with QjackCtl loaded, click on the Setup button and then the Options tab and tick both "Execute Script after Startup:" And "Execute Script on Shutdown:" and put either use the ... button or type the path to the scripts (assuming the scripts are in the home directory) ~/jack_startup and ~/jack_shutdown making sure to save the changes.

PulseAudio と OSS

Add the following to /etc/pulse/default.pa:

load-module module-oss

Then start PulseAudio as usual, making sure that sinks and sources are defined for OSS devices.

chroot から PulseAudio (e.g. 32-bit chroot in 64-bit install)

Since a chroot sets up an alternative root for the running/jailing of applications, PulseAudio must be installed within the chroot itself (pacman -S pulseaudio within the chroot environment).

PulseAudio, if not set up to connect to any specific server (this can be done in /etc/pulse/client.conf, through the PULSE_SERVER environment variable, or through publishing to the local X11 properties using module-x11-publish), will attempt to connect to the local pulse server, failing which it will spawn a new pulse server. Each pulse server has a unique ID based on the machine-id value in /var/lib/dbus. To allow for chrooted apps to access the pulse server, the following directories must be mounted within the chroot:-

/run
/var/lib/dbus
/tmp
~/config/.pulse

/dev/shm should also be mounted for efficiency and good performance. Note that mounting /home would normally also allow sharing of the ~/.pulse folder.

PulseAudio selects the path to the socket via XDG_RUNTIME_DIR, so be sure to drag it along when you chroot as a normal user using sudo (see Sudo#Environment variables).

For specific direction on accomplishing the appropriate mounts, please refer to the wiki on installing a bundled 32-bit system, especially the additional section specific to PulseAudio.

PulseAudio サーバーの自動生成を無効化

Some users may prefer to manually start the PulseAudio server before running certain programs and then stop the PulseAudio server when they are finished. A simple way to accomplish this is to edit ~/.config/pulse/client.conf or /etc/pulse/client.conf and change autospawn = yes to autospawn=no. Make sure the line is uncommented as well.

~/.config/pulse/client.conf #or /etc/pulse/client.conf
autospawn=no

Now you can manually start the pulseaudio server with

$ pulseaudio --start

and stop it with

$ pulseaudio --kill

This setting is also respected by the default pulseaudio dektop session startup script start-pulseaudio-x11 which is executed from /etc/xdg/autostart/pulseaudio.desktop.

pulseaudio デーモンの無効化

pulseaudio デーモンを完全に無効にして起動しないようにしたい場合、設定ファイル (~/.config/pulse/client.conf または /etc/pulse/client.conf) に daemon-binary=/bin/true を追加してください:

~/.config/pulse/client.conf
daemon-binary=/bin/true

ステレオからモノにリマップ

Remap a stereo input-sink to a mono sink by creating a virtual sink. It would be useful if you only have one speaker. Add to /etc/pulse/default.pa:

load-module module-remap-sink master=alsa_output.pci-0000_00_1f.5.analog-stereo sink_name=mono channels=2 channel_map=mono,mono
# Optional: Select new remap as default
set-default-sink mono

(replace alsa_output.pci-0000_00_1f.5.analog-stereo in the sound card name shown from pacmd list-sinks)

Switch player between virtual mono sink and real stereo sink.

左/右チャンネルの交換

左と右のチャンネルが入れ替わる「リバースステレオ」と同じ設定です。

First, identify the card you want its channels swapped:

$ cat /proc/asound/cards

and use the name string for the device you wish to use (the one in square brackets, e.g. [Intel]).

Edit /etc/pulse/default.pa and comment out module-hal-detect and module-detect lines.

Search for the commented-out line that starts "#load-module module-alsa-sink", uncomment it and change it to

load-module module-alsa-sink device=hw:[device name] channel_map=right,left

Restart the pulseaudio deamon by running

pulseaudio -k; pulseaudio -D

Pulseaudio FAQ: How can I reverse my left and right speaker channels?

PulseAudio as a minimal unintrusive dumb pipe to ALSA

Some people do not want to run PulseAudio all the time for various reasons. This example will turn the full fledged audio server into an unobstrusive dumb pipe to ALSA devices that automatically starts and stops itself when done, allowing applications that requires PulseAudio to fully function while not touching any ALSA setting nor setting itself as the default ALSA device.

This configuration tells native PA clients to autospawn the daemon when they need it, then the daemon is configured to autoexit as soon as all clients have disconnected. The daemon itself uses a plain simple static configuration that uses your configured pcm.!default ALSA devices and nothing more. No replacement of ALSA's default, no playing with mixer levels, nothing but record/playback. Also make sure pulseaudio-alsa is not installed so standard ALSA clients don't default to pulse. alsamixer functions properly as well as any other ALSA clients. Also make sure common frameworks like Xine, Gstreamer and Phonon are configured to use ALSA: by default if they detect PulseAudio is installed they will try to use it before ALSA.

/etc/pulse/daemon.conf
# Replace these with the proper values
exit-idle-time = 0 # Exit as soon as unneeded
flat-volumes = yes # Prevent messing with the master volume
/etc/pulse/client.conf
# Replace these with the proper values

# Applications that uses PulseAudio *directly* will spawn it,
# use it, and pulse will exit itself when done because of the
# exit-idle-time setting in daemon.conf
autospawn = yes
/etc/pulse/default.pa
# Replace the *entire* content of this file with these few lines and
# read the comments

.fail
    # Set tsched=0 here if you experience glitchy playback. This will
    # revert back to interrupt-based scheduling and should fix it.
    #
    # Replace the device= part if you want pulse to use a specific device
    # such as "dmix" and "dsnoop" so it doesn't lock an hw: device.
    
    # INPUT/RECORD
    load-module module-alsa-source device="default" tsched=1
    
    # OUTPUT/PLAYBACK
    load-module module-alsa-sink device="default" tsched=1 
    
    # Accept clients -- very important
    load-module module-native-protocol-unix

.nofail
.ifexists module-x11-publish.so
    # Publish to X11 so the clients know how to connect to Pulse. Will
    # clear itself on unload.
    load-module module-x11-publish
.endif