To prevent hotlinking of certain file types, you need to include the extention in the .htaccess in this line:


Code:
RewriteRule \.(flv|swf|png|bmp)$ /cinema/include/contenttheif.jpg [L,NC]
However I too tried the setup wizard and my video played as well so not sure why this isn't working like it's supposed to....

I put "deny from all' and the videos don't play on my site.

UPDATE: The code needs to be in the .htaccess in the root directory (not the flvideo directory). I added this bit of code to the main .htaccess AND the logo was displayed instead!!!! Yay!!!! To get the image to be displayed, I just needed to remove the first "slash" so that it was like this (notice the missing slash from infront of "cinema"):

Code:
RewriteRule \.(flv|swf|png|bmp)$ cinema/include/contenttheif.jpg [L,NC]