'Is it possible to make secure my vimeo course videos?
I have vimeo pro plan, i want to encrypt my vimeo videos, users are downloading my course videos.
Is there any way i can stop downloading, First i was using iframe videos were downloading, I embed vimeo player videos are downloading. When i tried base64 encryption videos are not playing.
<?php
$filecontent1 = file_get_contents('524933864');
$data = base64_encode($filecontent);
echo"<div id='myVideo' data-vimeo-id='data:text/html;base64,$data' data-vimeo-width='600'></div>";
?>
<script>
var videoPlayer = new Vimeo.Player('myVideo');
videoPlayer.on('play', function() {
console.log('Played the video');
});
</script>
Is there any way i can stop downloading?
Solution 1:[1]
If you go to the single video management page, you should see a lock icon on the right for privacy settings. In there you should be able to configure who can download the video and which domain the users are able to access the video from. Settings Page. If this still doesn't work, feel free to reach out to me at [email protected] and I can take a look.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Hedy Tang |
