toadjaune / pulseaudio-config

Scripts and notes for custom pulseaudio configuration
GNU Affero General Public License v3.0
240 stars 28 forks source link

Line 36 error? #12

Closed tethragon closed 1 year ago

tethragon commented 1 year ago

In the pulse setup.sh, line 36 is:

pactl load-module module-loopback source=virtual1.monitor sink="${SPEAKERS}" latency_msec=1 >> "${module_file}"

I think it should be:

pactl load-module module-loopback source="${SPEAKERS}".monitor sink=virtual1 latency_msec=1 >> "${module_file}"

Am I wrong?

toadjaune commented 1 year ago

I'm pretty sure you don't want to send your speaker's output anywhere besides your speaker, because it includes the videoconference output, and that would send people's voice back to them.

I feel like you're getting confused as to how we're trying to set the devices up, here. Can you have another look at the README's schema ?

(related to #11 )

tethragon commented 1 year ago

OK I'll try to understand it better. Maybe I am confused. I'll do some more testing. Thanks for the answer.