====== SoundCloud ====== * http://soundcloud.com/ : 사운드 공유 사이트. ===== URL로 Audio Player Embed하기 ===== * [[http://developers.soundcloud.com/docs/oembed|oEmbed API]] 사용 * oEmbed에서 **format을 js로** 지정하면 JSONP로 Player 데이터를 응답으로 준다. // jQuery있을 때 $.getJSON('http://soundcloud.com/oembed?callback=?', { format: 'js', url: 'http://soundcloud.com/dabini88/orch', auto_play: true, show_comments: false }, function (data) { $('#플레이어넣을위치').append(data.html); } );