Click to See Complete Forum and Search --> : Midi Embedd??


Baby Jai
08-16-2003, 02:15 PM
How do i embedd a song, but where it can be stopped a the users request

David Harrison
08-16-2003, 02:24 PM
You mean like this?

<embed src="abc.mp3" autoplay="true">

Baby Jai
08-16-2003, 02:40 PM
but is that able to be stopped???

David Harrison
08-16-2003, 04:20 PM
Well it would have been quicker to try it out and see, but yes it can be stopped and started at will.

Baby Jai
08-16-2003, 04:27 PM
nice, but how do i cahnge the size of it?

David Harrison
08-16-2003, 04:28 PM
Just use:

width="" height=""

PeOfEo
08-17-2003, 12:22 AM
You can also change the media player config.

PeOfEo
08-17-2003, 12:23 AM
lava lamp what the heck is this?
http://geo.yahoo.com/serv?s=76001072&t=1061097642
never mind link doesnt work. That image on your site what the heck is with it, its weird.

David Harrison
08-17-2003, 01:17 PM
You mean this one?

http://www.geocities.com/caulolli/taylor.png

That's a picture of the guy I made the site for.

I didn't make it but the guy who did gave me permission to use it. His site can be found here (http://www.geocities.com/weeamwe/). I think the picture is somewhere in the worship the black section.

I don't know why he wanted that picture on the website but he did, he's a little starnge like that.

PeOfEo
08-17-2003, 01:19 PM
Its some sort of cone head with an upsidedown nose?

David Harrison
08-17-2003, 01:53 PM
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.

Robert Wellock
08-18-2003, 10:37 AM
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:

<object width="100" height="100">
<param name="FileName" value="audio.mid" type=" audio/midi" />
<param name="ShowDisplay" value="0" />
<param name="ShowControls" value="0" />
<param name="AutoStart" value="-1" />
<param name="PlayCount" value="1" />
<embed src="audio.mid" autostart="true" />
<p>Fallback Method</p>
</object>

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.