1
0
Fork
You've already forked alsa-go
0
No description
  • Go 100%
2023年12月28日 14:54:03 -08:00
cmd/aplay Initial version with minimally working playback 2019年01月06日 00:20:54 +01:00
.travis.yml Add support for travis 2019年01月30日 22:02:09 +01:00
alsa.go add NewPlayerWithDevice function and rename package 2023年12月28日 14:54:03 -08:00
go.mod add NewPlayerWithDevice function and rename package 2023年12月28日 14:54:03 -08:00
LICENSE Add BSD 3-Clause license 2019年01月29日 22:04:58 +01:00
README.md add NewPlayerWithDevice function and rename package 2023年12月28日 14:54:03 -08:00

go-alsa

A pure Go audio binding to ALSA that supports audio playback.

Build Status Go Report Card GoDoc

WARNING

The public API is unstable. Please fork/vendor before using. Right now it's inspired by oto, but only the player part is implemented, and some features are missing that alsa-lib might do to make it plug-and-play:

  • format conversion
  • channel conversion
  • resampling

TODO

This library implements the bare minimum of the rich alsa API. What's missing:

  • hardware feature detection (sample rate, channels, formats)
  • capture
  • non-interleaved audio playback
  • mmap-based API (less copying)
  • others