Play Mp3 Music Online - question

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #11) by chappill on Apr 24 2008, 08:30 PM. (Line Breaks Removed)
CODE<embed src="yourmusic.mid" width="140" height="40" autostart="false" loop="FALSE"> </embed>Where it says yourmusic.mid, change it to the source where your music is, width and height are obvious, autostart is when they go on the page does it start automatically, and loop is does it continuously play, pu that code where ever you like on the... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > CONTRIBUTE > Computers > Programming Languages > HTML, XML etc..

Play Mp3 Music Online - question

farsiscript
hi all
i want make one html page with 4~6 mp3 link
i want users when click at mp3's link play at online player in page !
do you know how can do it that ? or do you know good music player in web (flash , MediaPlayer )
plz help me
thanks dears

Reply

crazyteens
Flash MP3 Player
The Flash/Perl MP3 Player is a complete web-based streaming mp3 player for your perl-friendly website. Downloading the zip file will allow you to upload mp3 files directly to your website. As mp3 files are added, your playlist is automatically updated. Works with frames or without. This will run on your server or your money back!


check it out
http://www.gigfoot.net/software/1.html

Reply

farsiscript
Hi all Thanks dear crazyteens
i find this Javascript soruce code you can play and playlist


CODE
<p class="nav">Music playlist</p>
<p class="menubottom">

<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<param NAME VALUE>
<param NAME="ShowControls" VALUE="0">
<param NAME="ShowStatusBar" VALUE="0">
<param NAME="ShowDisplay" VALUE="0">
<param NAME="DefaultFrame" VALUE="Slide">
<param NAME="Autostart" VALUE="1">
<param NAME="Loop" VALUE="True">
</object><form name="form">
<select style="FONT-SIZE: 8pt; BACKGROUND: #EEEAEA; WIDTH: 166px; COLOR: #A8A8A8; font-face: Comic Sans MS" name="playlist" size="1">
<option value="0">SONG TITLE!!!</option>
<option value="1">SONG TITLE!!!</option>
<option value="2">SONG TITLE!!!</option>
<option value="3">SONG TITLE!!!</option>
<option value="4">SONG TITLE!!!</option>
<option value="5">SONG TITLE!!!</option>
<option value="6">SONG TITLE!!!</option>
</select><input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.Pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.Stop(); playstate=2;"></p>
</form>
<script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1;  // set to 0 to always play first song in list
             // set to 1 to randomly choose the first song to play
songs=new Array();
songs[0]="SONG URL!!!";
songs[1]="SONG URL!!!";
songs[2]="SONG URL!!!";
songs[3]="SONG URL!!!";
songs[4]="SONG URL!!!";
songs[5]="SONG URL!!!";
songs[6]="SONG URL!!!";

if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>


You can add many file

 

 

 


Reply

darran
I have a very simple method as compared to what the others have posted, for you to play a music player in another page. Create a link and in that particular page you have linked your music to and then enter this code

<embed src="www.test.com/123.mp3">

In other words, lets say you have a link to this new page (song1.html), and on song1.html; enter this code in your html in where you want to place your player. Most probably you would want an empty page where it centralises the player with a link back to the previous page.

There are other properties you would like to edit like whether it loops after the end of the song or anything like that.

So there you have it, the default windows media embedded player in your webpage.

Reply

Lozbo
I only know about plugins for CMS that do that ... I have not tried it without a CMS, but the options provided here seem good...

The plugins I speak of (they are for wordpress, actually), are made in flash and they look very fansy and work good. If you'd like more on this, leave a reply...

Reply

firehands
Heres a method for "pseudostreaming" which btw really is streaming as the mp3s can play while they are being down loaded

place the a list of tracks in a plain text file and name it "mytracks.mpu"
eg

track1.mp3
track2.mp3
track3.mp3
track4.mp3
track5.mp3
track6.mp3
track7.mp3

and place a link to it in your web page

<a href="mytracks.m3u">listen to my new album</a>

this assumes that your mp3s, the mpu file and the web page are all in the same directory.

When the user clicks on the link, a media player will open the file and play it.

with any luck the mime type will have already been set up for you

If not you may be able to create/edit an .htaccess file in the same directory so that it includes the following line:
AddType audio/x-mpegurl m3p

HTH

Reply

farsiscript
Hi firehands and Lozbo darran i use last javascript code , but know i need to ajax or flash media player for play mp3 or wma files . i search at internet and i can'nt find any result for online radio or media player !
if you have link or script please post here
thanks

Reply

iGuest
Play mp3 on my site
Play Mp3 Music Online

Replying to farsiscript
I need to play mp3 file on my site. When visitors come to my site on Entertainment page they can play my playlist...

How can I do it..? Any one out there know how to do it...?

Help me...

Cheer for today...

-reply by LanunLuch

Reply

jopak134
i am also wondering how to do this and a lot of solutions that are posted are really helpful laugh.gif

Reply

oestergaard
it is alowed to upload mp3 files?

Reply

Latest Entries

chappill
CODE
<embed src="yourmusic.mid"
width="140" height="40" autostart="false" loop="FALSE">
</embed>


Where it says yourmusic.mid, change it to the source where your music is, width and height are obvious, autostart is when they go on the page does it start automatically, and loop is does it continuously play, pu that code where ever you like on the page (within body).

To play music without the people having any choice (as background music) use this code:
CODE
<BGSOUND SRC=your_file.mid LOOP=1>


Set loop as any positive number or -1 as infinite, hope this helped smile.gif

P.S Google is your friend for future reference wink.gif

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2
Recent Queries:-
  1. play mp3 online - 1.26 hr back. (3)
  2. mp3 play on line - 9.55 hr back. (1)
  3. mp3 online play - 13.03 hr back. (1)
  4. mp3 songs online url - 13.21 hr back. (1)
  5. play music online - 16.09 hr back. (3)
  6. online mp3 url link - 27.45 hr back. (1)
  7. play mp3 form page html - 29.20 hr back. (1)
  8. link play mp3 in html - 33.60 hr back. (1)
  9. play mp3 html - 34.37 hr back. (1)
  10. play any mp3 online - 35.85 hr back. (1)
  11. search online play music - 35.97 hr back. (1)
  12. mp3 play online - 37.29 hr back. (2)
  13. html play mp3 - 39.41 hr back. (1)
  14. html play mp3 online - 39.59 hr back. (1)
Similar Topics

Keywords : play, mp3, music, online

  1. My Images Wontshow Online
    (2)
  2. Wanna Learn Html From Scratch
    downloade an online tutorial,formatted my c: lost it forever,and FORGO (5)
    id prefer something i can download .....coz my internet connection is highly intermittant Moved
    from the Java section to the HTML section. ....
  3. Google Module For Checking Aim Online Status
    AJAXish but not really I think (1)
    This is a module that I made for the Google personalized homepage that checks AIM online status as
    you type. CODE <?xml version="1.0" encoding="UTF-8" ?>
    <Module> <ModulePrefs title="AIM Online Status Checker" height="50"
    /> <Content type="html">   <![CDATA[ This is all the basic
    stuff you need to have it be XML CODE <script type="text/javascript">
    Here's the first function CODE function check() {         var sn =
    document.getElementById....
  4. Would You Shop Using Your Cellphone
    online cellphone shopping cart (10)
    I was wondering if i should try implimenting an online shopping cart that's wap compatible. I
    mean would anyone here every use they're cellphones to buy stuff online? Need opinions.round....
  5. Where Can I Learn Xml Online?
    (3)
    i have experience in XHTML, CSS, and PHP (and a *little* bit of Javascript), and i think XML looks
    very interesting. i looked at the tutorial on w3schools.com, but i know its out-of-date, and it
    also just doesn't look very advanced at all. i learned javascript from w3schools and i know that
    i still can't accomplish a percentage of javascript! so where can i learn XML for real ?....
  6. Online Bots - Virtual Bartender
    Online Bots - virtual bartender (3)
    Been looking into bots a little bit - some are really good, with lots of answers to questions, etc.
    This one is great - unique, it doens't respond with words, but with graphics.
    http://www.virtualbartender.beer.com/beer_usa.htm If anyone has some good bot websites, please
    post .......

    1. Looking for play, mp3, music, online

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for play, mp3, music, online

*MORE FROM TRAP17.COM*
advertisement



Play Mp3 Music Online - question



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE