Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 1926  / 3 Years ago, sun, may 30, 2021, 3:35:32

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?


More From » 14.04

 Answers
4

You can use wget as shown here:




Downloading an Entire Web Site with wget



Sep 05, 2008 By Dashamir Hoxha in HOW-TOs



If you ever need to download an entire Web site, perhaps for off-line
viewing, wget can do the job—for example:



$ wget 
--recursive
--no-clobber
--page-requisites
--html-extension
--convert-links
--restrict-file-names=windows
--domains website.org
--no-parent
www.website.org/tutorials/html/


This command downloads the Web site
http://www.website.org/tutorials/html/.



The options are:




  • --recursive: download the entire Web site.

  • --domains website.org: don't follow links outside website.org.

  • --no-parent: don't follow links outside the directory tutorials/html/.

  • --page-requisites: get all the elements that compose the page (images, CSS and so on).

  • --html-extension: save files with the .html extension.

  • --convert-links: convert links so that they work locally, off-line.

  • --restrict-file-names=windows: modify filenames so that they will work in Windows as well.

  • --no-clobber: don't overwrite any existing files (used in case the download is interrupted and resumed).




Out of these --page-requisites & --recursive will likely be needed, though --convert-links or --no-clobber may be useful. For more information on using wget run man wget (or look here).


[#21216] Monday, May 31, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
humbire

Total Points: 55
Total Questions: 93
Total Answers: 113

Location: Oman
Member since Fri, Dec 23, 2022
1 Year ago
humbire questions
Thu, May 13, 21, 02:28, 3 Years ago
Sun, Oct 24, 21, 14:23, 3 Years ago
Wed, May 17, 23, 22:16, 1 Year ago
;