Giter Club home page Giter Club logo

8bit.js's Introduction

8Bit.js Audio Library

Write music using 8bit oscillation sounds. Supports rhythms, multiple instruments, repeating sections, and complex time signatures.

Get Started

  1. Include 8bit.min.js in the head of your document.

  2. Create an new instance: var music = new EightBit();

  3. Give it a Time Signature: music.setTimeSignature(4,4);

  4. Set the tempo: music.setTempo(120);

  5. Create an instrument: var piano = music.createInstrument();

  6. Start adding notes:

    piano.note('C4', 'quarter');
    piano.note('D4', 'quarter');
    piano.note('E4', 'quarter');
    piano.note('F4', 'quarter');
  7. Mark the piano instrument as finished: piano.finish();

  8. Tell the music everything is done: music.end();

  9. Start playing the music: music.play()

For a more robust example, please see: http://plnkr.co/edit/dv5iEPuMun0EIdmt9Y6n?p=preview

API

EightBit Class
Method Params Default Values
setTimeSignature(top, bottom) top: 4
bottom: 4
This will set the Time Signature for the music. Any number of top numbers (how many beats per bar) can be set, but the bottom number (which note gets the beat) can only be 2, 4, or 8.
setTempo(tempo) tempo: 120 Set the tempo (BPM) of the music
setMasterVolume(volume) volume: 100 Set the master volume of the music. From 0 to 100
pause() n/a Pause the music.
stop(fadeOut) fadeOut: true Stop the music with a slight fade out. If you don't want the fade, pass in false.
play() n/a Play the music.
end() n/a Collects all of the notes of each finished instrument and creates the oscillators in preperation to play.
mute(callback) n/a Mutes the music. You can pass in a function as a callback when the music completely faded.
unmute(callback) n/a Unmute the music. You can pass in a function as a callback when the music is completely faded up.
onFinished(callback) n/a Pass in a function that will be called when the music has completed
loop(loop) loop: false Pass in true if you want the music to keep looping forever.
createInstrument(waveForm) waveForm: sine Creates an instrument that you can add notes/rests with. The possible instrument types are: sine, square, sawtooth, and triangle
Instrument Class - Created by using the EightBit:createInstrument() method.
Method Params Default Values
note(pitch, note, tie) pitch Must be set
note Must be set
tie: true
Adds a note to the stack of notes for the particular instrument.
pitch can be any note between C0 and C8 (e.x. Bb3 or G#7)
note can be any from the list below
  • whole
  • dottedHalf
  • half
  • dottedQuarter
  • tripletHalf
  • quarter
  • dottedEighth
  • tripletQuarter
  • eighth
  • dottedSixteenth
  • tripletEighth
  • sixteenth
  • tripletSixteenth
  • thirtySecond
tie can tie two notes together without any gap. By default the library puts in an articulation gap of about a tenth of the length of the note.
rest(note) note Must be set Adds a rest to the list of notes. Use the note list above for the type of rest you can use.
setVolume(volume) volume: 25 Sets the volume for this particular instrument. From 0 to 100. You can call this multiple times before notes to change their volume at that point of the music.
repeatStart() n/a Puts in a marker where a section of music should be repeated from.
repeat(times) times: 1 Used in confunction with repeatStart(). Pass in how many times the section should be repeated. If no repeatStart() is set, it goes from the beginning.
finish() n/a This will mark the instrument as complete and add it's notes to the master list. If this is missing, the instrument will not be played.

8bit.js's People

Contributors

meenie avatar

Watchers

Matt Rohr avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.