vote up 0 vote down star
1

I am searching for a plugin or code using which I'll be able to run background music when my website will open. This type of functionality normally found in flash website, where background, but I want to make it using jquery in my website,

Please provide any plugin or code link, which will help me in this issue.

Thanks

flag

78% accept rate
7  
Please could you give us a list of all the websites you are going to be adding music to, so we can avoid them forever. – nickf Nov 3 at 4:39
Hey cmon guys, he may not have a choice :) – Allen Nov 3 at 4:42
1  
@nickf, I am not a big fan of background-music on site, but my client wants it. Even I explained him, that it will slow down the site and also will disturb the user but he says no issues just implement it. So its totally a client requirement not mine. – Prashant Nov 3 at 5:15
2  
You might want to try steering him toward a user-initiated music option. This really is the kind of thing that drives users away -- fast. If this site's for a 13-year-old girl on MySpace who wants dancing pink ponies, maybe it doesn't matter. But this is deadly on a commercial site. Oh, and it's soooo 1995! Good luck! – Peter Rowell Nov 3 at 5:21
@Peter, I understand all the issues, but client doesn't. Most of the time, clients try to be over smart. So for now I must have to implement this option, but may be after using it he'll realize the problem better. – Prashant Nov 3 at 6:10

6 Answers

vote up 4 vote down check

I use the jplayer plugin. http://www.happyworm.com/jquery/jplayer/

It has methods you can call to run audio at any time and without a player.

link|flag
This is cool and works for me. I choose this because I'm already using JQuery library in ma website. :D Thanks – Prashant Nov 6 at 15:34
vote up 4 vote down

Heres a nice link

Playing and Controlling MP3 songs and FLV videos with javascript

link|flag
vote up 3 vote down

You might want to look into the HTML 5 <audio> tag, although if you want IE support you'll ultimately have to fall back to a plugin like Flash or Quicktime.

link|flag
vote up 3 vote down

This is a perfectly good and acceptable question.

If you site consists of more than one page - it's not Flash nor full Ajax (like Gmail) - you have to make sure the player stays on a frame that does not change so that your music does not stop when you click a link.

 ---------------------
|    site content     |
|                     |
|---------------------
|  invisible frame    |
 ---------------------

This will also mean that a problem can arise with searching bots that may point directly into a frame of your site - skipping the index and thus disabling music. If that is not the case you should be fine.

You can then use a sound library SoundManager, like @VoxPelli pointed out, to control your javascript. Do notice that the site @VoxPelli mentions is a great example of a site with music! However when you click on explore the music breaks as the user is directed to a new page. The only way to overcome this is with frames.

Hope it helps!

link|flag
+1 Interesting workaround for page browsing. – Kevin Peno Nov 3 at 18:11
vote up 0 vote down

The only cross-browser, OS-independent way you can do this horrible thing is to use an invisible flash applet that exposes an API you can control via Javascript. Sadly, I don't know how to make one and I can't find an invisible player anywhere so I guess my answer isn't very useful. Oh well.

link|flag
vote up 0 vote down

I think the way to go is the SoundManager library - I've used it for a similar purpose where a client demanded to have background music.

It's also used by sites like CitySounds.fm.

link|flag

Your Answer

Get an OpenID
or

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