2014-10-22 22:49:42 +00:00
|
|
|
<!DOCTYPE html>
|
2014-10-22 21:58:03 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2014-10-22 22:49:42 +00:00
|
|
|
<meta charset="utf-8">
|
2014-10-22 21:58:03 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
|
|
|
|
|
|
<script type="text/javascript" src="./deps/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript" src="./deps/jquery-ui.js"></script>
|
|
|
|
<script type="text/javascript" src="./deps/jquery.ui.touch-punch.js"></script>
|
|
|
|
<script type="text/javascript" src="../build/Tone.js"></script>
|
|
|
|
<script type="text/javascript" src="./Widgets.js"></script>
|
|
|
|
<script type="text/javascript" src="./ExampleList.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="./style/widgets.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="./style/jquery-ui.css">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="Container">
|
|
|
|
<div id="Explanation">
|
|
|
|
Convolver
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
Press and hold to hear a 10ms grain of audio.
|
|
|
|
</div>
|
|
|
|
<div id="Content">
|
|
|
|
<div id="Loading">Loading...</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
/* globals Tone, GUI */
|
|
|
|
|
|
|
|
var player = new Tone.Player("./audio/casio/A1.mp3", function(){
|
|
|
|
$("#Loading").remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
player.loop = true;
|
|
|
|
// player.loopStart = 0.1;
|
|
|
|
// player.loopEnd = 0.11;
|
|
|
|
// player.toMaster();
|
|
|
|
|
|
|
|
var convolver = new Tone.Convolver({
|
|
|
|
url : "./audio/IRs/berlin_tunnel_ir.wav",
|
|
|
|
onload : function(buffer){
|
|
|
|
console.log('loaded buffer!');
|
|
|
|
},
|
|
|
|
wetDry: 1 // min: 0 max: +1
|
|
|
|
// bypass: false
|
|
|
|
});
|
|
|
|
|
|
|
|
//Effects sends and returns
|
|
|
|
// player.toMaster();
|
|
|
|
player.connect(convolver);
|
|
|
|
convolver.toMaster();
|
|
|
|
|
|
|
|
// GUI //
|
|
|
|
|
|
|
|
new GUI.TopBar(Tone);
|
|
|
|
var container = $("#Content");
|
|
|
|
|
|
|
|
// Momentary play
|
|
|
|
new GUI.Momentary(container, function(on){
|
|
|
|
if (on){
|
|
|
|
player.start();
|
|
|
|
} else {
|
|
|
|
player.stop();
|
|
|
|
}
|
|
|
|
}, "Start", "Stop");
|
|
|
|
|
|
|
|
// Effect bypass checkbox
|
|
|
|
new GUI.Checkbox(container, function(on){
|
|
|
|
if (on){
|
|
|
|
convolver.setBypass();
|
|
|
|
} else {
|
|
|
|
convolver.setWet(1);
|
|
|
|
}
|
|
|
|
}, "Effect bypassOff", "Effect bypassOn");
|
|
|
|
|
|
|
|
// dryWet slider
|
|
|
|
|
|
|
|
var wetnessSlider = new GUI.Slider(container, function(val){
|
|
|
|
convolver.setWet(val, 0);
|
|
|
|
return val*100;
|
|
|
|
}, 1, "wetness", "%");
|
|
|
|
wetnessSlider.render(1);
|
|
|
|
|
|
|
|
// multi choice dropdown
|
|
|
|
var impulses = new GUI.DropDown(container, ["Berlin tunnel"], function(val){
|
|
|
|
//do something with impulse val string here
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style type="text/css">
|
|
|
|
#Content {
|
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.Momentary, .slider, .Value, {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</body>
|
|
|
|
</html>
|