Page 1 of 1

pics from a particular webshots album only?

Posted: Sun Aug 03, 2008 7:36 am
by nandi
how to download the orignal size pics from a particular www.webshots.com album only?
like from this album...
http://travel.webshots.com/album/55254825MXDQxv

i searched but could not find anything...help please as you always do...thanks

Re: pics from a particular webshots album only?

Posted: Mon Aug 04, 2008 3:14 pm
by KoalaBear
please import the attached .plt file and change the start URL.

Re: pics from a particular webshots album only?

Posted: Fri Aug 15, 2008 8:26 pm
by nandi
well...KoalaBear Thanks as always,,,but i think webshots have done some changes to there site so this method doesn't work for me?????

any way around????

Re: pics from a particular webshots album only?

Posted: Sun Aug 17, 2008 3:12 pm
by KoalaBear
yes, something changed, they using flash to show large pics now.
but we have html parser script:)

just download attached .plt file, select main menu->Tasks->Import Task to import it to your project, then start download.

Re: pics from a particular webshots album only?

Posted: Sun Aug 17, 2008 5:54 pm
by nandi
i simply have no words to thanks you...i don't know how you do it but man YOU ARE THE BEST!!!! :P

Re: pics from a particular webshots album only?

Posted: Sun Aug 17, 2008 8:56 pm
by hipster
That's awesome - I wouldn't of figured all that out in a million years!

Although grabbing an album is great, how would I go about grabbing all the albums from a user in one go?

Many thanks

Re: pics from a particular webshots album only?

Posted: Mon Aug 18, 2008 7:01 am
by KoalaBear
for download a user's album, just change start URL to user's album category page URL, and add ;/album/\w+$ to the end of Page URL Include Filters

Re: pics from a particular webshots album only?

Posted: Mon Aug 18, 2008 12:48 pm
by hipster
Fantastic - Thank you!

Re: pics from a particular webshots album only?

Posted: Tue Aug 19, 2008 7:35 pm
by hipster
Sorry to be a pain!

How do I download both ph and fs sized pictures in the same batch?

Cheers

Re: pics from a particular webshots album only?

Posted: Mon Sep 01, 2008 3:00 pm
by hipster
Help!

Webshots has been changed again and the above solution no longer dl's the fullsize pictures.

Can you please take a look?

Thanks

Re: pics from a particular webshots album only?

Posted: Sat Sep 13, 2008 10:28 pm
by hipster
Bump

Any help with this would be really appreciated!

Re: pics from a particular webshots album only?

Posted: Sun Sep 14, 2008 3:03 am
by KoalaBear
I already upgraded the .plt file, please download it for new task.
for the task already exist, just change HTML Parser Script to:

if (string.find(HTML.Url,'/fullsize/')) then
local s,e=string.find(HTML.Content,'so.addVariable%b()');
if (s and e) then
local c=string.sub(HTML.Content,s+15,e-1);
s,e=string.find(c,'http%b:\'');
if (s and e) then
local url=string.sub(c,s,e-1);
AddLink(url,HTML.Url,HTML.Title,'',HTML.TaskID,1);
end;
end;
else
DefaultParser(HTML.Content, HTML.Url, HTML.Title, HTML.TaskID, HTML.Level);
end;