How do I prevent download of .mov when using JQuery Media Plugin to show .mov vidoes?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

You can't. If the user can watch any video online then you're sending the video to them anyway and they are downloading it. See this answer for a more detailed explanation.

link|improve this answer
feedback

You can't on the client side. You have to stop the download on the server side.

JQuery is a JavaScript Framework. Anything the client can see in JavaScript, they can disable or change.

link|improve this answer
feedback

Once the video is shown on the browser, the video is out of your hand. The only way to control this is modifying the video player plugin used at client side to exchange a few handshaking messages with your web server before delivering the video. This can partially help but still doesn't resolve the issue completely.

-A

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.