https://github.com/jfreymuth/pulse
PulseAudio client implementation in pure Go
https://github.com/jfreymuth/pulse
go golang pulseaudio
Last synced: 5 months ago
JSON representation
PulseAudio client implementation in pure Go
- Host: GitHub
- URL: https://github.com/jfreymuth/pulse
- Owner: jfreymuth
- License: mit
- Created: 2019-04-06T14:58:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-02-27T19:29:22.000Z (over 1 year ago)
- Last Synced: 2025-02-28T04:06:29.003Z (over 1 year ago)
- Topics: go, golang, pulseaudio
- Language: Go
- Homepage:
- Size: 104 KB
- Stars: 89
- Watchers: 6
- Forks: 25
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pulse
[](https://godocs.io/github.com/jfreymuth/pulse)
PulseAudio client implementation in pure Go.
Based on [github.com/yobert/pulse](https://github.com/yobert/pulse), which provided a very useful starting point.
Uses the pulseaudio native protocol to play audio without any CGO. The `proto` package exposes a very low-level API while the `pulse` package is more convenient to use.
# status
- `proto` supports almost all of the protocol, shm support is still missing.
- `pulse` implements sufficient functionality for most audio playing/recording applications.
# examples
see [demo/play](demo/play/main.go) and [demo/record](demo/record/main.go)