1
Fork 0
Go to file
Wim Taymans f0f3a0a660 0.3.2 2020-03-26 12:34:54 +01:00
doc doc: add documentation about the design of media & session management objects 2020-02-21 14:15:27 +00:00
man man: improve man pages a little 2020-02-18 10:36:28 +01:00
pipewire-alsa pipewire-alsa: Get period_bytes from config 2020-03-12 15:00:50 +01:00
pipewire-jack jack: use current buffer and samplerate 2020-03-18 17:52:48 +01:00
pipewire-pulseaudio pulse: make sure we never set latency num to 0 2020-03-18 11:40:25 +01:00
po Update POTFILES.in 2017-09-19 17:42:12 +02:00
spa udev: don't loop forever on errors 2020-03-24 15:54:58 +01:00
src pw-cat: allow latency=none 2020-03-26 11:34:59 +01:00
.editorconfig add .editorconfig files 2019-02-13 11:19:21 +01:00
.gitignore gitignore: Add generated Makefile 2019-11-08 13:00:00 +05:30
.gitlab-ci.yml fixed yaml file 2020-03-09 09:57:12 +01:00
CODE_OF_CONDUCT.md Add a code of coduct 2019-11-08 13:57:36 +05:30
COPYING Relicense as MIT/X11 2018-11-05 17:48:52 +01:00
LICENSE Relicense as MIT/X11 2018-11-05 17:48:52 +01:00
Makefile.in rename pipewire tools 2020-01-27 15:42:59 +01:00
NEWS 0.3.2 2020-03-26 12:34:54 +01:00
PROTOCOL Initial commit 2015-04-16 16:58:33 +02:00
README.md readme: Format in Markdown and add some more information 2019-11-04 16:33:51 +00:00
_config.yml Set theme jekyll-theme-slate 2017-09-04 19:55:46 +02:00
autogen.sh make libpulse-simple symlinks for developement 2020-02-20 15:04:44 +01:00
check_missing_headers.sh fix missing headers check 2020-02-05 17:21:12 +01:00
config.h.meson add systemd socket activation 2018-10-18 12:36:10 +02:00
meson.build 0.3.2 2020-03-26 12:34:54 +01:00
meson_options.txt meson: add tests option 2020-02-23 00:09:16 +01:00
pw-uninstalled.sh make symlinks to replacement libs for uninstalled script 2020-01-16 13:26:47 +01:00

README.md

PipeWire

PipeWire is a server and user space API to deal with multimedia pipelines. This includes:

  • Making available sources of video (such as from a capture devices or application provided streams) and multiplexing this with clients.
  • Accessing sources of video for consumption.
  • Generating graphs for audio and video processing.

Nodes in the graph can be implemented as separate processes, communicating with sockets and exchanging multimedia content using fd passing.

Building

Pipewire uses the Meson and Ninja build system to compile. You can run it with:

$ meson build
$ cd build
$ ninja

You can see the available meson options in meson_options.txt file.

If you're not familiar with these tools, the included autogen.sh script will automatically run the correct meson/ninja commands, and output a Makefile. It follows that there are two methods to build Pipewire, however both rely on Meson and Ninja to actually perform the compilation:

$ ./autogen.sh
$ make

Running

If you want to run PipeWire without installing it on your system, there is a script that you can run. This puts you in an environment in which PipeWire can be run from the build directory, and ALSA, PulseAudio and JACK applications will use the PipeWire emulation libraries automatically in this environment. You can get into this environment with:

$ ./pw-uninstalled.sh