PDA

View Full Version : Music And Video On My Web Site



dragwell
01-10-2004, 08:10 PM
I'm new to web design. I've been using dreamweaver, but I can't figgure out how to load music and video and have different options available for size, connection speed, preferred format etc... Any helpful tips? :drool:

h1
01-11-2004, 01:36 AM
Post a sample page along with what you specifically want to do. "Load music" is pretty vague.

dragwell
01-11-2004, 07:49 PM
Okay, I want there to be text links that will play mp3 files in the default player when clicked.

h1
01-26-2004, 09:56 AM
Not possible. Unless you use an ActiveX control to make them automatically download and play the file.

This will, though alienate non-IE users, and IE users with security updates or ActiveX turned off.

djweiser
01-26-2004, 06:36 PM
Originally posted by haxor41789@26 January 2004 - 09:56
Not possible. Unless you use an ActiveX control to make them automatically download and play the file.

This will, though alienate non-IE users, and IE users with security updates or ActiveX turned off.
:o

If he just links to mp3 files, they will play in the default media player.

ActiveX is nothing to do with it ;)


To the original question, try Windows Media Audio 22k or 32k

SeK612
01-26-2004, 06:46 PM
If he just links to mp3 files, they will play in the default media player.

If you hyperlink to a .mp3 file a box will pop up asking you if you want to download the file or open it. To play it in your default player the user needs to click "open" (which downloads to the temp directory and runs). It wouldn't just play.

h1
01-26-2004, 09:51 PM
Originally posted by &#045;netweiser&#045;+26 January 2004 - 19:36--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (-netweiser- @ 26 January 2004 - 19:36)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-haxor41789@26 January 2004 - 09:56
Not possible. Unless you use an ActiveX control to make them automatically download and play the file.

This will, though alienate non-IE users, and IE users with security updates or ActiveX turned off.
:o

If he just links to mp3 files, they will play in the default media player.

ActiveX is nothing to do with it ;)


To the original question, try Windows Media Audio 22k or 32k [/b][/quote]
That&#39;s true, if he is using WMA, they will be integrated into WMP.

Again, this is IE only though.

Captain Nemo
01-26-2004, 10:02 PM
Would this not work?

&#60;embed src=&#34;Path_of_file.format&#34; loop=false autostart=true hidden=false&#62;

That is what I use to stream video or music on my pages.

h1
01-26-2004, 10:21 PM
Originally posted by Captain Nemo@26 January 2004 - 23:02
Would this not work?

&#60;embed src=&#34;Path_of_file.format&#34; loop=false autostart=true hidden=false&#62;

That is what I use to stream video or music on my pages.
You could always use Flash, there are plenty of great Flash music templates floating around, some with playlists, search functions, etc.

That&#39;s not a text link though...

Captain Nemo
01-26-2004, 10:42 PM
Yes flash is nice, I used flash for a banner that plays music, it had a simple preloader, but I lost my damn .fla file and forget how the hell I did it,.... The script I used to make the preloader is here (http://www.smartwebby.com/Flash/Flash_simple_preloader.asp) but, I can&#39;t seem to figure out how to ad the start and stop function again :frusty:

As for a text link, I made a page with just the embeded src tag then made a text link to a pop up (or you could use target="_blank" if you dont like pop ups) from the main page :ph34r:

h1
01-26-2004, 10:56 PM
Originally posted by Captain Nemo@26 January 2004 - 23:42
As for a text link, I made a page with just the embeded src tag then made a text link to a pop up (or you could use target="_blank" if you dont like pop ups) from the main page :ph34r:
This brings up a download box and leaves you with a new, blank window.

Captain Nemo
01-26-2004, 11:07 PM
Okay I am getting confused now,...

Does this not stream from the page or am I way off track,... Link (http://nemo.yahoo-help.com/booty.html)

&#60;title&#62;Booty&#60;/title&#62;
&#60;body bgcolor=&#34;000000&#34; background=&#34;images/skullbg07.jpg&#34; bgproperties=&#34;fixed&#34;&#62;
&#60;center&#62;&#60;embed src=&#34;mp3/booty1.wmv&#34; loop=true autostart=true hidden=false&#62;&#60;/center&#62;

A little off topic but, haxor41789 do you happen to know where I could get something to crack the source code for my swf file or if you could crack it for me,... the damn thing took me days to get right http://nemo.yahoo-help.com/flash.html

Thanks

h1
01-27-2004, 04:54 AM
There&#39;s many good ones out there, but my favorite Flash decompiler is Flasm (http://www.nowrap.de/flasm.html).

h1
01-27-2004, 04:57 AM
And as for the embed, I don&#39;t know and never will as I don&#39;t touch WMV.

h1
01-27-2004, 05:03 AM
Damn. Keep getting thoughts. :D

Flasm is not a decompiler, it just spits out human-readable byte-code, not ActionScript. You want Flare (http://www.nowrap.de/flare.html) for that.

Captain Nemo
01-28-2004, 12:35 AM
Thanks a lot for the link to the de-compiler, I googled for something like that but was wording the search wrong.

I did test out the embed tag with an wmv, avi and an mp3 and it streamed fine in my browser, the only ones I had a problem with the embed tag where .ram, .rm and .mpg, not sure why those formats didn&#39;t work with the embed tag.

At any rate thank you for your help and links.

The link to the embeded mp3 file is here (http://nemo.yahoo-help.com/music.html), not advertising either, just trying to see if it works for other ppl, as it does work for me, also just trying to help the guy out that started the topic.

Peace

h1
01-28-2004, 07:51 AM
NP, Captain Nemo.