0

I'm not sure why my last question got deleted, but ill try to go into more depth this time.

I am looking for code to make a music player that features:

  • volume slider/adjuster
  • has a playlist queue of songs (so like if youre listening to track 1, right under it, there will be a menu that says track 2, track 3, etc and if you click on track 3, it'll change to the corresponding track)
  • has control butons (play, pause, stop, ff, rewind)

I can always have an individual music player for each of my 8 songs but I think it would be much easier to have one music player for all the songs. I dont know if this can be made in HTML/CSS (I'm new to coding), but it would be great; I just want to be able to get this to work.

Alexandre Khoury
  • 3,896
  • 5
  • 37
  • 58
user1594170
  • 27
  • 2
  • 6
  • 7
    Hi Anon, your question probably got deleted because StackOverflow is not a place to solicit other people to write code for you. It's more a site for fixing bugs in code you've already written. – Erty Seidohl Aug 16 '12 at 22:33
  • This question is way too broad. Often when a question gets deleted there is a good reason to. – PeeHaa Aug 16 '12 at 22:34
  • oh ok. I am just really frustrated because i've been trying to find multi-song players and i can't really find any. I could always do the way I mentioned above, but I thought that there has to be an easier way that looks nicer as well – user1594170 Aug 16 '12 at 22:35
  • to the person above, this one didn't get deleted....http://stackoverflow.com/questions/2872852/building-a-simple-mp3-music-player – user1594170 Aug 16 '12 at 22:36
  • When you ask a question you need to be more specific as to what you want (i.e. if you are looking for libraries to help you with that, having some specific issue with your code, looking for tutorials - although this one you should probably use Google for). Please read the FAQ to find out what makes [a good question](http://stackoverflow.com/faq#questions) and what kind of questions you [should avoid](http://stackoverflow.com/faq#dontask). – Bart Platak Aug 16 '12 at 22:36
  • 1
    @user1594170 That's also not a very good question. Maybe it was back then (2010)? I don't know. The fact that that question exists doesn't make your question a good fit for SO as per [faq](http://stackoverflow.com/faq). – PeeHaa Aug 16 '12 at 22:39

1 Answers1

9

You could try http://schillmania.com/projects/soundmanager2. It's an HTML5 audio player with a nice fallback to Flash (as option).

PeeHaa
  • 71,436
  • 58
  • 190
  • 262
Erty Seidohl
  • 4,487
  • 3
  • 33
  • 45
  • You can have the rep for it. I'm a nice guy :) – PeeHaa Aug 16 '12 at 22:35
  • I was just about to suggest the same thing :-p It's a good cross-browser sound player that uses Flash as a fallback for non-HTML5 compliant browsers. The examples should help get you started. – thirdender Aug 16 '12 at 22:35