Midi Embedd??

windows

Guest
How do i embedd a song, but where it can be stopped a the users request<!--content-->You mean like this?<br />
<br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"abc.mp3" autoplay="true"><!--content-->but is that able to be stopped???<!--content-->Well it would have been quicker to try it out and see, but yes it can be stopped and started at will.<!--content-->nice, but how do i cahnge the size of it?<!--content-->Just use:<br />
<br />
width="" height=""<!--content-->You can also change the media player config.<!--content-->lava lamp what the heck is this?<br />
<!-- m --><a class="postlink" href="http://geo.yahoo.com/serv?s=76001072&t=1061097642">http://geo.yahoo.com/serv?s=76001072&t=1061097642</a><!-- m --><br />
never mind link doesnt work. That image on your site what the heck is with it, its weird.<!--content-->You mean this one?<br />
<br />
<!-- m --><a class="postlink" href="http://www.geocities.com/caulolli/taylor.png">http://www.geocities.com/caulolli/taylor.png</a><!-- m --><br />
<br />
That's a picture of the guy I made the site for.<br />
<br />
I didn't make it but the guy who did gave me permission to use it. His site can be found here (<!-- m --><a class="postlink" href="http://www.geocities.com/weeamwe/">http://www.geocities.com/weeamwe/</a><!-- m -->). I think the picture is somewhere in the worship the black section.<br />
<br />
I don't know why he wanted that picture on the website but he did, he's a little starnge like that.<!--content-->Its some sort of cone head with an upsidedown nose?<!--content-->He turned almost all of his facial features upside down and used psp 5 to make his head into a sort of cone shape. So I guess what you said is a sort of complement.<!--content-->Audio embedding is a blackart since you have to consider both the platform and the file type you plan to serve; essentially most multimedia controls are marked up via the param element, which tends to contain proprietary attributes, for example:<br />
<br />
<object width="100" height="100"><br />
<param name="FileName" value="audio.mid" type=" audio/midi" /><br />
<param name="ShowDisplay" value="0" /><br />
<param name="ShowControls" value="0" /><br />
<param name="AutoStart" value="-1" /><br />
<param name="PlayCount" value="1" /><br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"audio.mid" autostart="true" /><br />
<p>Fallback Method</p><br />
</object><br />
<br />
The <embed> is an unofficial method of embedding audio files, which is sometimes used for bug ridden browsers where they have lack of support for the <object> element.<!--content-->
 
Back
Top