How do I download and save a binary file over HTTP using Ruby?
The URL is http://somedomain.net/flv/sample/sample.flv.
I am on the Windows platform and I would prefer not to run any external program.
|
How do I download and save a binary file over HTTP using Ruby? The URL is I am on the Windows platform and I would prefer not to run any external program. |
||||
| show 2 more comments |
|
The simplest way is the platform-specific solution:
Probably you are searching for:
Edit: Changed. Thank You. Edit2: The solution which saves part of a file while downloading:
|
|||||||||||||||
|
|
I know that this is an old question, but Google threw me here and I think I found a simpler answer. In Railscasts #179, Ryan Bates used the Ruby standard class OpenURI to do much of what was asked like this: (Warning: untested code. You might need to change/tweak it.)
|
|||||||||||
|
|
Example 3 in the Ruby's net/http documentation shows how to download a document over HTTP, and to output the file instead of just loading it into memory, substitute puts with a binary write to a file, e.g. as shown in Dejw's answer. More complex cases are shown further down in the same document. |
|||
|
|
|
Expanding on Dejw's answer (edit2):
where The Sorry, but I don't know a more elegant way of having Ruby wait for the buffer to fill. Edit: This is a version that automatically adjusts itself to keep the buffer just at or below capacity. It's an inelegant solution, but it seems to be just as fast, and to use as little CPU time, as it's calling out to curl. It works in three stages. A brief learning period with a deliberately long sleep time establishes the size of a full buffer. The drop period reduces the sleep time quickly with each iteration, by multiplying it by a larger factor, until it finds an under-filled buffer. Then, during the normal period, it adjusts up and down by a smaller factor. My Ruby's a little rusty, so I'm sure this can be improved upon. First of all, there's no error handling. Also, maybe it could be separated into an object, away from the downloading itself, so that you'd just call
|
||||
|
|
|
I had problems, if the file contained German Umlauts (ä,ö,ü). I could solve the problem by using:
|
|||
|
|
resp.bodypart is confusing me I thought it would save only 'body' part of the response but I want to save whole/binary file. I also found that rio.rubyforge.org could be helpful. Moreover with my question nobody can say that such question was not answered yet :-) – Radek Feb 15 '10 at 1:23