Web Audio API: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(Created page with "== Abstract == The Web Audio API (webaudio) describes a high-level JavaScript API for processing and synthesizing audio in web applications. The primary paradigm is of an audio ...")
 
m (→‎Current Status in Firefox: typo+clarification)
Line 5: Line 5:
== Current Status in Firefox ==
== Current Status in Firefox ==


Firefox currently supports the incompatible, Mozilla-speicific [[Audio Data API]], but it is marked as "deprecated" in favor of the W3C standard. Work has not yet started on the new Web Audio API. The Bugzilla [https://bugzilla.mozilla.org/show_bug.cgi?id=779297 bug 779297] was created to track progress on this standard.
Firefox currently supports the incompatible, Mozilla-specific [[Audio Data API]], but it is marked as "deprecated" in favor of the W3C standard. Work has not yet started on the new Web Audio API. The Bugzilla [https://bugzilla.mozilla.org/show_bug.cgi?id=779297 bug 779297] was created to track progress on implementing this standard.


== Additional Resources ==
== Additional Resources ==

Revision as of 16:30, 21 August 2012

Abstract

The Web Audio API (webaudio) describes a high-level JavaScript API for processing and synthesizing audio in web applications. The primary paradigm is of an audio routing graph, where a number of AudioNode objects are connected together to define the overall audio rendering. The actual processing will primarily take place in the underlying implementation (typically optimized Assembly / C / C++ code), but direct JavaScript processing and synthesis is also supported

Current Status in Firefox

Firefox currently supports the incompatible, Mozilla-specific Audio Data API, but it is marked as "deprecated" in favor of the W3C standard. Work has not yet started on the new Web Audio API. The Bugzilla bug 779297 was created to track progress on implementing this standard.

Additional Resources