Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unclechu/node-jack-connector
Bindings JACK-Audio-Connection-Kit for Node.JS
https://github.com/unclechu/node-jack-connector
audio ecmascript jack-audio-connection-kit javascript js nodejs
Last synced: about 2 months ago
JSON representation
Bindings JACK-Audio-Connection-Kit for Node.JS
- Host: GitHub
- URL: https://github.com/unclechu/node-jack-connector
- Owner: unclechu
- License: mit
- Created: 2013-07-28T02:12:54.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-06-09T20:38:45.000Z (over 1 year ago)
- Last Synced: 2024-10-12T00:31:22.242Z (2 months ago)
- Topics: audio, ecmascript, jack-audio-connection-kit, javascript, js, nodejs
- Language: C++
- Size: 359 KB
- Stars: 50
- Watchers: 9
- Forks: 14
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-networked-media - Node.JS JACK-connector - Bindings JACK-Audio-Connection-Kit for Node.JS (Uncategorized / Uncategorized)
README
Node.JS JACK-connector
======================Bindings JACK-Audio-Connection-Kit for Node.JS
Install
=======
```bash
npm install jack-connector
```Build requirements
==================
libjack2, libjack2-develHow to use
==========
```javascript
var jackConnector = require('jack-connector');
jackConnector.openClientSync('Noize Generator');
jackConnector.registerOutPortSync('output');function audioProcess(err, nframes) {
if (err) {
console.error(err);
process.exit(1);
return;
}var ret = [];
for (var i=0; i