Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charlieroberts/gibber.lib
This library provides the graphics and audio capabilities of Gibber without the code editing environment.
https://github.com/charlieroberts/gibber.lib
Last synced: 18 days ago
JSON representation
This library provides the graphics and audio capabilities of Gibber without the code editing environment.
- Host: GitHub
- URL: https://github.com/charlieroberts/gibber.lib
- Owner: charlieroberts
- License: mit
- Created: 2014-08-20T07:08:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-25T15:22:28.000Z (about 8 years ago)
- Last Synced: 2024-09-26T20:16:27.941Z (about 2 months ago)
- Language: JavaScript
- Size: 2.57 MB
- Stars: 24
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gibber.lib
==========This library provides the graphics and audio capabilities of Gibber without the code editing environment.
## Building (for development)
You can simply download the repo and skip straight to the usage section if you don't need to modify the library. If you want to modify gibber.lib, here's how to build it:
1. If you don't have it, install npm (the node.js package manager) from http://npmjs.org
2. Inside the top level of the repo, run `npm install` in the terminal.
3. Run `gulp`. This is a build module that is installed in step 2.The build outputs a UMD file, gibber.lib.js, and a minified version.
## Usage
The library can be used with plain script tags, CommonJS or AMD style includes. Below is an example HTML file that plays a simple drum beat, bass line, and random melody.```html
Gibber.init() // REQUIRED
a = EDrums('x*ox*xo-') // make a drum beat
a.snare.snappy = 1 // set the noise level in the snarea.fx.add( Reverb() ) // add reverb to drums
b = TorusKnot({ scale:2 }).spin(.001) // create a knot geometry
c = Dots() // add a halftone shader effect
c.scale = Master.Out // scale of dots tracks master audio output```
If you want to use CommonJS (node or browserify), just use the following to start things off (assuming you have the module installed):
```js
Gibber = require( 'gibber.lib' )
Gibber.init()
```## Notes
Note that `Drums` do not work because I haven't figured out resource management yet and `Drums` uses audio samples. However, `EDrums` (which uses synthesis) works fine.