This commit is contained in:
wieslawsoltes 2018-02-19 08:22:35 +00:00
Родитель fc378a8a8f
Коммит e2d832c912
3 изменённых файлов: 40 добавлений и 6 удалений

Просмотреть файл

@ -1,5 +1,9 @@
# Changelog
### Version 2.4
- Split projects.
### Version 2.3
- Fixed progress output.

Просмотреть файл

@ -8,14 +8,30 @@
Decode avisynth audio stream to raw audio file and split multi-channel WAV files into single channel WAV files.
## Download AvsDec
## Download
### AvsDec
| Platform | Character Set | Version | Download |
|--------------------|----------------|-----------|--------------------------------------------------------------------------------------------------------------------------------|
| Windows 32-bit | Unicode | 2.3 | [AvsDec-2.3-Win32-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.3/AvsDec-2.3-Win32-UNICODE.zip) |
| Windows 64-bit | Unicode | 2.3 | [AvsDec-2.3-x64-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.3/AvsDec-2.3-x64-UNICODE.zip) |
| Windows 32-bit | MBCS | 2.3 | [AvsDec-2.3-Win32-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.3/AvsDec-2.3-Win32-MBCS.zip) |
| Windows 64-bit | MBCS | 2.3 | [AvsDec-2.3-x64-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.3/AvsDec-2.3-x64-MBCS.zip) |
| Windows 32-bit | Unicode | 2.4 | [AvsDec-2.4-Win32-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/AvsDec-2.4-Win32-UNICODE.zip) |
| Windows 64-bit | Unicode | 2.4 | [AvsDec-2.4-x64-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/AvsDec-2.4-x64-UNICODE.zip) |
| Windows 32-bit | MBCS | 2.4 | [AvsDec-2.4-Win32-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/AvsDec-2.4-Win32-MBCS.zip) |
| Windows 64-bit | MBCS | 2.4 | [AvsDec-2.4-x64-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/AvsDec-2.4-x64-MBCS.zip) |
### WavInfo
| Windows 32-bit | Unicode | 2.4 | [WavInfo-2.4-Win32-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavInfo-2.4-Win32-UNICODE.zip) |
| Windows 64-bit | Unicode | 2.4 | [WavInfo-2.4-x64-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavInfo-2.4-x64-UNICODE.zip) |
| Windows 32-bit | MBCS | 2.4 | [WavInfo-2.4-Win32-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavInfo-2.4-Win32-MBCS.zip) |
| Windows 64-bit | MBCS | 2.4 | [WavInfo-2.4-x64-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavInfo-2.4-x64-MBCS.zip) |
### WavSplit
| Windows 32-bit | Unicode | 2.4 | [WavSplit-2.4-Win32-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavSplit-2.4-Win32-UNICODE.zip) |
| Windows 64-bit | Unicode | 2.4 | [WavSplit-2.4-x64-UNICODE.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavSplit-2.4-x64-UNICODE.zip) |
| Windows 32-bit | MBCS | 2.4 | [WavSplit-2.4-Win32-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavSplit-2.4-Win32-MBCS.zip) |
| Windows 64-bit | MBCS | 2.4 | [WavSplit-2.4-x64-MBCS.zip](https://github.com/wieslawsoltes/AvsDec/releases/download/2.4/WavSplit-2.4-x64-MBCS.zip) |
## System requirements
@ -48,6 +64,8 @@ AvsDec is an audio files conversion software for decoding avisynth audio streams
## Usage
### AvsDec
```
usage: AvsDec [option] <...>
option:
@ -55,11 +73,23 @@ option:
examples:
AvsDec -d <input.avs> [<output.raw>]
AvsDec -d <input.avs> - > <output.raw>
```
### WavInfo
```
usage: WavInfo [option] <...>
option:
[-i] Show wav file header info
examples:
AvsDec -i <input.wav>
```
### WavSplit
```
usage: WavSplit [option] <...>
option:
[-s] Split multi-channel WAV file into single channel WAV files
examples:
AvsDec -s <input.wav> [<OutputPath>]

Просмотреть файл

@ -87,7 +87,7 @@ var packageBinariesWavInfoAction = new Action<string,string> ((configuration, pl
var output = "WavInfo-" + version + suffix + "-" + platform + (configuration.Contains("Release") ? ("-" + configuration.Replace("Release", "")) : ("-" + configuration));
var outputDir = artifactsDir.Combine(output);
var outputZip = artifactsDir.CombineWithFilePath(output + ".zip");
var exeFile = File(path + "AvsDec.exe");
var exeFile = File(path + "WavInfo.exe");
CleanDirectory(outputDir);
CopyFileToDirectory(File("README.md"), outputDir);
CopyFileToDirectory(File("CHANGELOG.md"), outputDir);