0x48piraj / aos

Aroma of the Songs — Visualizing music in the form of intricate rose petals using moving cube traces.
https://0x48piraj.com/projects/aos/
MIT License
11 stars 2 forks source link

Classify the song #10

Open 0x48piraj opened 4 years ago

0x48piraj commented 4 years ago

Classifying the song using mathematical techniques and providing an auto mode which utilizes this feature to choose the appropriate color, for example,

if (song==romantic) {
  setColor(red)
} else if (song==abstract) {
 ...
}

Emotion aware music detection, know what kind of song it is using lyrics & NLP, A# sharp, or utilising other techniques without using computationally intensive methods.

AmanJaiswal99 commented 4 years ago

Classify with mood Create a dictionary where you give different emotion scores to different emotions and group them accordingly based on different level of spectrum. For eg, { happy: 1, okayish:,0.90,

joy;1.2, blue: -1; normal: 0, etc etc}

now set a range for i &

if(i >1 ){setcolor(exmple one)} if(i >0 && i< 1) {setcolor(example two)}

This would provide a better understanding of the mood of the song user wants to listen to and could be used to suggest songs which can also be grouped in certain ranges.