所以我的视频文件位于C:\ inetpub \ wwwroot \ Videos \ Test \ intro.wmv中。我只想在我的网页上本地运行视频。
它必须在IE8 / WinXP上运行。所以没有HTML5。
这是我到目前为止所做的:
<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>
答案 0 :(得分:4)
尝试更简单的方式开始:
<object data="./Videos/Test/intro.wmv" type="video/x-ms-wmv" width="100%" height="100%">
<param name="src" value="./Videos/Test/intro.wmv">
<param name="autoStart" value="1">
alt : <a href="./Videos/Test/intro.wmv">My video name</a>
</object>
或HTML5
<video width="320" height="240" controls="controls">
<source src="./Videos/Test/intro.wmv" type="video//x-ms-wmv" />
<!-- <track src="subtitles_en.vtt" kind="subtitles" srclang="en" label="English"> -->
Nav doesn't support html5 video
</video>
答案 1 :(得分:0)
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
<source src="movie.webm" type="video/webm" />
<object data="movie.mp4" width="320" height="240">
<embed src="movie.swf" width="320" height="240" />
</object>
</video>
将此视为html文件保存在视频所在的同一文件夹中,这是在html 5中,它总是很好地给出相对路径然后是绝对路径。
答案 2 :(得分:0)
这至少有效。
<object width="100%" height="100%"
type="video/x-ms-asf" url="/wiki/Videos/Test/intro.wmv" data="/wiki/Videos/Test/intro.wmv"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="/wiki/Videos/Test/intro.wmv">
<param name="filename" value="/wiki/Videos/Test/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="/wiki/Videos/Test/intro.wmv" width="100%" height="100%" autostart="true" showcontrols="true" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed>
</object>