我们正在努力保护我们的视频数据不被下载。作为常规做法,我正在尝试禁用上下文菜单/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>