CharlieMallon / hackathonHero

Novembers Hackathon Challenge - a music themed game creation challenge
https://charliemallon.github.io/hackathonHero/
1 stars 1 forks source link

how to get the BPM of a song to tie it to the rythmn of the arrows #16

Open CharlieMallon opened 2 years ago

JusJae commented 2 years ago

BPM of each song has been found.

JusJae commented 2 years ago

const SONGS =[ { "name" : "Boom Boom Dollar", "artist" : "King Kong & Jungle Girls", "link" : "/assets/songs/Boom-Boom-Dollar--King-Kong-D-Jungle-Girls.mp3", "image" : "/assets/images/Boom-Boom-Dollar.jpg", "level": "hard", "bpm" : 135, }, { "name" : "Get Up & Dance", "artist" : "Freedom", "link" : "/assets/songs/Get-Up-and-Dance--Freedom.mp3", "image" : "/assets/images/Get-Up-and-Dance.jpg", "level": "easy", "bpm" : 107, }, { "name" : "Hero", "artist" : "Papaya", "link" : "/assets/songs/Hero-Papaya.mp3", "image" : "/assets/images/Hero.jpg", "level": "hard", "bpm" : 140,
}, { "name" : "Kung Fu Fighting", "artist" : "Bus Stop", "link" : "/assets/songs/Kung-Fu-Fighting--Bus-Stop-feat-Carl-Douglas.mp3", "image" : "/assets/images/Kung-Fu-Fighting.jpg", "level": "medium", "bpm" : 116, }, { "name" : "Love", "artist" : "Sonic Dream", "link" : "/assets/songs/Love-Sonic Dream.mp3", "image" : "/assets/images/Love.jpg", "level": "easy", "bpm" : 97, }, { "name" : "Shake your Booty", "artist" : "KC & The Sunshine Band", "link" : "/assets/songs/Shake-Your-Booty--KC--The-Sunshine-Band.mp3", "image" : "/assets/images/Shake-Your-Booty.jpg", "level": "medium", "bpm" : 112, } ]