EvasionX 0 Report post Posted March 15, 2006 I NEED HELP ON PUTTING MUSIC ON MY WEBSITE!!! THE MUSIC CANNOT BE LOCATED ON MP3 DOWNLOADS !!! Man I downloaded the music on my limewire now i have to figure out how the hell am i going to get this mp3 song to a website so i can play as bgsound (example: http://forums.xisto.com/no_longer_exists/) i need a website where i can like make my music into a website.. its confusing for me to explain........ i need a website where i can like post a music file and if people wants to listen to it they click it for the link to upload the song and listen to it(not downloading) p.s example of the code i need <BGSOUND balance=0 src="http://forums.xisto.com/no_longer_exists/; volume=0 loop=100></BGSOUND> the url has to be changed to the song i want people to hear instead of that song i putted i cannot find the .mp3 file for the song i need please helpAdd: jon_nammer@hotmail.com if u want me to explain the best i can:( Share this post Link to post Share on other sites
ashley512 0 Report post Posted March 15, 2006 I NEED HELP ON PUTTING MUSIC ON MY WEBSITE!!! THE MUSIC CANNOT BE LOCATED ON MP3 DOWNLOADS !!! Man I downloaded the music on my limewire now i have to figure out how the hell am i going to get this mp3 song to a website so i can play as bgsound (example: http://forums.xisto.com/no_longer_exists/) i need a website where i can like make my music into a website.. its confusing for me to explain........ i need a website where i can like post a music file and if people wants to listen to it they click it for the link to upload the song and listen to it(not downloading) p.s example of the code i need <BGSOUND balance=0 src="http://forums.xisto.com/no_longer_exists/; volume=0 loop=100></BGSOUND> the url has to be changed to the song i want people to hear instead of that song i putted i cannot find the .mp3 file for the song i need please helpAdd: jon_nammer@hotmail.com if u want me to explain the best i can:( what do u mean by that Share this post Link to post Share on other sites
Jeigh1405241495 0 Report post Posted March 15, 2006 When I read it over, it seemed to imply he wants his users to be able to click on a link and then the music will stream through their browser so they can listen to it. But so they cannot download the music files themselves, nor that it will play automatically in the background upon visiting his site. Share this post Link to post Share on other sites
minnieadkins 0 Report post Posted March 15, 2006 FTP them usic up to your site and link to it. I'm not very familiar to the tags of playing music, but I assume your code is correct. I don't know the rules on Xisto, but you're probably not allowed to host .mp3's even if it isn't available to the public. All they would have to do is look at your source and link to that for the download. Most sights don't allow mp3's unless you go through them and show them that it's a legal file. After saying that you downloaded it on limewire, I doubt getting approved. =/Good luck with it all.Here's what a 10 second google turned up: http://www.developingwebs.net/html/mp3.phpHope this helps. Share this post Link to post Share on other sites
pyost 0 Report post Posted March 15, 2006 You need something like a Windows Media Player plug-in. It is used on music.aol.com and many other web sites. It's like a small WMP that is in the layout of your page and you can play and stop music by using it. Quite simple. Share this post Link to post Share on other sites
Houdini 0 Report post Posted March 15, 2006 Do you mean some thing like this Maple Leaf Rag or this The Entertainer (Scott Joplin) Or you could use the embed object and that whould work in Firefox or Internet Explorer, just try to google it and it will explain sounds, that bgsound tag is deprecated and only works with Intenet Explorer. Share this post Link to post Share on other sites
Jayson87 0 Report post Posted March 16, 2006 Try using embed src ? i think it should work. I face the problem of having the browser to stream on the browser instead of making the user download it. Try using embed src , it should work. Also some webhost do not allow you to stream mp3 files but sometimes u can work around them by using wma files or rename wma files to .aspx. Does nto work all the time. but no harm trying Share this post Link to post Share on other sites
erinekath 0 Report post Posted April 15, 2006 Upload your music and use this code :<embed src="YOUR MUSIC URL" autostart="true" loop="true" hidden="true"> That's all you need to do. You can also get a music playlist like mine (http://www.candy-swirls.co.nr/) On my page it's called a music box. But it's still the same. If you need help you can go to http://forums.xisto.com/no_longer_exists/ has some tutorials and they're a GREAT help. I hope it works for you!! Share this post Link to post Share on other sites
austiniskoge 0 Report post Posted June 28, 2006 Hmm, I ought to try that. I need to host my band's mp3s.How can you put a link for download?like the HTML code, please. Share this post Link to post Share on other sites
BooZker 0 Report post Posted August 6, 2006 Go to my http://forums.xisto.com/no_longer_exists/ site and listen... you'll hear owls and nighttime sound. Is that what you want, but music? Just copy the HTML if that is what you want. Change it to your song though haha. And i know Xisto.com hosts .mp3s, but i dont know about Xisto. I am sure they do though. If you want a download link just put: <a href="http://yoursite.com/you_music_file_folder/music_file.mp3">Click Here for music_file.mp3!</a> Make sure to RIGHT CLICK AND GO TO SAVE TARGET. If you just click it will just start playing in quicktime or some other program. Make sure also that in your HTML and any links that the Caps match. So if you files name is MySong.mp3 make sure to make all link and HTML to match. You can not put a MySong.mp3 and have a link that is mysong.mp3 This is the same with and file. Caps always have to match the code. Share this post Link to post Share on other sites
iGuest 3 Report post Posted September 28, 2009 play audio in webpageNeed Help adding music to a webpageThanks to HTML 5.0 we need not have to worry about plugins available in the clients side... just use the <audio> and <video> tags... http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ works well in firefox and other browsers which support open standards laid by w3c if U want a flexible code then use java scripts like this <!-- START SOUND CODE, DELETE TO REMOVE --><script language="JavaScript" type="text/javascript">If (navigator.AppName == "Microsoft Internet Explorer") {Document.Write('<bgsound src="dawn.Mp3" LOOP="false">');}Else {Document.Write('<embed type="application/x-mplayer2" pluginspage="https://support.microsoft.com/help/18612/windows-media-player; Name="MediaPlayer" src="dawn.Mp3" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" volume="1" HEIGHT="1" WIDTH="1" loop="false"><br>');}// End --></script><!-- END SOUND CODE --> -reply by Prasanth Share this post Link to post Share on other sites