velocitatem / HarmoniQ

0 stars 0 forks source link

Combine with songs that are top hits in some genre #6

Open velocitatem opened 11 months ago

velocitatem commented 11 months ago

say you have:

let weights = [0.7, 0.3]
// say for BPM
let sampleAverage = 120,
    targetAverage = 160;

let data = {
    bpm: weights[0] * sampleAverage + weights[1] * targetAverage
}

console.log(data);