Extract the URI from a Spotify URL.
static String extractId(String url) { return url.split('/').last.split('?si=').first; }