(amp, i)
| 1901 | }; |
| 1902 | // process peaks |
| 1903 | var Peak = function (amp, i) { |
| 1904 | this.sampleIndex = i; |
| 1905 | this.amplitude = amp; |
| 1906 | this.tempos = []; |
| 1907 | this.intervals = []; |
| 1908 | }; |
| 1909 | var allPeaks = []; |
| 1910 | // 1. for processPeaks() Function to identify peaks above a threshold |
| 1911 | // returns an array of peak indexes as frames (samples) of the original soundfile |
nothing calls this directly
no outgoing calls
no test coverage detected