To Prevent Hot linking of video create a .htaccess file with following content

Code:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://YOURDOMAIN.COM [NC]
RewriteCond %{HTTP_REFERER} !^http://www.YOURDOMAIN.COM [NC]
RewriteRule .*.(jpg|flv)$ - [NC,F]
Upload it to flvideo folder.

If you do not want web access on video folder (orginal uploded video stored in this folder). Create a .htaccess file with following content and upload it to video folder


Code:
deny from all