Revisions : SoundManager2

A Javascript Sound API supporting MP3, MPEG4 audio and (experimental) video, providing reliable cross-browser/platform audio control. BSD licensed. Experimental HTML5 Audio() support is currently in development.

http://github.com/scottschiller/SoundManager2/commits/master

Les articles publiés sur le site

  • Merge branch 'mikedotalmond-master' into V2.97a.20130512+DEV

    9 novembre 2013, par scottschiller
    Merge branch 'mikedotalmond-master' into V2.97a.20130512+DEV
    
    Conflicts:
    	script/soundmanager2-jsmin.js
    	script/soundmanager2-nodebug-jsmin.js
    	script/soundmanager2.js
  • _docElement is always false

    8 octobre 2013, par jgabios
    _docElement is always false
    
    I looked for documentation on _docElement, but there is none.
    I guess it was meant doc.documentElement to get to the HTML root element, but otherwise going from body directly to the first DIV seems reasonable enough.
  • on FF 3.6 with no flash, onLoad event is not triggered

    8 octobre 2013, par jgabios
    on FF 3.6 with no flash, onLoad event is not triggered
    
    code to reproduce the error:
                        soundManager.createSound({
                            id: 'mysound',
                            url: '/sounds/mysound.ogg',
                            autoLoad: true,
                            autoPlay: true,
                            onload: function(){
                               alert('loaded');
                                    }
                        });
    adding s._a.load(); on line 2937, triggers the onload event.
  • Fixed mute in HTML5 mode

    26 septembre 2013, par Shraymonks
    Fixed mute in HTML5 mode
    
    Also removed trailing whitespace
  • correct event removal (cloned HTML5 nodes) - onended -> ended

    26 août 2013, par scottschiller
    correct event removal (cloned HTML5 nodes) - onended -> ended