I found the Question and answer:
How can I use PulseAudio virtual audio streams to play music over Skype?
I am currently using the command
pactl load-module module-null-sink sink_name=Virtual1
to create my virtual devices. But would like to use
pactl load-module module-null-sink sink_name=Virtual1 sink_properties=device.description="NAME HERE (mic+music)"
But when issuing the command, I get the following error.
$ pactl load-module module-null-sink sink_name=Virtual2 sink_properties=device.description="NAME HERE (only music)"
Failure: Module initialization failed
Is there another way to name the device? Whilst making a virtual device.
pacmd
in the first place to see the results live without restarting the daemon / local service. When you want to make this loaded by PulseAudio as default put these commands indefault.pa
configuration file (withoutpacmd
). – CeDeROM Jan 20 '22 at 06:01update-sink-proplist
you do not need double quoting indefault.pa
. – jarno Dec 15 '22 at 15:54