mwdchang / songvis

Song attributes and lyrics visualizations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

songvis

A visualization of your team's playlist, leveraging Spotify's track attributes and other analytics.

alt text

Getting data

Requirements

We need the following to run the parsers and the web application

Input file

A CSV formatted file with 3-coumns, tracking the person, song/track id, and the lyrics. Note the lyrics are surrounded by speical pipe(|) character in order to mark start/end boundaries. See provided "sample.csv".

<name a>,<trackId>,|<lyrics>|
<name b>,<trackId>,|<lyrics>|
<name c>,<trackId>,|<lyrics>|
...
<name a>,<trackId>,|<lyrics>|

Track analysis

Track data are fetched via Spotify's API.

cd parsers

# Rename sample.env to .env and fill out the access credentials

npm install
node extracter.js <input.csv> > tracks.tsv

Lyrics analysis

Lyrical similarity and others. Using GenSim

cd parsers
pip3 install -r requirements.txt
python3 vectorize.py <input.csv> > lyrics.tsv

Running

Running the application. Place the fiels "tracks.tsv" and "lyrics.tsv" into the public folder.

npm install
npm run serve

The application will be available on http://localhost:8000, it will take a few seonds to load and process the data.

About

Song attributes and lyrics visualizations.


Languages

Language:JavaScript 61.9%Language:Vue 32.5%Language:Python 3.7%Language:HTML 1.8%Language:Shell 0.1%