Jump to content
xisto Community
Sign in to follow this  
DjLuki

Mp3 Player For A Webpage script?

Recommended Posts

anyone know where you can get a mp3 player to put on the site? where you can upload your own music and choose a song to play it? it can be any language, so if you know any, giev me the link.

Notice from BuffaloHELP:
Made topic descriptive.
Edited by BuffaloHELP (see edit history)

Share this post


Link to post
Share on other sites

Hey dude,

 

basically you might want to try this ..

http://forums.xisto.com/no_longer_exists/

They are midi player scripts that you can integrate onto your webpages. However, you have to find your own midi files on the internet on add on to it's playlist. Best of all, the scripts are free to use.

 

Look into this if you want it to play MP3 instead...

http://musicplayer.sourceforge.net/

You will need some knowledge on ActionScript 2 for loading the playlist. The player is made with flash.

 

Otherwise you might like to try PodCasting..

Here are the players that I've found..

http://juicereceiver.sourceforge.net/index.php

https://amarok.kde.org/

You can find more information about PodCasting here...

https://en.wikipedia.org/wiki/Podcasting

 

This site contains other sources that you might want to look into..

http://forums.xisto.com/no_longer_exists/

Share this post


Link to post
Share on other sites

Just thought I'd add another mp3 player you could try out for your site. Check outFlam Player. It's also a Flash-based mp3 player and it's free to use as well. There's also FLAM Express and FLAMcast if you want to explore a little further.

Share this post


Link to post
Share on other sites

well i have a similar question here....but mine is, how can i play streaming mp3s from my computer. Like a radio station for my website. I've been around and i kno lots of places make u pay for that technology but does neone kno how to create it for free? Cuz i think that be an awesome way to get my visitors to stay, and add to help jazz up my site.

Share this post


Link to post
Share on other sites

well,if you need only a mp3 play located in your site...
these code can work for that:

<embed src="music.mp3" autostart="true" loop="true" ></embed>

or

<bgsound src=.../music.mp3 loop=-1 >

there are some parameters you can set by your self

     STARTTIIME="min:second"  ENDTIME="min:second"    VOLUMEE="0-100"   WIDTH and HIGH   ALIGN="TOP / BOTTOM / CENTER / BASELINE / LEFT /RIGHT / TEXTTOP / MIDDLE / ABSMIDDLE /ABSBOTTOM"    CONTROLS="CONSOLE / SMALLCONSOLE /PLAYBUTTON / PAUSEBUTTON / STOPBUTTON /VOLUMELEVER" 

but if you need more,like a music list...a means show blew(you can modify that with yourself style)

<script LANGUAGE="JavaScript">song = new Array(10);title = new Array(10);song[0] ='1.mp3'song[1] ='2.mp3'song[2] ='3.mp3'song[3] ='4.mp3'song[4] ='5.mp3'song[5] ='6.mp3'song[6] ='7.mp3'song[7] ='8.mp3'song[8] ='.9.mp3'song[9] = '10.mp3'song[10] = '11.mp3'title[0] = 'song name 1'title[1] = 'song name 2'title[2] = 'song name 3'title[3] = 'song name 4'title[4] = 'song name 5'title[5] = 'song name 6'title[6] = "song name 7"title[7] = 'song name 8'title[8] = 'song name 9'title[9] = "song name 10"title[10] = 'song name 11'index = Math.floor(Math.random() * song.length);document.write("<DL>\n");document.write("<EMBED SRC="+song[index]+" width=200 height=200 autostart=true loop=infinite BGCOLOR='#000000'");document.write(' TEXT="#FFFFFF">');document.write("<BR>");document.write("you listening to: ");document.write("<font size=4 color=red>");document.write(title[index]);document.write("</font>")document.write("</DL>\n");</SCRIPT>

hope those codes can help you :P
good luck

Share this post


Link to post
Share on other sites

yeah I also needed this, but then i made a flash site out of a template and it had an mp3 player built-in so now i don't need it anymore...But i think it is a good way to spice up your page, just b careful that your mp3s won't be too big as loading-time is going to be veeery big!greetz

Share this post


Link to post
Share on other sites

<script LANGUAGE="JavaScript">Song = new Array(10);Title = new Array(10);Song[0] ='1.Mp3'Song[1] ='2.Mp3'Song[2]='3.Mp3'Song[3] ='4.Mp3'Song[4] ='5.Mp3'Song[5] ='6.Mp3'Song[6] ='7.Mp3'Song[7] ='8.Mp3'Song[8] ='.9.Mp3'Song[9] = '10.Mp3'Song[10] = '11.Mp3'title[0] = 'song name 1'Title[1] = 'song name 2'Title[2] = 'song name 3'Title[3] = 'song name 4'Title[4] = 'song name 5'Title[5] = 'song name 6'Title[6] = "song name 7"Title[7] = 'song name 8'Title[8] = 'song name 9'Title[9] = "song name 10"Title[10] = 'song name11'index = Math.Floor(Math.Random() *Song.Length);document.Write("<DL>and");Document.Write("<EMBED SRC="+song[index]+" width=200 height=200 autostart=true loop=infinite BGCOLOR='#000000'");Document.Write(' TEXT="#FFFFFF">');Document.Write("<BR>");Document.Write("you listening to: ");Document.Write("<font size=4 color=red>");Document.Write(title[index]);Document.Write("</font>")Document.Write("</DL>and");</SCRIPT>

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.