From 35e0497f86af0f9640e7374f123af19499503696 Mon Sep 17 00:00:00 2001 From: Tobias Nordahl Kristensen Date: Sat, 11 Sep 2021 16:07:52 +0200 Subject: [PATCH 1/2] Adding note about `sink` in pipewire Also, splitting it up to two points, so it's a bit easier to read. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b1da90c3..0c4bd7c5 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,11 @@ It's necessary to allow Sunshine to use KMS - `groups $USER` - If Sunshine sends audio from the microphone instead of the speaker, try the following steps: - 1. `$ pacmd list-sources | grep "name:"` or `$ pactl info | grep Source` if running pipewire. + 1. Check whether you're using Pulseaudio or Pipewire + - Pulseaudio: Use `pacmd list-sources | grep "name:"` + - ipewire: Use `pactl info | grep Source`. In some causes you'd need to use the `sink` device. Try `pactl info | grep Sink`, if _Source_ doesn't work. 2. Copy the name to the configuration option "audio_sink" - 3. restart sunshine + 3. Restart sunshine - If you get "Error: Failed to create client: Daemon not running", ensure that your avahi-daemon is running: - `systemctl status avahi-daemon` From fea650fbe45e6b9ef09da2d044073b938447b046 Mon Sep 17 00:00:00 2001 From: Tobias Nordahl Kristensen Date: Mon, 13 Sep 2021 17:17:32 +0200 Subject: [PATCH 2/2] Typo ipewire --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c4bd7c5..69bf2c47 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ It's necessary to allow Sunshine to use KMS - If Sunshine sends audio from the microphone instead of the speaker, try the following steps: 1. Check whether you're using Pulseaudio or Pipewire - Pulseaudio: Use `pacmd list-sources | grep "name:"` - - ipewire: Use `pactl info | grep Source`. In some causes you'd need to use the `sink` device. Try `pactl info | grep Sink`, if _Source_ doesn't work. + - Pipewire: Use `pactl info | grep Source`. In some causes you'd need to use the `sink` device. Try `pactl info | grep Sink`, if _Source_ doesn't work. 2. Copy the name to the configuration option "audio_sink" 3. Restart sunshine