Hello guys I'm new on this field!
I can't get my *.avi working with <embed src="movie.avi"></embed> tag!!
Is there any other way to play diferent content (movies like)?Mybe some other script language like PHP? :cry:

Recommended Answers

All 2 Replies

you need to use the object tag and then use the embed tag with its application type like so: this will play mp3 files, just change the extensions and it should play avis too

<object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" 
standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="256"> 
<param name="fileName" value="one..mpg"> 
<param name="animationatStart" value="true"> 
<param name="transparentatStart" value="true"> 
<param name="autoStart" value="true"> 
<param name="showControls" value="true"> 
<param name="Volume" value="-450"> 
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="one.mpg" name="MediaPlayer1" width=280 height=256 autostart=1 showcontrols=1 volume=-450> 
</object>

Eddie Traversa

DHTML Nirvana

http://dhtmlnirvana.com/

Spiritual Blog

http://www.truthrealization.com/

TNX 100^n times!!
It's working. :mrgreen:

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.