Horje
PULSEUADIO to PIPEWIRE default.pa -> pipewire.conf Code Example
PULSEUADIO to PIPEWIRE default.pa -> pipewire.conf
context.objects = {
    adapter = {
        args = {
            factory.name    = api.alsa.pcm.sink            # The ALSA sinks object on Pipewire
            node.name       = line_output            # A name for the device
            node.description        = "Line Output"            # A visible name for the device in the tray (mandatory quotes)
            media.class             = Audio/Sink            # Another sink parameter on Pipewire
            api.alsa.path           = "hw:PCH,0"            # Finally the sink location. Quotes are mandatory.
        }
    }
    adapter = {
        args = {
            factory.name    = api.alsa.pcm.source            # Here we did the same thing, just change "sink" to "source" and the names.
            node.name       = microphone_input
            node.description        = "Microphone Input"
            media.class             = Audio/Source
            api.alsa.path           = "hw:PCH,0"
        }
    }
    adapter = {
        args = {
            factory.name    = api.alsa.pcm.source
            node.name       = line_input
            node.description        = "Line Input"
            media.class             = Audio/Source
            api.alsa.path           = "hw:PCH,2"
        }
    }
}




Shell

Related
docker stop swarm Code Example docker stop swarm Code Example
Add branch to git prompt ubuntu wsl Code Example Add branch to git prompt ubuntu wsl Code Example
Couldn't join realm: Necessary packages are not installed: oddjob, oddjob-mkhomedir, sssd, adcli Code Example Couldn't join realm: Necessary packages are not installed: oddjob, oddjob-mkhomedir, sssd, adcli Code Example
mawk print file contents Code Example mawk print file contents Code Example
install extra requires Code Example install extra requires Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10