Soldato
- Joined
- 17 Oct 2002
- Posts
- 7,439
- Location
- Stoke-on-Trent
I've got my object code which I set the width and height of. The video source is in 4:3 scale, however I want to force the embedded media to display in 19:9 scale.
I cannot for the life of me get this to work in IE7 or Firefox.
T.
I cannot for the life of me get this to work in IE7 or Firefox.
Code:
<object id="MediaPlayer1" width=613 height=358
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" align="middle">
<param name="FileName" value="video.wmv">
<param name="AutoStart" value="True">
<param name="ShowStatusBar" value="False">
<param name="stretchToFit" value="True" />
<param name="windowlessVideo" value="False">
<param name="AutoSize" value="True">
<!-- BEGIN PLUG-IN HTML FOR FIREFOX-->
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="video.wmv" AutoSize="True" windowlessVideo="False" align="middle" width=613 height=358 stretchToFit="True" ShowStatusBar="False">
</embed>
<!-- END PLUG-IN HTML FOR FIREFOX-->
</object>