Fork me on GitHub

Reverb.js

Reverb.js is a Web Audio API extension for creating reverb nodes and an accompanying impulse-response reverb library. You can quickly load any of the provided impulse responses or use your own.

The Web Audio API does not specifically include a reverb node type. Instead, it has something better: a convolution node! Convolution is a mathematical transformation that combines an impulse response and a dry signal to yield a wet signal. Reverberation is easy to model with impulse responses since most reverberation has a linear response (contains little distortion). Impulse responses for simulating reverberation are often generated by recording a percussive noise or frequency sweep in a space. Does this all sound convoluted? Well, technically, it is!

This project is dedicated to the public domain via the CC0 license. However, most of the impulse responses are copyright and come with their own licenses (many are Creative Commons), so if you end up redistributing these, please make sure you follow the applicable licenses mentioned in the attributions.

The following examples demonstrate different reverbs using a scale played on an oscillator-based synth or the Bach C Minor Prelude from WTC I played on piano by Kimiko Ishizaka. For more details about using Reverb.js, go see the project.

AbernyteGrainSilo (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/abernyte-grain-silo

"A concrete structure standing approximately 20m in height by by 5m in diameter the silo proved to have a fantastic reverberation quality close to 6 seconds from initial impulse to the sound dying away. Opportunist recording of balloon burst IR captured using an Alesis Palmtrack portbale recorder. Having passed this disused grain silo on the way to Errol brickworks I made a mental note to stop and explore on the way home. The silo probably a structure from the 60's or 70's is a typical cylindrical building but with a flat roof."

License for this content: Attribution Non-commercial Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/AbernyteGrainSilo.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

ArbroathAbbeySacristy (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/arbroath-abbey-sacristy

"Arbroath Abbey is a testament to the integration of piety and politics by Scotland’s medieval monarchs. It was founded in 1178 by King William I ‘the Lion’, ostensibly as a memorial to his childhood friend Thomas Becket, Archbishop of Canterbury, who was murdered in 1170. It also helped him to expand his authority in the north-east of Scotland, and to demonstrate his right to rule. William invited the Tironensian monks from Kelso Abbey, near the English border, to establish the monastery. When he died in 1214, his body was buried before the high altar. Traditionally, Scottish monarchs had been laid to rest at the royal mausoleum at Dunfermline Abbey. The legacy of William’s efforts is an outstandingly beautiful building. It has suffered much damage, but remains an important symbol and landmark."
http://www.historic-scotland.gov.uk/propertyresults/propertyabout.htm?PropID=PL_013&PropName=Arbroath%20Abbey

License for this content: Attribution Non-commercial Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/ArbroathAbbeySacristy.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

Basement (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/basement

"My first attempt at creating an impulse. Basement is a wood shop, and has a nice sound. 9 positions. Shure SM57 and speaker were compensated for manually, so results may not be perfectly accurate, but it sounds all right to my ears. This is ORTF."

License for this content: Public Domain Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/Basement.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

DomesticLivingRoom (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/domestic-living-room

"Domestic living room, recorded in front of speaker, at the back of the room, and in the adjacent room. Cutoff at 16kHz due to hardware constraints."

License for this content: Public Domain Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/DomesticLivingRoom.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

ElvedenHallLordsCloakroom (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/elveden-hall-suffolk-england

"Various rooms of Elveden Hall, captured in 2001 on Sony D10 DAT using pair of AKG 451s in XY, and starter's pistol. The Hall, formerly the private residence of the Maharajah Duleep Singh and then the first Lord Iveagh, had at the time of these recordings not been lived in for decades. Elveden Hall, which was enlarged to its present size by Lord Iveagh at the end of the 19th century, consists of three floors in two enormous wings flanking a dramatic Marble Hall (which has featured as a location in films such as Eyes Wide Shut and Tomb Raider). The IRs offered here are a small subset of dozens made throughout the entire building, attempting to document every accessible room and closet, as part of research in a collaboration between artists Matt Rogalsky and Chlöe Steele entitled PERFECT IMPERFECT."

License for this content: Attribution Non-commercial No Derivatives Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/ElvedenHallLordsCloakroom.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

ElvedenHallMarbleHall (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/elveden-hall-suffolk-england

"Various rooms of Elveden Hall, captured in 2001 on Sony D10 DAT using pair of AKG 451s in XY, and starter's pistol. The Hall, formerly the private residence of the Maharajah Duleep Singh and then the first Lord Iveagh, had at the time of these recordings not been lived in for decades. Elveden Hall, which was enlarged to its present size by Lord Iveagh at the end of the 19th century, consists of three floors in two enormous wings flanking a dramatic Marble Hall (which has featured as a location in films such as Eyes Wide Shut and Tomb Raider). The IRs offered here are a small subset of dozens made throughout the entire building, attempting to document every accessible room and closet, as part of research in a collaboration between artists Matt Rogalsky and Chlöe Steele entitled PERFECT IMPERFECT."

License for this content: Attribution Non-commercial No Derivatives Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/ElvedenHallMarbleHall.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

ElvedenHallSmokingRoom (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/elveden-hall-suffolk-england

"Various rooms of Elveden Hall, captured in 2001 on Sony D10 DAT using pair of AKG 451s in XY, and starter's pistol. The Hall, formerly the private residence of the Maharajah Duleep Singh and then the first Lord Iveagh, had at the time of these recordings not been lived in for decades. Elveden Hall, which was enlarged to its present size by Lord Iveagh at the end of the 19th century, consists of three floors in two enormous wings flanking a dramatic Marble Hall (which has featured as a location in films such as Eyes Wide Shut and Tomb Raider). The IRs offered here are a small subset of dozens made throughout the entire building, attempting to document every accessible room and closet, as part of research in a collaboration between artists Matt Rogalsky and Chlöe Steele entitled PERFECT IMPERFECT."

License for this content: Attribution Non-commercial No Derivatives Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/ElvedenHallSmokingRoom.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

ElvedenHallVisitorsCloakroom (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/elveden-hall-suffolk-england

"Various rooms of Elveden Hall, captured in 2001 on Sony D10 DAT using pair of AKG 451s in XY, and starter's pistol. The Hall, formerly the private residence of the Maharajah Duleep Singh and then the first Lord Iveagh, had at the time of these recordings not been lived in for decades. Elveden Hall, which was enlarged to its present size by Lord Iveagh at the end of the 19th century, consists of three floors in two enormous wings flanking a dramatic Marble Hall (which has featured as a location in films such as Eyes Wide Shut and Tomb Raider). The IRs offered here are a small subset of dozens made throughout the entire building, attempting to document every accessible room and closet, as part of research in a collaboration between artists Matt Rogalsky and Chlöe Steele entitled PERFECT IMPERFECT."

License for this content: Attribution Non-commercial No Derivatives Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/ElvedenHallVisitorsCloakroom.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

EmptyApartmentBedroom (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/empty-apartment-bedroom

"An Impulse Response I recorded in the bedroom of an empty apartment close to my house. Recorded with an H4n, source was a handclap. Recorded at 96kHz/24-bit."

License for this content: Public Domain Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/EmptyApartmentBedroom.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

ErrolBrickworksKiln (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/errol-brickworks-errol-perth-and-kinross

"Errol Brickworks situated on the outskirts of Errol Village, Perth and Kinross is now a Mackies potato crisps factory but two kilns remain. The works dates to 1870 and remained active until the mid nineties. The structure of the kilns looked like large brick built yurts, with the external walls below the dome strapped in metal casing. The internal dimensions are 6.5m to the height of the dome form the centre of the floor by 5.8m in diameter. Mackies staff allowed access to one of the kilns on the day of our visit. Two techniques were employed, a sine sweep recording using Apple's Impulse Response Utility software and a balloon pop recorded using a portable Alesis Palmtrack. Initially the reverberation characteristic appeared to be unremarkable having very little decay time, however upon wondering around inside the kiln a pronounced pre-delay was evident. Whilst standing close to the opposite wall from the entrance noise made by Paul near the entrance appeared to reverberate around the outside wall creating an effect similar to the whispering gallery found in the dome of St Paul's Cathedral in London, all be it more subtle."

License for this content: Attribution Non-commercial Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/ErrolBrickworksKiln.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

FalklandPalaceRoyalTennisCourt (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/falkland-palace-royal-tennis-court

"These impulse responses were recorded in a tennis court with no roof. The court is designed for Real Tennis, or Caitch and can be found at Falkland Palace in Fife. It was originally built for King James V of Scotland and construction began in 1539."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/FalklandPalaceRoyalTennisCourt.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

HamiltonMausoleum (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/hamilton-mausoleum

"Construction on the Hamilton Mausoleum, Hamilton, Scotland, built for the 10th Duke of Hamilton, started in 1842 and was completed in 1858. It is constructed of marble and sandstone and is surmounted by a dome 36m in height, with two main spaces, a crypt in the lower section, and a chapel that was supposed to be used for worship. However the construction materials, size, shape and dimensions of the latter result in a complex, dense and very long reverberation, and hence render it almost useless for speech presentation. In fact the Guinness Book of World Records claims that the Hamilton Mausoleum has the longest “echo” of any building, recorded on 27 May 1994 as taking 15s for the sound of the reverberation caused by slamming one of the main doors to die away to nothing. The space is now often used by recording musicians for its unique acoustic properties. The interior of Hamilton Mausoleum is approximately octagonal in plan, with a diameter of 18 m. Each side of the octagon is either a plane wall or a further semicircular alcove. The results presented below having the microphone assembly in the centre and the source placed to one side, just outside one of the alcoves, giving a source-receiver distance of 4.8 m."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/HamiltonMausoleum.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

InsidePiano (synth) (piano) (stop)

Attribution

Recorded by William Andrew Burnson (2013)
An impulse response recorded from just outside a Yamaha baby grand piano with the damper pedal down.

Attribution Share Alike Creative Commons
http://creativecommons.org/licenses/by-sa/3.0/

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/InsidePiano.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

KinoullAisle (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/kinoull-aisle-perth

"IR field recording trip Kinoull Aisle, Perth. A 16th century chapel on the site of one of the oldest known churches in Perth. The Aisle houses a monument to the Earl of Kinoull, Lord Chancellor Hay, an impressive stone sculpture nearly 6 metres in height. Thanks to the monument and the recessed windows and door the chapel has a smooth linear reverberation characteristic approximately 2 seconds long."

License for this content: Attribution Non-commercial Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/KinoullAisle.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

LadyChapelStAlbansCathedral (synth) (piano) (stop)

Attribution

OpenAirLib

http://www.openairlib.net/auralizationdb/content/lady-chapel-st-albans-cathedral

"This data consists of 2 sets of impulse responses measured in the Lady Chapel at St Albans Cathedral. Measurements were taken at two different source and receiver positions, A and B. The positions of the sources and receivers for the two configurations, A and B, can be are described in the attached diagram. Each set consists of a 4 channel B-format response, a 2-channel ORTF stereo response, a 2-channel binaural stereo response and a 5-channel discrete microphone response (5.0) based on the Williams MMA microphone technique. Construction of the cathedral was started by the Normans in 1077 and hundreds of years of construction have resulted in a mixture of different architectural styles. The Lady Chapel is an example of architecture from the Decorated Gothic Period and was completed in 1327."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/LadyChapelStAlbansCathedral.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

MaesHowe (synth) (piano) (stop)

Attribution

http://www.openairlib.net/auralizationdb/content/maes-howe

"Maes-Howe, Orkney, is one of the finest chambered cairns in Europe, and is dated to 3000BC. Prior work in the acoustics of ancient sites explores how the resonances exhibited therein might have affected regular human ritual and interaction with the space. It has been hypothesized that as these resonances are within the lower male vocal range, they may have been used in ritual to accentuate aspects of the voice. Unlike many similar ancient structures that have been studied to date, Maes Howe lends itself to the presence of strong modal frequencies. It is almost cubic in shape, of dimension 4.6m, with walls made from large, flat slabs of stone, resulting in smooth reflecting surfaces rather than more commonly found irregular placement of smaller stones."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/MaesHowe.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

MidiverbMark2Preset29 (synth) (piano) (stop)

Attribution

Recorded by William Andrew Burnson (2011)
An impulse response recorded from preset 29 on an Alesis Midiverb II.

Attribution Share Alike Creative Commons
http://creativecommons.org/licenses/by-sa/3.0/

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/MidiverbMark2Preset29.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

PerthCityHallBalcony (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/perth-city-hall

"Perth City Hall is a prominently-sited civic building beside the A-listed St John’s Kirk, and within Perth’s former market place. It was listed category B on 26 August 1977 and is within the Perth Central Conservation Area. It has been redundant since 2005. The memorial stone was laid by Lord Provost Cuthbert in 1909 and the design exhibited at the Royal Scottish Academy in 1912. The architects, appointed after competition, were H. E. Clifford and Thomas Lunan. Clifford was one of a generation of Glasgow-based architects influenced by the architecture of the Ecole des Beaux-Arts in Paris, and this is reflected in the building’s architectural style. It has coupled giant Ionic columns and sculptural enrichments, while the interior has a galleried large main hall and a correspondingly classical character. (Historic Scotland)
"

License for this content: Attribution Non-commercial Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/PerthCityHallBalcony.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

PurnodesRailroadTunnel (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/railroad-tunnel-purnodes-tunnel

"IR collected in a 80 meters railway tunnel. 48K-32bit-stereo"

License for this content: Public Domain Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/PurnodesRailroadTunnel.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

R1NuclearReactorHall (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/r1-nuclear-reactor-hall

"Built in 1954, the R1 Nuclear Reactor has not been used since 1970. However, the reactor hall still remains. It is found 25 metres underneath the KTH Royal Institute of Technology, near to Stolkholm."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/R1NuclearReactorHall.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

SaintLawrenceChurchMolenbeekWersbeekBelgium (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/saint-lawrence-church-molenbeek-wersbeek-belgium

"This impulse response was made with a 4 sec sinesweep playing in the middle of the altar of the church with 2 spaced (70cm) omni DPA 4060 microphones in front of the altar. The recording was done in 96kHz 24bit."

License for this content: Public Domain Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/SaintLawrenceChurchMolenbeekWersbeekBelgium.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

SpokaneWomansClub (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/spokane-womans-club

"The Spokane Woman's Club hall is a highly reflective space with bare walls, a hardwood floor and a curved ceiling. The space is roughly 84'x42' with an average ceiling height of about 16'. The sweep was recorded before an event and deconvolved with Voxengo's Deconvolver. The IR turned out very well. It allowed for seamless transition between the room sound recorded during a number of events, and the IR reverb used during post-production."

License for this content: Attribution Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/SpokaneWomansClub.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

SportsCentreUniversityOfYork (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/sports-centre-university-york

"These measurements were made in a large sports hall in the sports centre at York university. The reverberation tail is very long."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/SportsCentreUniversityOfYork.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StairwayUniversityOfYork (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-marys-abbey-reconstruction

"The abbey of St. Mary was mostly destroyed during the dissolution under the rule of Henry VIII and now only ruins remain. These ruins can be found in the Museum Gardens adjacent to the river Ouse in York city. Virtual models of this now derelict church were built using measurements taken from scaled plans and other sources of architectural evidence. Impulse responses were then created using ray-based room acoustic modelling software. Three different models of the church were used with increasing levels of detail in their geometric structure, referred to as Phase 1, Phase 2 and Phase 3. The work was carried out as part of a Bachelor of Engineering project at the Audiolab in the University of York."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StairwayUniversityOfYork.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StAndrewsChurch (synth) (piano) (stop)

Attribution

By OpenAirLib (2004)
http://www.openairlib.net/auralizationdb/content/st-andrews-church

"St Andrew’s Church, built in the 14th Century, has one of the finest examples of in-situ acoustic jars (vases or pots) in the UK. These jars were common to European church construction in the late Middle Ages and are said to be based on the ideas of Roman architect Vitruvius, who discussed the use of resonant jars in the design of amphitheatres to provide clarity of voice presentation. They are designed as Helmholtz resonators, giving narrow band energy absorption according to the natural frequency of the jar although there is little conclusive acoustical evidence to show that they behave as designed. Studies suggest that the success or otherwise of these devices depends on the number of jars used and their placement, as well as the characteristics of the building and jars themselves. In anechoic and reverberant chambers the absorption effects of such jars are weak and highly selective, although can be significant below 200Hz. Together with their additional diffusive effects, the jars potentially help to eliminate strong normal modes and hence can be made effective with careful tuning and positioning. St Andrew’s Church has 11 jars placed high in the chancel, 6 in the north wall and 5 in the south, arranged at irregular intervals such that there are no directly opposite pairs."

Attribution Share Alike Creative Commons
http://creativecommons.org/licenses/by-sa/3.0/

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StAndrewsChurch.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StMarysAbbeyReconstructionPhase1 (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-marys-abbey-reconstruction

"The abbey of St. Mary was mostly destroyed during the dissolution under the rule of Henry VIII and now only ruins remain. These ruins can be found in the Museum Gardens adjacent to the river Ouse in York city. Virtual models of this now derelict church were built using measurements taken from scaled plans and other sources of architectural evidence. Impulse responses were then created using ray-based room acoustic modelling software. Three different models of the church were used with increasing levels of detail in their geometric structure, referred to as Phase 1, Phase 2 and Phase 3. The work was carried out as part of a Bachelor of Engineering project at the Audiolab in the University of York."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StMarysAbbeyReconstructionPhase1.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StMarysAbbeyReconstructionPhase2 (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-marys-abbey-reconstruction

"The abbey of St. Mary was mostly destroyed during the dissolution under the rule of Henry VIII and now only ruins remain. These ruins can be found in the Museum Gardens adjacent to the river Ouse in York city. Virtual models of this now derelict church were built using measurements taken from scaled plans and other sources of architectural evidence. Impulse responses were then created using ray-based room acoustic modelling software. Three different models of the church were used with increasing levels of detail in their geometric structure, referred to as Phase 1, Phase 2 and Phase 3. The work was carried out as part of a Bachelor of Engineering project at the Audiolab in the University of York."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StMarysAbbeyReconstructionPhase2.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StMarysAbbeyReconstructionPhase3 (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-marys-abbey-reconstruction

"The abbey of St. Mary was mostly destroyed during the dissolution under the rule of Henry VIII and now only ruins remain. These ruins can be found in the Museum Gardens adjacent to the river Ouse in York city. Virtual models of this now derelict church were built using measurements taken from scaled plans and other sources of architectural evidence. Impulse responses were then created using ray-based room acoustic modelling software. Three different models of the church were used with increasing levels of detail in their geometric structure, referred to as Phase 1, Phase 2 and Phase 3. The work was carried out as part of a Bachelor of Engineering project at the Audiolab in the University of York."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StMarysAbbeyReconstructionPhase3.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StPatricksChurchPatringtonPosition1 (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-patricks-church-patrington

"St Patrick's Church in Patrington dates back to the medieval era and expresses the decorated design of English Gothic Churches of the early 14th century. It has a cruciform plan, with an external length of about 46 meters, a breadth of 27 meters and a height of 57.5 meters up to the very top of the central tower. These impulse responses were measured in the real world. 3 sets of measurements were recorded for 3 different source-reciever configurations (S1-R1, S2-R2 and S3-R3). The positions of these sources and receivers are described in the attached diagram."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StPatricksChurchPatringtonPosition1.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StPatricksChurchPatringtonPosition2 (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-patricks-church-patrington

"St Patrick's Church in Patrington dates back to the medieval era and expresses the decorated design of English Gothic Churches of the early 14th century. It has a cruciform plan, with an external length of about 46 meters, a breadth of 27 meters and a height of 57.5 meters up to the very top of the central tower. These impulse responses were measured in the real world. 3 sets of measurements were recorded for 3 different source-reciever configurations (S1-R1, S2-R2 and S3-R3). The positions of these sources and receivers are described in the attached diagram."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StPatricksChurchPatringtonPosition2.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

StPatricksChurchPatringtonPosition3 (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/st-patricks-church-patrington

"St Patrick's Church in Patrington dates back to the medieval era and expresses the decorated design of English Gothic Churches of the early 14th century. It has a cruciform plan, with an external length of about 46 meters, a breadth of 27 meters and a height of 57.5 meters up to the very top of the central tower. These impulse responses were measured in the real world. 3 sets of measurements were recorded for 3 different source-reciever configurations (S1-R1, S2-R2 and S3-R3). The positions of these sources and receivers are described in the attached diagram."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/StPatricksChurchPatringtonPosition3.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

TerrysFactoryWarehouse (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/terrys-factory-warehouse

"These Impulse Responses were measured in a large empty warehouse inside the Terry's chocolate and confectory factory in York. The factory was closed in 2005 and the site is planned for redevelopment."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/TerrysFactoryWarehouse.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

TerrysTypingRoom (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/terrys-typing-room

"These Impulse Responses were measured in the partitioned typing room inside the Terry's chocolate and confectionery factory in York. The factory was closed in 2005 and the site is planned for redevelopment."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/TerrysTypingRoom.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

TyndallBruceMonument (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/tyndall-bruce-monument

"This monument was created for Onesipherous Tyndall Bruce in Falkland."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/TyndallBruceMonument.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

UndergroundCarPark (synth) (piano) (stop)

Attribution

By OpenAirLib (2014)
http://www.openairlib.net/auralizationdb/content/underground-car-park

"First Impulse Response recording in an underground car park. Has a slightly nice resonance in it from the metal pipes on the ceiling."

Attribution Share Alike Creative Commons
http://creativecommons.org/licenses/by-sa/3.0/

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/UndergroundCarPark.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>

YorkMinster (synth) (piano) (stop)

Attribution

By OpenAirLib

http://www.openairlib.net/auralizationdb/content/york-minster

"York Minster is the largest medieval gothic cathedral in the UK and one of the finest in Europe, built between the 12th and 15th centuries on the foundations of the previous Norman church that was in turn constructed on the foundations of the original Roman fortress. It is approximately 160m long, 76m wide and 27m high to the vaulted ceiling, constructed predominantly of stone with extensive, large panels of stained glass windows. Its beautiful acoustic and setting make it a sought after and highly popular music performance venue."

License for this content: Attribution Share Alike Creative Commons license

Usage

<script src="http://reverbjs.org/reverb.js"></script>
<script>
// 1) Setup your audio context (once) and extend with Reverb.js.
var audioContext = new (window.AudioContext || window.webkitAudioContext)();
reverbjs.extend(audioContext);

// 2) Load the impulse response; upon load, connect it to the audio output.
var reverbUrl = "http://reverbjs.org/Library/YorkMinster.m4a";
var reverbNode = audioContext.createReverbFromUrl(reverbUrl, function() {
  reverbNode.connect(audioContext.destination);
});

// 3) Load a test sound; upon load, connect it to the reverb node.
var sourceUrl = "http://reverbjs.org/Library/SampleBachCMinorPrelude.m4a";
var sourceNode = audioContext.createSourceFromUrl(sourceUrl, function() {
  sourceNode.connect(reverbNode);
});
</script>
<a href="javascript:sourceNode.start()">Test</a>