Well, I was able to make a .htaccess modification to send a video file to a php file:
Code:
# BEGIN Video
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^videos/([A-Za-z_0-9]*)\.divx$ videos/divx.php?video=$1.divx
</IfModule>
# END Video
Which converts domain.com/videos/myvideo.divx to domain.com/videos/divx.php?video=myvideo.divx
The PHP file does send the video to the PC and it does show in temporary internet files as myvideo.divx with the right file type... the player does show buffering.. then starts to play but for only like 10 seconds and dies.. so close LOL!