View Single Post
Old August 10th, 2007, 3:48 AM   #2 (permalink)
MarkRH
Race Surpass
Super #1
 
MarkRH's Avatar
 
Joined in Jul 2006
Lives in Oklahoma City, OK
Hosted on sh102
1,222 posts
Gave thanks: 18
Thanked 86 times
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!
MarkRH is offline   Reply With Quote
This user thanks MarkRH for this great post!
GamingHybrid (August 10th, 2007)