我有一个asp.net页面,我想在其中播放视频。我尝试过使用<video>
和<Object>
,但没有任何效果。视频显示为白色块,或者根本不显示。
我试图播放.wmv文件,该文件存储在Images文件夹的localhost中。以下是我尝试的一些代码示例:
<video width="320" height="240" controls="controls">
<source src="~/Images/file.wmv" type="video/mp4">
<source src="~/Images/file.wmv" type="video/ogg">
<source src="~/Images/file.wmv" type="video/wmv">
<source src="~/Images/file.wmv" type="video/ogv">
Your browser does not support the video tag.
</video>
另外,这个:
<object width="425" height="344">
<embed src="file.wmv" width="425" height="344"></embed>
</object>
这一个:
<object width="425" height="344">
<param name="file" value="~/Images/file.wmv"></param>
<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
<embed src="localhost/Images/file.wmv" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed>
</object>
以上代码示例均无效。你能告诉我怎样才能解决这个问题?
此外,如果用户将某些视频文件上传到服务器(我之前没有关于其类型的知识,可能是.wmv,.swf等),该怎么办?支持播放各种视频的编码技术类型?
感谢。