DrAbc.SilkCodec.CSCore 1.0.0

dotnet add package DrAbc.SilkCodec.CSCore --version 1.0.0
                    
NuGet\Install-Package DrAbc.SilkCodec.CSCore -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DrAbc.SilkCodec.CSCore" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DrAbc.SilkCodec.CSCore" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DrAbc.SilkCodec.CSCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DrAbc.SilkCodec.CSCore --version 1.0.0
                    
#r "nuget: DrAbc.SilkCodec.CSCore, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DrAbc.SilkCodec.CSCore@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DrAbc.SilkCodec.CSCore&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=DrAbc.SilkCodec.CSCore&version=1.0.0
                    
Install as a Cake Tool

SilkCodec.NET.CSCore

CSCore extensions for SilkCodec.NET. Convert any CSCore-readable audio format to Silk v3, and decode Silk v3 to WAV, PCM, MP3, AAC/M4A or WMA.

Windows only (net10.0-windows, net8.0-windows, net472). Compressed formats use Media Foundation.

Install

dotnet add package SilkCodec.NET.CSCore

Encode

using SilkCodec.NET;
using SilkCodec.NET.CSCore;
using CSCore;
using CSCore.Codecs;

var encoder = new SilkEncoder(new SilkEncoderOptions
{
    SampleRate = 24000,
    BitRate = 25000,
    Tencent = true
});

byte[] silk = encoder.EncodeFile("voice.mp3");
encoder.EncodeFile("voice.wav", "voice.silk");

using IWaveSource source = CodecFactory.Instance.GetCodec("voice.flac");
byte[] fromSource = encoder.Encode(source);
byte[] fromExtension = source.ToSilk(encoder.Options);

.pcm, .raw and .s16le files are treated as signed 16-bit little-endian mono at encoder.Options.SampleRate.

Decode

var decoder = new SilkDecoder(new SilkDecoderOptions { SampleRate = 24000 });

decoder.DecodeFile("voice.silk", "voice.wav");
decoder.DecodeFile("voice.silk", "voice.mp3");
byte[] wav = decoder.DecodeToWav(File.ReadAllBytes("voice.silk"));

using IWaveSource wave = decoder.DecodeToWaveSource(File.ReadAllBytes("voice.silk"));

Output format is inferred from the file extension: .wav, .pcm/.raw/.s16le, .mp3, .m4a/.aac/.mp4, .wma.

MP3, AAC and WMA encoding may resample to 44.1 kHz because Windows Media Foundation often rejects 24 kHz mono.

License

MIT (Expat), see the repository LICENSE.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed.  net10.0-windows7.0 is compatible. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 83 8/26/2026