How do I check if the playing song is (not) in English?

142 Views Asked by At

Is it possible to get the language of the currently playing song in spotify?

models.player.addEventListener('change', function(data)
{
    var track = data.track.name, artist = data.track.artists[0].name;
    var language = "?????";
});
0

There are 0 best solutions below