如何使用asp.net运行视频剪辑

how to run a video clip using asp.net?

本文关键字:视频 运行 net 何使用 asp      更新时间:2023-09-26

我想在asp.net中嵌入视频播放器,它可以支持多种视频格式,并可以在不同的浏览器中运行相同格式的剪辑。即mp4/ogg剪辑可以在firfox和chrome 上播放

与asp.net无关(这是纯html的东西),只需写出一个html视频标签

html5岩石

diveintohtml5

我可以推荐这个简单的代码吗:

<video width="320" height="240" controls>
<source src="videoSource.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

资料来源:W3Schools

如果你愿意,你可以用这种方式使用swf文件:

<embed src="sourceSWF.swf" height="200" width="200">

祝你好运!