Currently I'm using to power sounds in my web app. SoundManager uses Flash, which sometimes crashes, killing sounds. Is there a reliable plugin available in jQuery that powers sounds using HTML5 rather than with Flash?

My Settings:

soundManager.url = '/misc/soundmanager2/v20111220/';    // SoundManager fails if the SWF is loaded from the CDN
soundManager.debugMode = true;
soundManager.flashVersion = 9;
soundManager.useFlashBlock = false;
soundManager.useHTML5Audio = true;
link|improve this question

70% accept rate
feedback

3 Answers

up vote 5 down vote accepted

SoundManager can also play pure HTML5 sound.

SoundManager 2 gives you a single, powerful API that supports both new and old, using HTML5 audio where supported and optional Flash-based fallback where needed. Ideally when using SoundManager 2, audio "just works."

Flash is only (optionally) used as fallback. Or for some nifty stuff which isn't (very well) supported (yet) by all browsers. Like a spectrum analyzer etc.

To 'force' SoundManager2 to use HTML5 audio you can add the following parameter:

soundManager.preferFlash = false;

overrides useHTML5audio. if true and flash support present, will try to use flash for MP3/MP4 as needed since HTML5 audio support is still quirky in browsers.

From the official docs.

link|improve this answer
wow, that looks amazing. The visualization is crazy. – Khalid Abuhakmeh Jan 24 at 18:52
Thanks, I've been trying to use SoundManager with html5 set to true in Chrome. However it still loads the swf. – AnApprentice Jan 24 at 19:25
@AnApprentice what version are you using? – RepWhoringPeeHaa Jan 24 at 19:25
I'm using the latest version. IN debug mode I get the following error. Perhaps html5 doesn't like mp3? "-- SoundManager 2: HTML5 support tests (/^(probably|maybe)$/i): mp3: true (preferring flash), mp4: true (preferring flash), ogg: true, wav: true --" – AnApprentice Jan 24 at 19:27
v20111220 from their site: – AnApprentice Jan 24 at 19:27
show 5 more comments
feedback

Description

I suggest jPlayer.

jPlayer is the completely free and open source (GPL/MIT) media library written in JavaScript. A jQuery plugin, jPlayer allows you to rapidly weave cross platform audio and video into your web pages. jPlayer's comprehensive API allows you to create innovative media solutions while support and encouragement is provided by jPlayer's active and growing community.

Sample

$(document).ready(function(){
 $("#jquery_jplayer_1").jPlayer({
  ready: function () {
   $(this).jPlayer("setMedia", {
    m4a: "/media/mysound.mp4",
    oga: "/media/mysound.ogg"
   });
  },
  swfPath: "/js",
  supplied: "m4a, oga"
 });
});

More Information

link|improve this answer
i second this recommendation.. i've never had issues with the Flash fallback crashing in jPlayer.. – Lloyd Feb 1 at 12:07
feedback

Use the HTML5 Audio tag as shown in this link.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.