Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# NetCoreAudio

The library allows playback of audio files on .NET Core on any operating system with minimal dependencies

# Usage
## Usage

The library exposes Player class, which detects the OS the library is running on and abstracts away any OS-specific audio playback implementations.

## Properties

### bool Plaing
### bool Playing

Indicates that the audio is currently playing.

Expand All @@ -23,7 +24,7 @@ Will stop any current playback and will start playing the specified audio file.

### Pause()

Pauses any ongong playback. Sets Paused flag to true. Doesn't modify Playing flag.
Pauses any ongoing playback. Sets Paused flag to true. Doesn't modify Playing flag.

### Resume()

Expand All @@ -40,4 +41,3 @@ Stopped playback cannot be resumed. If the same file needs to be played again, i
### EventHandler PlaybackFinished

Internally, sets Playing flag to false. Additional handlers can be attached to it to handle any custom logic.