Created
March 16, 2012 19:23
-
-
Save leemartin/2051991 to your computer and use it in GitHub Desktop.
$.wave64 Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>SoundCloud $.wave64 Example</title> | |
<!-- Include jQuery, SoundCloud JS SDK, and the $.wave64 Plugin --> | |
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script> | |
<script src='http://connect.soundcloud.com/sdk.js'></script> | |
<script src='http://wave64.it/jquery.wave64.js'></script> | |
<script type='text/javascript'> | |
$(document).ready(function() { | |
// Get the canvas & its context, width, and height. | |
canvas = $("#waveform")[0]; | |
context = canvas.getContext("2d"); | |
width = context.canvas.clientWidth; | |
height = context.canvas.clientHeight; | |
// Make sure the canvas is sized to the appropriate size. | |
canvas.setAttribute("width", width); | |
canvas.setAttribute("height", height); | |
// Initialize the SoundCloud Javascript SDK | |
SC.initialize({ | |
client_id: "YOUR_CLIENT_ID" | |
}); | |
// SC.get a track from SoundCloud. | |
SC.get("/tracks/33820987", function(track) { | |
// Pass the waveform url, height, width, RGB array, and callback to $wave64. | |
$.wave64(track.waveform_url, height, width, [255, 102, 0], function(data) { | |
// Finally, put the received colored image data onto the canvas. | |
context.putImageData(data, 0, 0); | |
}); | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<canvas id='waveform' style='width:600px;height:100px'></canvas> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment