<html lang="en">
<head>
<title>Xhr2 and binary files + Web Audio API</title>
</head>
<body>
<p>Example of using XHR2 and <code>xhr.responseType = 'arraybuffer';</code> to download a binary sound file
and start playing it on user-click using the WebAudio API.</p>
<p>
<h2>Load file using Ajax / XR2 and the <code>arrayBuffer</code> response type</h2>
<button onclick="downloadSoundFile('https://mainline.i3s.unice.fr/mooc/LaSueur.mp3');">Download and play example song</button>
<button onclick="playSound()" disabled>Start</button>
<button onclick="stopSound()" disabled>Stop</button>
<script>
// WebAudio context
var context = new window.AudioContext();
var source = null;
var audioBuffer = null;
function stopSound() {
if (source) {
source.stop();
}
}
function playSound() {
// Build a source node for the audio graph
source = context.createBufferSource();
source.buffer = audioBuffer;
source.loop = false;
// connect to the speakers
source.connect(context.destination);
source.start(); // Play immediately.
}
function initSound(audioFile) {
// The audio file may be a mp3, we must decode it before playing it from memory
context.decodeAudioData(audioFile, function(buffer) {
console.log("Song decoded!");
// audioBuffer the decoded audio file we're going to work with
audioBuffer = buffer;
// Enable all buttons once the audio file is
// decoded
var buttons = document.querySelectorAll('button');
buttons[1].disabled = false; // play
buttons[2].disabled = false; // stop
console.log("Binary file has been loaded and decoded, use play / stop buttons!")
}, function(e) {
console.log('Error decoding file', e);
});
}
// Load a binary file from a URL as an ArrayBuffer.
function downloadSoundFile(url) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'arraybuffer'; // THIS IS NEW WITH HTML5!
xhr.onload = function(e) {
console.log("Song downloaded, decoding...");
initSound(this.response); // this.response is an ArrayBuffer.
};
xhr.onerror = function(e) {
console.log("error downloading file");
}
xhr.send();
console.log("Ajax request sent... wait until it downloads completely");
}
</script>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |