From 52604b7da4565f558c1a0d970aa60186305e4bb3 Mon Sep 17 00:00:00 2001 From: voytas Date: Wed, 5 Jun 2024 20:47:03 +0100 Subject: [PATCH] Update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6070054..c0b4adf 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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();