Created
October 14, 2019 18:54
-
-
Save BelRarr/3f41c1e4fce0146b3c8a029949f22de3 to your computer and use it in GitHub Desktop.
un site web de streaming simple
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Simple video streaming service</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<h1>Simple video streaming service</h1> | |
<video width="1200" controls controlsList="nodownload"> | |
<source src="https://streaming2.z9.web.core.windows.net/videos/movie.mp4" type="video/mp4"> | |
Your browser does not support HTML5 video. | |
</video> | |
</body> | |
<script type="text/javascript"> | |
// on désactive le menu contextuel afin que l'utilisateur n'ai pas accès à l'option "save video as..." | |
$(document).ready(function () { | |
$("video").bind("contextmenu", function () { | |
return false; | |
}); | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment