Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lightest hidden mp3 sound player?

I'd like to know if there is any cross browser light-weight invisible sound players that are controlled by JavaScript, but not using any frameworks like jQuery.

I'm not looking to use HTML5 at all. So maybe a solution that uses Flash.

Something that is not more than load() and play().

like image 608
CodeOverload Avatar asked Sep 09 '11 10:09

CodeOverload


2 Answers

I believe SoundManager 2 may fit your needs:

http://www.schillmania.com/projects/soundmanager2/

like image 142
Lars Blåsjö Avatar answered Oct 08 '22 22:10

Lars Blåsjö


If you don't care about old browser, i'd suggest looking at what you can do with the audio tag of HTML5.

For example to play see: http://dev.w3.org/html5/spec/Overview.html#playing-the-media-resource

like image 20
Py. Avatar answered Oct 08 '22 22:10

Py.