Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
voytas committed Jun 5, 2024
1 parent 9e5f661 commit 52604b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Beeper
# Beep

Beeper is a simple cross platform dotnet library for playing audio using PCM data. By default dotnet does not have a built in
Beep is a simple cross platform dotnet library for playing audio using PCM data. By default dotnet does not have a built in
way to play audio and this library provides a very basic way to play audio.

It was inspired by the [oto](https://github.com/ebitengine/oto) golang library that I used before. However, it is not a direct port of it.
Expand All @@ -25,7 +25,7 @@ Audio playback is implemented using [WASAPI](https://docs.microsoft.com/en-us/wi
## Usage

```csharp
using OldBit.Beeper;
using OldBit.Beep;

using var audioPlayer = new AudioPlayer(AudioFormat.Float32BitLittleEndian, 44100, 2);
audioPlayer.Start();
Expand Down

0 comments on commit 52604b7

Please sign in to comment.