grapefruitjs / grapefruit

Outdated, I recommend you use photonstorm/phaser instead!
MIT License
106 stars 14 forks source link

Audio API Fallback #42

Closed englercj closed 11 years ago

englercj commented 11 years ago

Currently we are using HTML5Audio elements to play audio, unfortunately this has issues on mobile, and is not as performant all around.

We should try to use the real Web Audio API, but if it is not available fall back to the HTML5Audio.

Some audio libraries are:

englercj commented 11 years ago

Chose to rewrite the whole audio api in a Manager-Player model; based heavily on Howler.js

englercj commented 11 years ago

In progress on the new-audio branch.

englercj commented 11 years ago

This has landed