I wish to download original sized images from this website, built upon piwigo CM http://mermaid.pink/
Single image download is allowed, but that would take ages.
Is there an application, extension, script or anything else capable of this task?
I wish to download original sized images from this website, built upon piwigo CM http://mermaid.pink/
Single image download is allowed, but that would take ages.
Is there an application, extension, script or anything else capable of this task?
You can use
wget
as shown here:Out of these
--page-requisites
&--recursive
will likely be needed, though--convert-links
or--no-clobber
may be useful. For more information on usingwget
runman wget
(or look here).This is my solution for this as your question get the images
So first create the folder to save the images, then cd into it
The wget arguments explained:
-r | --recursive:
-l depth | --level=depth:
-nd | --no-directories:
-H | --span-hosts:
-p | --page-requisites:
-A | --accept:
-e | --execute:
For more info in wget type in terminal
OR check THIS
Thanks T04435