Reputation: 1
I am interested to use an audio raw dataset provided by Spotify Web API in Python. I wonder if the audio sample follows any rules to define the 30sec provided by the preview_url
.
preview_url | string | A link to a 30 second preview (MP3 format) of the track. Can be
null
Is the 30sec of the track extracted from:
Upvotes: 0
Views: 706
Reputation: 317
Spotify analyses every track and then is able to tell where different parts of the song begin and end.
I suppose that what you hear in the 30s preview is a guess that Spotify makes of what the refrain/main part of the songs is.
Therefore you can't generally say which part is chosen because that is determined by an AI for each song respectively.
Upvotes: 0