Skip to content

Commit ee811d7

Browse files
authored
Update README.md
1 parent 60cd180 commit ee811d7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Beep [![GoDoc](https://godoc.org/github.com/faiface/beep?status.svg)](https://godoc.org/github.com/faiface/beep) [![Go Report Card](https://goreportcard.com/badge/github.com/faiface/beep)](https://goreportcard.com/report/github.com/faiface/beep) [![Discord Chat](https://img.shields.io/discord/699679031603494954)](https://discord.gg/q2DK4MP)
1+
# Beep [![GoDoc](https://godoc.org/github.com/faiface/beep?status.svg)](https://godoc.org/github.com/developerek/beep) [![Go Report Card](https://goreportcard.com/badge/github.com/faiface/beep)](https://goreportcard.com/report/github.com/developerek/beep) [![Discord Chat](https://img.shields.io/discord/699679031603494954)](https://discord.gg/q2DK4MP)
22

33
A little package that brings sound to any Go application. Suitable for playback and audio-processing.
44

55
```
6-
go get -u github.com/faiface/beep
6+
go get -u github.com/developerek/beep
77
```
88

99
## Features
1010

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.
1212

1313
- **Decode and play WAV, MP3, OGG, and FLAC.**
1414
- **Encode and save WAV.**
@@ -20,18 +20,18 @@ Beep is built on top of its [Streamer](https://godoc.org/github.com/faiface/beep
2020

2121
## Tutorial
2222

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.**
2424

25-
- [Hello, Beep!](https://github.com/faiface/beep/wiki/Hello,-Beep!)
26-
- [Composing and controlling](https://github.com/faiface/beep/wiki/Composing-and-controlling)
27-
- [To buffer, or not to buffer, that is the question](https://github.com/faiface/beep/wiki/To-buffer,-or-not-to-buffer,-that-is-the-question)
28-
- [Making own streamers](https://github.com/faiface/beep/wiki/Making-own-streamers)
25+
- [Hello, Beep!](https://github.com/developerek/beep/wiki/Hello,-Beep!)
26+
- [Composing and controlling](https://github.com/developerek/beep/wiki/Composing-and-controlling)
27+
- [To buffer, or not to buffer, that is the question](https://github.com/developerek/beep/wiki/To-buffer,-or-not-to-buffer,-that-is-the-question)
28+
- [Making own streamers](https://github.com/developerek/beep/wiki/Making-own-streamers)
2929

3030
## Examples
3131

32-
| [Speedy Player](https://github.com/faiface/beep/tree/master/examples/speedy-player) | [Doppler Stereo Room](https://github.com/faiface/beep/tree/master/examples/doppler-stereo-room) |
32+
| [Speedy Player](https://github.com/developerek/beep/tree/master/examples/speedy-player) | [Doppler Stereo Room](https://github.com/developerek/beep/tree/master/examples/doppler-stereo-room) |
3333
| --- | --- |
34-
| ![Speedy Player](https://github.com/faiface/beep/blob/master/examples/speedy-player/screenshot.png) | ![Doppler Stereo Room](https://github.com/faiface/beep/blob/master/examples/doppler-stereo-room/screenshot.png) |
34+
| ![Speedy Player](https://github.com/developerek/beep/blob/master/examples/speedy-player/screenshot.png) | ![Doppler Stereo Room](https://github.com/developerek/beep/blob/master/examples/doppler-stereo-room/screenshot.png) |
3535

3636
## Dependencies
3737

@@ -41,7 +41,7 @@ Running an already built application should work with no extra dependencies.
4141

4242
## Licence
4343

44-
[MIT](https://github.com/faiface/beep/blob/master/LICENSE)
44+
[MIT](https://github.com/developerek/beep/blob/master/LICENSE)
4545

4646
## Projects using beep
4747

0 commit comments

Comments
 (0)