PipeWire  0.3.63
PipeWire Module: Example Sink

The example sink is a good starting point for writing a custom sink.

We refer to the source code for more information.

Module Options

  • node.name: a unique name for the stream
  • node.description: a human readable name for the stream
  • 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-example-sink
3  args = {
4  node.name = "example_sink"
5  node.description = "My Example Sink"
6  stream.props = {
7  audio.position = [ FL FR ]
8  }
9  }
10 }
11 ]