=======
BPM to Msec
Convert BPM (beats-per-minute) to millisecond.
Installation
Add this line to your application's Gemfile:
gem 'bpm_to_msec'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bpm_to_msec
Usage
require 'bpm_to_msec'
bpm2ms = BPMToMsec.new(120)
puts bpm2ms.quarter_note #=> 500.0
puts bpm2ms.eighth_note #=> 250.0
Contributing
- Fork it ( https://github.com/5t111111/bpm_to_msec/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request