Split multi-channel WAV files into single channel WAV files.
Перейти к файлу
wieslawsoltes d2dd8b03d1 Updated version 2019-04-04 07:08:02 +00:00
build Updated version 2019-04-04 07:08:02 +00:00
src Updated Avalonia 2019-02-01 19:04:03 +01:00
tests/WavFile.UnitTests Updated Avalonia 2019-02-01 19:04:03 +01:00
wav Renamed folder 2016-09-03 11:47:13 +02:00
.editorconfig Updated editorconfig 2018-07-09 19:47:58 +02:00
.gitattributes Updated gitattributes and gitignore 2017-11-14 18:39:52 +01:00
.gitignore Updated gitattributes and gitignore 2017-11-14 18:39:52 +01:00
.nuke Updated Nuke 2019-03-26 18:18:48 +01:00
LICENSE.TXT Updated version 2019-04-04 07:08:02 +00:00
NuGet.Config Update NuGet.Config 2019-03-03 18:58:19 +01:00
README.md Updated version 2019-04-04 07:08:02 +00:00
Reference.txt Added cake build system 2016-09-03 15:04:50 +02:00
SimpleWavSplitter.sln Updated 2018-12-09 19:01:20 +01:00
_config.yml Set theme jekyll-theme-cayman 2017-05-16 15:01:32 +02:00
build.ps1 Added nuke 2018-12-09 12:48:11 +00:00
build.sh Added nuke 2018-12-09 12:48:11 +00:00
global.json Updated Avalonia 2019-02-01 19:04:03 +01:00

README.md

SimpleWavSplitter

Gitter

Build status

NuGet MyGet

Split multi-channel WAV files into single channel WAV files.

Download

Platforn Type Version Download
Windows/Linux/OSX (GUI) Portable 0.8.0 SimpleWavSplitter.Avalonia-Release-0.8.0.zip
Windows/Linux/OSX (Console) Portable 0.8.0 SimpleWavSplitter.Console-Release-0.8.0.zip

Mirrors

Softpedia Download Mirror

NuGet

SimpleWavSplitter is delivered as a NuGet package.

You can find the package on NuGet or by using nightly build feed:

  • Add https://www.myget.org/F/simplewavsplitter-nightly/api/v2 to your package sources
  • Update your package using WavFile feed

You can install the package like this:

Install-Package WavFile -Pre

Package Dependencies

Does not require any external dependencies.

Package Sources

Resources

Using SimpleWavSplitter

Please check first the sample apps and the helper class.

  • SimpleWavSplitter.Console
  • SimpleWavSplitter.Avalonia

Split Wav Files

using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using WavFile;
using static System.Console;
using static System.Math;

namespace SimpleWavSplitter.Console
{
    class Program
    {
        static void Main(string[] args)
        {
            string fileName = string.Empty;
            string outputPath = string.Empty;
            if (args.Count() == 1)
            {
                fileName = args[0];
                outputPath = fileName.Remove(fileName.Length - Path.GetFileName(fileName).Length);
            }
            else if (args.Count() == 2)
            {
                fileName = args[0];
                outputPath = args[1];
            }
            else
            {
                var v = Assembly.GetExecutingAssembly().GetName().Version;
                WriteLine(
                    string.Format(
                        "SimpleWavSplitterConsole v{0}.{1}.{2}", 
                        v.Major, v.Minor, v.Build));
                Write(Environment.NewLine);
                WriteLine("Usage:");
                WriteLine("SimpleWavSplitter.Console <file.wav> [<OutputPath>]");
                Environment.Exit(-1);
            }

            try
            {
                long bytesTotal = 0;
                var splitter = new WavFileSplitter(
                    value => Write(string.Format("\rProgress: {0:0.0}%", value)));
                var sw = Stopwatch.StartNew();
                bytesTotal = splitter.SplitWavFile(fileName, outputPath, CancellationToken.None);
                sw.Stop();
                Write(Environment.NewLine);
                WriteLine(
                    string.Format(
                        "Data bytes processed: {0} ({1} MB)", 
                        bytesTotal, Round((double)bytesTotal / (1024 * 1024), 1)));
                WriteLine(string.Format("Elapsed time: {0}", sw.Elapsed));
                Environment.Exit(0);
            }
            catch (Exception ex)
            {
                WriteLine(ex.Message);
                WriteLine(ex.StackTrace);
                Environment.Exit(-1);
            }
        }
    }
}

Get Wav Header

using System.IO;
using static System.Console;

string fileName = "test.wav";

using (var fs = new FileStream(fileName, FileMode.Open, FileAccess.Read))
{
    var h = WavFileInfo.ReadFileHeader(fs);
    Write(
        string.Format(
            "FileName:\t\t{0}\nFileSize:\t\t{1}\n{2}", 
            Path.GetFileName(fileName), fs.Length, h));
}

License

SimpleWavSplitter is licensed under the MIT license.