Skip to content

Instantly share code, notes, and snippets.

@also
Created March 19, 2011 23:26
Show Gist options
  • Save also/877904 to your computer and use it in GitHub Desktop.
Save also/877904 to your computer and use it in GitHub Desktop.
Modernizr tests for the Web Audio API and Audio Data API
// Test for the Web Audio API <http://chromium.googlecode.com/svn/trunk/samples/audio/specification/specification.html>
Modernizr.addTest('webAudioApi', function () {
return !!(window.webkitAudioContext || window.AudioContext);
});
// Test for the Audio Data API <https://wiki.mozilla.org/Audio_Data_API>
Modernizr.addTest('audioDataApi', function () {
return !!new Audio().mozSetup;
});