如何在UC浏览器(Android)中禁用html5视频播放器的下载选项

时间:2016-09-29 06:51:22

标签: javascript android html5 video uc-browser

我们正在尝试保护我们的视频数据不被下载。 在常规练习中,我试图禁用contextmenu / longclick / rightclick,但它没有帮助。 以下是示例代码

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<style>
video{
        height : 100%;
        width : 100%;
}
</style>
<body>

<video>
  <source src="http://184.72.239.149/vod/smil:BigBuckBunny.smil/playlist.m3u8" type="video/mp4">
  Your browser does not support HTML5 video.
</video>


</body>
<script>
$('video').bind('contextmenu', function(e) {
    return false;
});
</script>
</html>

0 个答案:

没有答案