Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teekay/flakenaudioadapter
An adapter that reads FLAC audio files using CUETools.Flake and makes it available to applications using the NAudio library.
https://github.com/teekay/flakenaudioadapter
Last synced: 15 days ago
JSON representation
An adapter that reads FLAC audio files using CUETools.Flake and makes it available to applications using the NAudio library.
- Host: GitHub
- URL: https://github.com/teekay/flakenaudioadapter
- Owner: teekay
- License: mit
- Created: 2022-07-20T13:23:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-31T13:25:45.000Z (over 2 years ago)
- Last Synced: 2025-01-02T13:36:49.058Z (22 days ago)
- Language: C#
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FlakeNAudioAdapter
An adapter that reads FLAC audio files using [CUETools.Flake](https://github.com/teekay/FLACTools) and makes it available to applications using the [NAudio](https://github.com/naudio/NAudio) library.
## Usage
Reference the library in your project and instantiate the `FlakeFileReader` class:
```cs
var reader = new FlakeFileReader('/path/to/flac/file');
```Then, use it just like any other `WaveStream` implementation.