사용자 도구

사이트 도구


soundcloud

SoundCloud

URL로 Audio Player Embed하기

  • 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);
        }
);
soundcloud.txt · 마지막으로 수정됨: 2012/08/13 22:22 저자 kwon37xi