Class: Topaz::TempoCalculator
- Inherits:
-
Object
- Object
- Topaz::TempoCalculator
- Defined in:
- lib/topaz/tempo_calculator.rb
Overview
Calculate tempo given timestamps
Constant Summary collapse
- THRESHOLD =
minimum number of ticks to analyze
6
Instance Attribute Summary collapse
-
#tempo ⇒ Object
readonly
Returns the value of attribute tempo.
-
#timestamps ⇒ Object
readonly
Returns the value of attribute timestamps.
Instance Method Summary collapse
-
#find_tempo ⇒ Object
Analyze the tempo based on the threshold.
-
#initialize ⇒ TempoCalculator
constructor
A new instance of TempoCalculator.
Constructor Details
#initialize ⇒ TempoCalculator
Returns a new instance of TempoCalculator.
10 11 12 13 |
# File 'lib/topaz/tempo_calculator.rb', line 10 def initialize @tempo = nil = [] end |
Instance Attribute Details
#tempo ⇒ Object (readonly)
Returns the value of attribute tempo.
8 9 10 |
# File 'lib/topaz/tempo_calculator.rb', line 8 def tempo @tempo end |
#timestamps ⇒ Object (readonly)
Returns the value of attribute timestamps.
8 9 10 |
# File 'lib/topaz/tempo_calculator.rb', line 8 def end |
Instance Method Details
#find_tempo ⇒ Object
Analyze the tempo based on the threshold
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/topaz/tempo_calculator.rb', line 16 def find_tempo tempo = nil diffs = [] .shift while .length > THRESHOLD .each_with_index { |n, i| (diffs << ([i+1] - n)) unless [i+1].nil? } unless diffs.empty? avg = (diffs.inject { |a, b| a + b }.to_f / diffs.length.to_f) tempo = ppq24_millis_to_bpm(avg) end @tempo = tempo end |