PipeWire  0.3.63
PipeWire Module: RTP sink

The rtp-sink module creates a PipeWire sink that sends audio RTP packets.

Module Options

Options specific to the behavior of this module

  • sap.ip = <str>: IP address of the SAP messages, default "224.0.0.56"
  • sap.port = <int>: port of the SAP messages, default 9875
  • source.ip =<str>: source IP address, default "0.0.0.0"
  • destination.ip =<str>: destination IP address, default "224.0.0.56"
  • destination.port =<int>: destination port, default random beteen 46000 and 47024
  • local.ifname = <str>: interface name to use
  • net.mtu = <int>: MTU to use, default 1280
  • net.ttl = <int>: TTL to use, default 1
  • net.loop = <bool>: loopback multicast, default false
  • sess.name = <str>: a session name
  • stream.props = {}: properties to be passed to the stream

General options

Options with well-known behavior:

## Example configuration

1  context.modules = [
2  { name = libpipewire-module-rtp-sink
3  args = {
4  #sap.ip = "224.0.0.56"
5  #sap.port = 9875
6  #source.ip = "0.0.0.0"
7  #destination.ip = "224.0.0.56"
8  #destination.port = 46000
9  #local.ifname = "eth0"
10  #net.mtu = 1280
11  #net.ttl = 1
12  #net.loop = false
13  #sess.name = "PipeWire RTP stream"
14  #audio.format = "S16BE"
15  #audio.rate = 48000
16  #audio.channels = 2
17  #audio.position = [ FL FR ]
18  stream.props = {
19  node.name = "rtp-sink"
20  }
21  }
22 }
23 ]
Since
0.3.60