embed help

swantonbomb88

New Member
Messages
66
Reaction score
0
Points
0
ok, so i uploaded a video to my account, and i embedded it on the index, but it wont play when i click play.

Heres the code im using:
HTML:
<object id="MediaPlayer" width=320 height=286 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components…" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">

<param name="filename" value="/videos/SCM%20Final.wmv">
<param name="Showcontrols" value="True">
<param name="autoStart" value="false">

<embed type="application/x-mplayer2" src="/videos/SCM%20Final.wmv" name="MediaPlayer" width=320 height=240></embed>

</object>

Heres my url so you can see: http://hotwire.exofire.net/

Can you help:dunno:
 
Last edited:

de.monkeyz

New Member
Messages
35
Reaction score
0
Points
0
Well I checked the site, and when I pressed play it didn't load as you mentioned. I checked the error details, and it said it cannot connect so either the host is stopping it, or your file name is wrong. Well that's what I gathered from it.
 

swantonbomb88

New Member
Messages
66
Reaction score
0
Points
0
ok, so now im using this code:
HTML:
<object type="video/x-ms-wmv" 
  data="videos/SCM Final.wmv" 
  width="425" height="355">
  <param name="src" 
    value="videos/SCM Final.wmv" />
  <param name="autostart" value="false" />
  <param name="controller" value="true" />
</object>
and the controller isnt showing, and the whole video isnt showing, its cut off...

how do i fix?
 
Last edited:

konekt

New Member
Messages
100
Reaction score
0
Points
0
ok, so now im using this code:
HTML:
<object type="video/x-ms-wmv" 
  data="videos/SCM Final.wmv" 
  width="425" height="355">
  <param name="src" 
    value="videos/SCM Final.wmv" />
  <param name="autostart" value="false" />
  <param name="controller" value="true" />
</object>
and the controller isnt showing, and the whole video isnt showing, its cut off...

how do i fix?
It works for me:
works.jpg


The video in the first link was playing, screen shots just don't show it. What browser are you checking on? It could be a cross-browser compatibility thing (the shot is from firefox).
 

swantonbomb88

New Member
Messages
66
Reaction score
0
Points
0
it might be the windows media player version, i have 11.... urs looks older

and i am using ff
 

MasterMax1313

New Member
Messages
84
Reaction score
0
Points
0
I'm using ff and wmp 11, or rather the wmp plugin for ff, and it is working fine. are you sure you have the wmp plugin for ff?
 

konekt

New Member
Messages
100
Reaction score
0
Points
0
it might be the windows media player version, i have 11.... urs looks older

and i am using ff
You're right, my media player is whatever came with SP2. I don't use it, so I didn't update it. I'm glad you solved it though.
 
Top