You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2023. It is now read-only.
Due to Github's determination to be the "world’s leading AI-powered developer platform" I will move my projects to Codeberg
Jack-Sharp
Jack-Sharp is a .NET/mono binding for Jack, and contains multiple: JackSharp, Jack.NAudio, and Jack.CSCore. The latter projects are bindings of JackSharp for NAudio and CSCore.
Emits events on general Jack information, that consumers can subscribe to. See the source code comments for details.
Processor
Audio and MIDI client. Useful for creating an application with inputs and outputs.
Add your logic for processing a buffer on audio and MIDI input and output by adding a Func<JackSharp.Processing.ProcessBuffer> to ProcessFunc of an instance of JackSharp.Processor. Multiple methods can be added and removed.
Controller
Client for controlling the Jack server and connections. Useful for creating a control application.
Can connect and disconnect ports of different applications.
If your application needs functionality from both Processor and Controller, then you must create instances of both classes in your consumer with different names.
Jack.NAudio
Binding for JackSharp.Processor for NAudio. It contains implementations for IWavePlayer and IWaveIn.
Running unit tests can be a bit tricky, as some unit tests require an already running instance of Jack, while others require, that Jack must be started by the tested objects themselves.
The following test class from the project JackSharpTest must be run without Jack: