Есть Код (Text): function setupWebAudio() { // Get our <audio> element var audio = document.getElementById('music'); // Create a new audio context (that allows us to do all the Web Audio stuff) var audioContext = new webkitAudioContext(); // Create a new analyser analyser = audioContext.createAnalyser(); // Create a new audio source from the <audio> element var source = audioContext.createMediaElementSource(audio); // Connect up the output from the audio source to the input of the analyser source.connect(analyser); // Connect up the audio output of the analyser to the audioContext destination i.e. the speakers (The analyser takes the output of the <audio> element and swallows it. If we want to hear the sound of the <audio> element then we need to re-route the analyser's output to the speakers) analyser.connect(audioContext.destination); // Get the <audio> element started audio.play(); } на index.php Код (Text): <audio id="music" controls> <source src="ссылка на звук"> </audio> не работает крутилка громокости, не могу понять как активировать. Если выключить javascript то рабоатет. Подскажите как быть.