forked from soiaf/C-Sharp-WavPack-Decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
25 lines (19 loc) · 1.3 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
////////////////////////////////////////////////////////////////////////////
// C# Implementation of WavPack Decoder //
// Copyright (c) 2010-2016 Peter McQuillan //
// All Rights Reserved. //
// Distributed under the BSD Software License (see license.txt) //
////////////////////////////////////////////////////////////////////////////
This package contains a C# implementation of the tiny version of the WavPack
4.40 decoder. It is packaged with a demo command-line program that accepts a
WavPack audio file as input and outputs a RIFF wav file (with the filename
output.wav). The program was developed using MonoDevelop but has also been
tested against Visual Studio.
To run the demo program, use the following command
CSharpWavPackDecoder <input.wv>
where input.wv is the name of the WavPack file you wish to decode to a WAV file.
This decoder will not handle "correction" files, plays only the first two
channels of multi-channel files, and is limited in resolution in some large
integer or floating point files (but always provides at least 24 bits of
resolution). It also will not accept WavPack files from before version 4.0.
Please direct any questions or comments to beatofthedrum@gmail.com