![]() |
|
Uploading Large Numbers of Images - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Uploading Large Numbers of Images (/thread-13574.html) |
Uploading Large Numbers of Images - Nick7635 - 04-05-2021 What is the recommended way to do a bulk upload of thousands of images, each of about 1 MB? Uploading Large Numbers of Images - acrylian - 04-05-2021
This is a limit of your server, not Zenphoto. The best to upload really that many images is FTP directly to the albums folder. Zenphoto is file system based so uploading folders there will make them albums. I would not recommend to upload that many images all at once because of processing image sizes and generating the image cache: https://www.zenphoto.org/news/caching/ This will likely be overloading your server's resources: Uploading Large Numbers of Images - jwaltrip4 - 06-05-2021 If it is possible to name them ahead of time so that you can just sort by name, it would probably go better. It might be very time consuming to sort one the pictures are in ZP. Also.... you might look at adding info to exif and then using that to sort. you might even be able to automate it better. Uploading Large Numbers of Images - Nick7635 - 12-05-2023 I feel it is easier and quicker to sort relevant images into an offline folder prior to uploading to an album. However, I have a related issue in that the information I want to add to the database for each image is stored in a spreadsheet row. Is it possible to do some sort of bulk transfer of data rather than having to copy and paste one cell at a time? Uploading Large Numbers of Images - acrylian - 13-05-2023 You mean you want data like descriptions from an offline spreadsheet to be stored in the database? It is technically possible to import from a CSV file for example but since nothing for this exists you would have to code that first… That's not exactly a simple solution. The best and recommended way is to store the data within each images meta data (Exif/IPTC) itself already as Zenphoto then would import that automatically on discovery. To do that from a spreadsheet is out of Zenphoto's domain and I have no idea if there might be tools for this. Uploading Large Numbers of Images - Nick7635 - 17-05-2023 The Title, Description, Tags, etc. for each image are input to cells in a spreadsheet by a group of people who are not very technically literate. They can manage this, but would probably not be able to handle metadata, so I believe the spreadsheet has to be the initial input document. Uploading Large Numbers of Images - ctdlg - 18-05-2023 Hello Nick, You could learn how to use online converter tools. Use a localhost server for this kind of work. Uploading Large Numbers of Images - acrylian - 18-05-2023 What ctdlg suggest may be an options. But be aware that Zenphoto is file system based so you need to upload images first and then do such database updates.
That is something you have to do offline. Zenphoto cannot write meta data to images itself. Another way would be to find a way to export this meta data to xmp sidecar files. Using the xmp plugin Zenphoto could read the meta data from these files. Uploading Large Numbers of Images - acrylian - 18-05-2023 Perhaps this helps: https://stackoverflow.com/questions/60392676/exiftool-batch-write-metadata-to-jpegs-from-text-file This refers to this widely used free tool: https://exiftool.org/ |