music-tempo icon indicating copy to clipboard operation
music-tempo copied to clipboard

Finding out tempo of the music

Results 5 music-tempo issues
Sort by recently updated
recently updated
newest added

For now I'm simply adding the duration from the audiobuffer, but I think it would be an interesting property to have as part of MusicTempo. ```js audioContext.decodeAudioData(fileEvent.target.result) .then(audioBuffer => resolve({...

The JSDoc also specify it should be a number ![image](https://user-images.githubusercontent.com/84519004/126832910-8a612844-b731-4013-8c1f-5bf2f79c074f.png)

This is probably similar to #5 in that the bottom line is that I got the same number of beats, and even roughly at similar places, but the end result...

Hi, I am creating a web app using Tone.js and music-tempo to get the bpm of the song. Tone is creating an audioContext that gets the sample rate from my...