soundcloud-badge

A SoundCloud 'now-playing' badge you can just drop into browserify demos

OTHER License

Downloads
33
Stars
31
Committers
2

soundcloud-badge experimental

A SoundCloud "now playing"-type thing that you can drop into browserify demos. Makes it easy to stream from SoundCloud and ensure you're giving the appropriate credit too.

Usage

require('soundcloud-badge')({
    client_id: 'your API client ID'
  , song: 'https://soundcloud.com/dylan_king/modern-housing'
  , dark: true
  , getFonts: true
}, function(err, src, data, div) {
  if (err) throw err

  // Play the song on
  // a modern browser
  var audio = new Audio
  audio.src = src
  audio.play()

  // Metadata related to the song
  // retrieved by the API.
  console.log(data)
})

Just call soundcloud-badge, these options should do these things:

  • client_id: your SoundCloud API client ID.
  • song: the SoundCloud URL for your song: using
    soundcloud-resolve
    you'll get the matching data for your song included.
  • dark: true for black text/icons, and false for white. Defaults to
    true.
  • getFonts: by default, the badge will pull in fonts from Google Fonts.
    Set this to false if you'd rather it not do that.
Package Rankings
Top 11.46% on Npmjs.org
Badges
Extracted from project README
experimental soundcloud-badge