When I try this simple source code :
<body>
<audio controls src="http://webaudioapi.com/samples/audio-tag/chrono.mp3"></audio>
<script>
window.AudioContext = window.AudioContext || window.webkitAudioContext;
context = new AudioContext();
var mediaElement = document.querySelector('audio'),
sourceMediaTag = context.createMediaElementSource(mediaElement);
sourceMediaTag.connect(context.destination);
mediaElement.play();
</script>
</body>
The player starts but I haven't sound with Chrome 42 (it's ok with Chrome 41). I also tried with an audio gain between the source and the destination, but nothing change.
Someone knows what happens ?