
How to hide video link in jwplayer ?
Hi , how to hide the video link in jwplayer , so that the link can not be used by other websites ? because the video link I often used / taken by some other websites ,I use the javascript embed code . .
I'm use code:
<script type="text/javascript">
jwplayer("player").setup({
sources: [
{file: "http://mydomain/film.mp4",label: "360",type: "mp4",}],
width: "100%",
height: "100%",
type: "mp4",
tracks: [{
file: 'http://mydomain/subs/tes.srt',
label: 'Indonesia',
kind: 'captions',
'default':true
}],
captions: {
color: '#00ff00',
backgroundOpacity:0,
fontsize: 20,
}
});
</script>
I want to hide the video link above (http://mydomain/film.mp4) so as not to look at inspect element, so that can not be used / copied / stolen by other websites
ask the tutorial , because I am still learning and have not been too adept for use. Please help me ..