libpipewire-module-vban-recv(7) Miscellaneous Information Manual NAME libpipewire-module-vban-recv - VBAN receiver DESCRIPTION The vban-recv module creates a PipeWire source that receives audio and midi VBAN packets. The receive will listen on a specific port (6980) and create a stream for each VBAN stream received on the port. MODULE NAME libpipewire-module-vban-recv MODULE OPTIONS Options specific to the behavior of this module o local.ifname = : interface name to use o source.ip = : the source ip address to listen on, default 127.0.0.1 o source.port = : the source port to listen on, default 6980 o node.always-process = : true to receive even when not running o sess.latency.msec = : target network latency in milliseconds, default 100 o stream.props = {}: properties to be passed to all the stream o stream.rules = : match rules, use create-stream actions. stream.rules matches o vban.ip: the IP address of the VBAN sender o vban.port: the port of the VBAN sender o sess.name: the name of the VBAN stream stream.rules create-stream In addition to all the properties that can be passed to a stream, you can also set: o sess.latency.msec = : target network latency in milliseconds, default 100 GENERAL OPTIONS Options with well-known behavior: o remote.name o audio.layout o audio.position o media.name o media.class o node.name o node.description o node.group o node.latency o node.virtual EXAMPLE CONFIGURATION # ~/.config/pipewire/pipewire.conf.d/my-vban-recv.conf context.modules = [ { name = libpipewire-module-vban-recv args = { #local.ifname = eth0 #source.ip = 127.0.0.1 #source.port = 6980 sess.latency.msec = 100 #node.always-process = false #audio.position = [ FL FR ] stream.props = { #media.class = "Audio/Source" #node.name = "vban-receiver" } stream.rules = [ { matches = [ { sess.name = "~.*" #sess.media = "audio" | "midi" #vban.ip = "" #vban.port = 1000 #audio.channels = 2 #audio.format = "U8" | "S16LE" | "S24LE" | "S32LE" | "F32LE" | "F64LE" #audio.rate = 44100 } ] actions = { create-stream = { stream.props = { #sess.latency.msec = 100 #target.object = "" #audio.position = [ FL FR ] #media.class = "Audio/Source" #node.name = "vban-receiver" } } } } ] } } ] Since 0.3.76 PipeWire 1.6.8 libpipewire-module-vban-recv(7)