because of apple I'm staying away from flash players for now...
I 'm lloking for a simple to use mp3 player that's customizable - for example :
read & display xml playlists
make the list of viewable songs what we choose - like 10 songs or 20 songs - without scroll bars...
I'm lookimg at:
http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5
http://www.wimpyplayer.com/products/wimpy_mp3.html
http://playlist.software.informer.com/download-playlist-embedded-websi te-media-player/
Any opinions are welcome
Here's what I'm doing:
HTML5.
Here is the code and it is really simple:
<audio controls="controls">
<source src="../path/filename.ogg" type="audio/ogg" />
<source src="../path/filename.mp3" type="audio/mpeg" />
Your browser does not support the audio element. <a href="../path/filename.mp3">Right-Click here</a> and choose Save file as… to download the .MP3 file</audio>
Works in all browsers. Works in all media players that support mpeg audio. But here's a word of warning:
Some browsers may not know that the ogg audio is there, so you may need to edit your .htacess file (on Apache) or your filetypes (on Microsoft IIS servers) to include it.
Here's the change to put into .htaccess. I don't use IIS:
AddType audio/ogg .oga
AddType video/ogg .ogv
AddType application/ogg .ogg
AddHandler application-ogg .ogg .ogv .oga
That will enable both ogg video and audio. Without these lines, Firefox may not play your file.
To make your audio files, please see this link.
Thanks Nancy,
I see lots of examples here...
http://www.pickleplayer.com/skins/
With editing - can I make long playlists - 10 or 20 songs at a time with scrolling?
AND BTW: If I wanted to make my own playlist ... in php - how can I make a scrollable list in php?
My solution makes the web browser itself into the player. You can see the result here.
This also is the idea behind the HTML5 <video> tag.
Cool!
I would want to build a php playlist - so is there a way to list some songs and then:
have these be vars
<source src="phpVARPATH1" type="audio/ogg" />
<source src="phpVARPATH1a" type="audio/mpeg" />
then somehow trigger the player to auto stop the last song and auto start the new song when choosing a new song?
Pickle player documentation describes how you can automatically generate playlists with PHP:
http://www.pickleplayer.com/docs/playlist.auto_playlist.php
Also see player options
http://www.pickleplayer.com/docs/options_player.php
The beauty of Pickle Player is that you only need to offer one file type (MP3) for each audio title; not 4 different file types as you do with HTML5 <audio>. This saves you both time and server space.
Nancy O.
I liked building players with a tutorial i found on cartoonsmart.com. He has two on there. Here are the links to both of them. They look great, and the tutorial is very easy to follow and indepth which allows you to go ahead and experiment with your own designs once you have learned how to do it.
http://www.cartoonsmart.com/XML_and_MP3_player.html
North America
Europe, Middle East and Africa
Asia Pacific