I am using the following code but there appears to be warning with fseek and returns -1 instead of 0.

$file = fopen("http://www.example.com/public_html/data/video/temp.mov", "r") or exit("unable to open file");
fseek($file, -128, SEEK_END);

The file gets opened definately but fseek doesn't work. Is there some other method to read video from server?

Following is the error message

Warning: filesize() [function.filesize]: stat failed for 

Warning: fseek() [function.fseek]: stream does not support seeking in 
link|improve this question

58% accept rate
2  
form PHP Note: May not be used on file pointers returned by fopen() if they use the "http://" or "ftp://" formats. fseek() gives also undefined results for append-only streams (opened with "a" flag). – Liutas Mar 28 '11 at 12:05
1  
OP's filename does NOT use http wrapper. – vbence Mar 28 '11 at 12:10
As it turns out (after comments and edits), it is indeed about HTTP wrappers. – vbence Mar 30 '11 at 11:40
feedback

1 Answer

up vote 2 down vote accepted

It must be some platform dependant problem. Try this code:

$filename = "www.example.com/public_html/data/video/temp.mov";
$file = fopen ($filename, "r")
    or exit("unable to open file");
fseek ($file, filesize ($filename) - 128);

HTTP wrapper does not support seeking. If you want to seek in a remote file thru HTTP you need to get the size of the file. One possible way is to interpret a directory listing, or make a HEAD request. When you know the filesize you can use curl and Range like here.

This is also a method to get remote file size.

How to download a file with cURL (This example loads the data into a PHP variable, use only if you want to process the data, If you just want to save it into an external file use CURLOPT_FILE instead of CURLOPT_RETURNTRANSFER):

$c = curl_init (); 
curl_setopt ($c, CURLOPT_URL, "http://example.com/some_dir/some_file.ext"); 
curl_setopt ($c, CURLOPT_RANGE, max (0, $filesize - 128) . '-' . max (0, $filesize - 1));
curl_setopt ($c, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec ();
echo ($content);
link|improve this answer
didn't work. same error message appears. warning with filesize and fseek. – Aisha Mar 28 '11 at 12:33
@Kiara If there is an error message please add it to you question. – vbence Mar 28 '11 at 12:34
@Kiara Are you opening local files of thru a network? For your example I guesses it was a local file, but not beeing to seek makes it likely that you use HTTP wrapper like http://example.com/data/... – vbence Mar 29 '11 at 11:56
1  
+1 Good write-up. One reminder though : using Range will only work on servers that support partial downloads (not all of them are configured to do that). And you could use curl_setopt($c, CURLOPT_RANGE, '1024000-2048000'); instead of sending the range with CURLOPT_HTTPHEADER. – wimvds Mar 31 '11 at 7:50
1  
If you want to read till the end you don't even need to specify the end of the range - ie, just using max (0, $filesize - 128) . '-' as value for the range should work as well. – wimvds Mar 31 '11 at 8:16
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

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