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

时间:2013-07-14 20:50:24

标签: c# javascript asp.net video-streaming html5-video

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

2 个答案:

答案 0 :(得分:1)

与asp.net没什么关系(这是纯粹的html东西),只写出一个html视频标签

html5rocks

diveintohtml5

答案 1 :(得分:0)

我可以建议这个简单的代码:

<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">
祝你好运!