salimoha / googlecl

Automatically exported from code.google.com/p/googlecl
0 stars 0 forks source link

Threaded downloads #321

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I mean picasa service.

My provider limit speed of one tcp-connection, so parallel downloading will be 
cool stuff. I mean download multiple files of one album in parallel.

Original issue reported on code.google.com by socketp...@gmail.com on 29 Oct 2010 at 7:22

GoogleCodeExporter commented 9 years ago
While I'm not ruling it out entirely, this is unlikely enough to mark as 
WontFix.

You may have more luck with command line wizardry. I just tried this out, and 
it seemed to work pretty well:

$ mkdir my_album
$ cd my_album
$ google picasa list "my album" --fields url-direct | xargs --max-procs 10 wget

That should create up to 10 instances of wget trying to download all the photos 
in "my album"

Original comment by thmil...@google.com on 29 Oct 2010 at 7:48