![:(](http://public.gamedev.net//public/style_emoticons/<#EMO_DIR#>/sad.png)
But how do I fix this so it plays a video?
So my video file is in C:\inetpub\wwwroot\Videos\Test\intro.wmv. I just want to run the local video file locally on my web page.
It has to run on IE8/WinXP. So no HTML5.
This is what I have so far:
<object width="100%" height="100%"
type="video/x-ms-asf" url="http://localhost/Videos/Test/intro.wmv" data="intro.wmv"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="http://localhost/Videos/Test/intro.wmv">
<param name="filename" value="intro.wmv">
<param name="autostart" value="1">
<param name="uiMode" value="full" />
<param name="autosize" value="1">
<param name="playcount" value="1">
<embed type="application/x-mplayer2" src="http://localhost/Videos/Test/intro.wmv" width="100%" height="100%" autostart="true" showcontrols="true" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed>
</object>