Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>JWeb Audio simplest example</title>
</head>
<body>
  <audio id="player" src="https://mainline.i3s.unice.fr/mooc/guitarRiff1.mp3" 
    
  controls crossorigin="anonymous"></audio>
 
</body>
</html>
 
var ctx;
window.onload = function() {
  // the page is loaded
  ctx = new AudioContext();
  
  // the most simple source 
  var player = document.getElementById("player");
  
  player.onplay = (e) => {
    ctx.resume()
  }
    
  var source = ctx.createMediaElementSource(player);
  
  source.connect(ctx.destination);
};
    
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
micbuffapro
0viewers