NilSteps

NilSteps is an OSC client sequecer for 16 steps / bar, only single track is available for the moment. You need OSC server compatible instruments to hear generated sound.

Installation

Add this line to your application's Gemfile:

gem 'nilsteps'

And then execute:

$ bundle

Or install it yourself as:

$ gem install nilsteps

Usage

# C1 for 1st note and D1 for 8th note of 16 steps in a bar
seq = Nilsteps::Sequencer.new
seq.setup_steps(0 => 'C1', 8 => 'D1')
seq.play(4)

Contributing

  1. Fork it ( https://github.com/[my-github-username]/nilsteps/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request