What the numbers suggest: four Peel the Apple tracks
This post is an attempt to read what audio features suggest,
not about quality, but about roles inside a group.
Using tempo, valence, energy, and danceability,
I looked at how four Peel the Apple tracks function differently.
Related:
→ Listening to Peel the Apple as data
This post provides minimal examples of how track data and audio features
are collected and compared for music-as-data.
--
Getting track data (curl)
Search artist
> curl -s "https://api.reccobeats.com/v1/artist/search?searchText=Peel%20the%20Apple&page=0&size=10"
Get artist tracks
> curl -s "https://api.reccobeats.com/v1/artist/{ARTIST_ID}/track"
Get audio features for a track
> curl -s "https://api.reccobeats.com/v1/track/{TRACK_ID}/audio-features"
{ARTIST_ID} and {TRACK_ID} are obtained from the search results.