A Nim wrapper for the JACK C API
Go to file
Christopher Arndt 72d99007c5 fix: minor example tweaks
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2022-10-10 21:01:21 +02:00
examples fix: minor example tweaks 2022-10-10 21:01:21 +02:00
.gitignore Add README, LICENSE and .gitignore 2022-10-06 04:19:20 +02:00
LICENSE docs: add copyright info to license file and links to readme 2022-10-06 15:16:57 +02:00
README.md docs: add project status and installation sections to readme 2022-10-10 20:35:36 +02:00
jacket.nim refactor: rename NFramesT; add DefaultAudioSampleT 2022-10-10 03:47:26 +02:00
jacket.nimble feat: add simple nimble file 2022-10-06 04:43:00 +02:00

README.md

jacket

A Nim wrapper for the JACK C API

Project status

This software is in alpha status and has no official release yet.

The basic JACK APIs (client lifecycle, ports, callbacks) have been wrapped and are functional (see examples), but MIDI, transport and meta-data APIs still need wrapping. Also, symbol names may still be changed and things moved around before the first public release.

Also, I plan to add a higher-level abstraction on top of the direct mapping from Nim procs and types to C functions and types, probably in the form of a JACk client object, which takes care of a JACK client instance, registering ports and setting up all the callbacks necessary for a well-behaved JACK application.

Installation

  • Clone this repository.
  • Change into the jacket directory.
  • Run nimble install (or nimble develop).
  • Run the examples with nim compile --run examples/<example>.nim.

License

This software is released under the MIT License. See the LICENSE file for more information.