Is there a way to use the Streampad API to play MP3 tracks from another URL that is not a Tumblr site? For example, is it possible to put the Streampad player on htttp://playerpage.com that plays MP3 links from http://mp3links.com when mp3links.com is not a site hosted on Tumblr? I know it's possible if mp3links.com were a Tumblr site, but what if it's just a page with multiple MP3 links?

link|improve this question
feedback

1 Answer

Yes you can add songs by using SPAPI.add()

SPAPI.add(songTitle:String, artist:String, album:String, enclosure:String, sourceUrl:String, imageUrl:String, share:Boolean):Void

a real life application will be like this, say you're putting this in blogger, that you want to pull out some .mp3 urls from "link"s in your blog feed "entry"s, here's a jQuery way for the simplicity's sake

 $.getJSON('/feeds/posts/default?alt=json', function(data) {
    $.each(data.feed.entry, function(key, val) {
      if (val.link != null && (val.link[0].href).indexOf(".mp3")!= -1)
         SPAPI.add(val.link[0].title,null,null,val.link[0].href,val.link[3].href ,null,true);
    });

});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.