Provided by: libpipewire-0.3-modules_1.0.5-1_amd64 bug

NAME

       libpipewire-module-netjack2-driver - Netjack2 driver

DESCRIPTION

       The netjack2-driver module provides a source or sink that is following a netjack2 manager.

MODULE NAME

       libpipewire-module-netjack2-driver

MODULE OPTIONS

       • driver.mode: the driver mode, sink|source|duplex, default duplex

       • local.ifname = <str>: interface name to use

       • net.ip =<str>: multicast IP address, default '225.3.19.154'

       • net.port =<int>: control port, default '19000'

       • net.mtu = <int>: MTU to use, default 1500

       • net.ttl = <int>: TTL to use, default 1

       • net.loop = <bool>: loopback multicast, default false

       • netjack2.client-name: the name of the NETJACK2 client.

       • netjack2.save: if jack port connections should be save automatically. Can also be placed
         per stream.

       • netjack2.latency: the latency in cycles, default 2

       • audio.channels: the number of audio ports. Can also be added to the stream props.

       • midi.ports: the number of midi ports. Can also be added to the stream props.

       • source.props: Extra properties for the source filter.

       • sink.props: Extra properties for the sink filter.

GENERAL OPTIONS

       Options with well-known behavior.

       • remote.nameaudio.channelsaudio.positionnode.namenode.descriptionnode.groupnode.virtualmedia.classtarget.object to specify the remote node.name or serial.id to link to

EXAMPLE CONFIGURATION OF A DUPLEX SINK/SOURCE

       context.modules = [
       {   name = libpipewire-module-netjack2-driver
           args = {
               #driver.mode          = duplex
               #netjack2.client-name = PipeWire
               #netjack2.save        = false
               #netjack2.latency     = 2
               #midi.ports           = 0
               #audio.channels       = 2
               #audio.position       = [ FL FR ]
               source.props = {
                   # extra sink properties
               }
               sink.props = {
                   # extra sink properties
               }
           }
       }
       ]