Hey Brian,
First let me say that I'm a strong believer that security through obscurity is not security. Meaning, hiding links won't actually prevent the user from being able to download the video. If you load it in the page they will have the ability to save a copy on their computer. That's a by-design feature of the open web. That said, here's a CSS and JS version to globally remove the download links for students:
//CSS HIDE DOWNLOAD LINK
.student-version .link_holder a:not(.instructure_inline_media_comment) {
display: none;
}
//JS REMOVE DOWNLOAD LINK
$(function(){
$(".student-version .link_holder a:not(.instructure_inline_media_comment)").remove();
});
Simply add either of these (you don't need both) to your Account via the Theme Editor.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.