guaka / radio-meteor

ad-free internet radio player based on html5 and meteor - soma paradise fip ++
http://radio.guaka.org
MIT License
24 stars 14 forks source link

hide the audio slide #50

Open guaka opened 8 years ago

guaka commented 8 years ago

It's quite pointless for a stream (And what's the exact term for this thing?)

screen shot 2015-07-27 at 12 08 43

guaka commented 8 years ago

asked at http://stackoverflow.com/q/31819425/1245190

simison commented 8 years ago

You don't have much control over standard HTML5 audio element, but there are loads of small and bigger libraries that implement everything imaginable, for instance:

http://buzz.jaysalvat.com/ http://kolber.github.io/audiojs/ http://jplayer.org/ http://mediaelementjs.com/

You pretty much need just a volume control. How about just hiding controls for that audio element and implementing a separate <input type="range"> to control volume? (or some JS slider solution).

Personally I wouldn't even need that, I've got volume control on my keyboard anyway. :P

guaka commented 8 years ago

Ah! Good idea, I didn't really think of these.

I also thought volume control wasn't needed, but @chmac requested it #42 and I have actually used it a couple of times, since I implemented it.

simison commented 8 years ago

Yep, volume control is pretty much the only one you really need.