如何在html5

时间:2019-07-04 14:01:37

标签: html

使用此代码显示来自网址的视频。 我现在想要的是让用户可以选择上传(但是视频文件不应该完全在浏览器中上传,只是文件的路径,然后应该缓冲并像播放当前的w3schools链接一样播放)

<html>    
<video id="my_video_1" class="video-js vjs-default-skin" controls preload="auto" width="550" height="268"
    data-setup='{ "playbackRates": [0.5, 1, 1.5, 2, 4] }'>
    #source tag
    <source src="http://www.w3schools.com/html/mov_bbb.ogg" type='video/ogg'>
    </video>
</html>

因此在上面的代码中,我将<source行替换为:-

<input type="file" id="myFile">

但是它似乎对我不起作用。我看不到任何上传按钮。

我想将上传内容限制为仅mp4 / mkv文件

0 个答案:

没有答案