Skip to content
/ buzz Public
forked from jaysalvat/buzz

Buzz is a small but powerful Javascript library that allows you to easily take advantage of the new HTML5 audio element. It tries to degrade gracefully on non-modern browsers.

Notifications You must be signed in to change notification settings

Hamms/buzz

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AudioClip, a Javascript HTML5 Audio library

var clip = AudioClip({
	'src' : './test',
	'formats' : ['mp3', 'ogg'],
});

clip.addListener('ended', function(){
	console.log(arguments);
})

setTimeout(function(){
	clip.play();
}, 2000);

About

Buzz is a small but powerful Javascript library that allows you to easily take advantage of the new HTML5 audio element. It tries to degrade gracefully on non-modern browsers.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%