Skip to content

Instantly share code, notes, and snippets.

@skounis
Created October 5, 2015 11:12
Show Gist options
  • Save skounis/3a1bf9b665e46af3ac86 to your computer and use it in GitHub Desktop.
Save skounis/3a1bf9b665e46af3ac86 to your computer and use it in GitHub Desktop.
Shoutcast Ionic Tutorial - getStreamInfo
function getStreamInfo() {
return $http.get(metadataUrl).then(function(response) {
var title = parseShoutcastResponse(response.data);
if (!title) {
return {};
}
return getCover(title).then(function(coverUrl) {
return {
title: title,
coverUrl: coverUrl
};
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment