PipeWire  1.0.3
ROC source

The roc-source module creates a PipeWire source that receives samples from ROC sender and passes them to the sink it is connected to.

One can then connect it to any audio device.

Module Name

libpipewire-module-roc-source

Module Options

Options specific to the behavior of this module

  • source.props = {}: properties to be passed to the source stream
  • source.name = <str>: node.name of the source
  • local.ip = <str>: local sender ip
  • local.source.port = <str>: local receiver TCP/UDP port for source packets
  • local.repair.port = <str>: local receiver TCP/UDP port for receiver packets
  • local.control.port = <str>: local receiver TCP/UDP port for control packets
  • sess.latency.msec = <str>: target network latency in milliseconds
  • resampler.profile = <str>: Possible values: disable, high, medium, low.
  • fec.code = <str>: Possible values: disable, rs8m, ldpc

General options

Options with well-known behavior:

Example configuration

1  context.modules = [
2  { name = libpipewire-module-roc-source
3  args = {
4  local.ip = 0.0.0.0
5  resampler.profile = medium
6  fec.code = disable
7  sess.latency.msec = 5000
8  local.source.port = 10001
9  local.repair.port = 10002
10  local.control.port = 10003
11  source.name = "ROC Source"
12  source.props = {
13  node.name = "roc-source"
14  }
15  }
16  }
17 ]