SoundCloud

URL로 Audio Player Embed하기

// 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);
        }
);