You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A little package that brings sound to any Go application. Suitable for playback and audio-processing.
4
4
5
5
```
6
-
go get -u github.com/faiface/beep
6
+
go get -u github.com/developerek/beep
7
7
```
8
8
9
9
## Features
10
10
11
-
Beep is built on top of its [Streamer](https://godoc.org/github.com/faiface/beep#Streamer) interface, which is like [io.Reader](https://golang.org/pkg/io/#Reader), but for audio. It was one of the best design decisions I've ever made and it enabled all the rest of the features to naturally come together with not much code.
11
+
Beep is built on top of its [Streamer](https://godoc.org/github.com/developerek/beep#Streamer) interface, which is like [io.Reader](https://golang.org/pkg/io/#Reader), but for audio. It was one of the best design decisions I've ever made and it enabled all the rest of the features to naturally come together with not much code.
12
12
13
13
-**Decode and play WAV, MP3, OGG, and FLAC.**
14
14
-**Encode and save WAV.**
@@ -20,18 +20,18 @@ Beep is built on top of its [Streamer](https://godoc.org/github.com/faiface/beep
20
20
21
21
## Tutorial
22
22
23
-
The [Wiki](https://github.com/faiface/beep/wiki) contains a handful of tutorials for you to get started. They teach the fundamentals and advanced topics alike. **Read them especially if you call `speaker.Init` every time you play something.**
23
+
The [Wiki](https://github.com/developerek/beep/wiki) contains a handful of tutorials for you to get started. They teach the fundamentals and advanced topics alike. **Read them especially if you call `speaker.Init` every time you play something.**
0 commit comments