Hi Everyone.
I’m running Nextcloud 18 on Ubuntu 18.04 on Apache 2.4 and MySQL on AWS EC2.
I’m trying to use previewgenerator to pre-generate the image previews. My users will only use the preview in max preview or the small 32x32 preview in the detailed file listing.
So I set the preview generator to generator 32x32 and 256x256 crop square sizes and the max preview x size of 2560 and y size of 1440.
But it seems like the file listing does not use 32x32 or 256x256 generated at all. It will generate on the fly for these crop sizes sometimes as large as 1020x1020… and this will lock up the system if I browse onto a folder with few hundred high resolution images.
Is there a way to specify what size file detail listing preview size should be?
It is loading a fairly large image in a 32x32 sized area on the browser.
Or maybe there’s an error in my config?
My config:
‘enable_previews’ => true,
‘preview_max_x’ => 2560,
‘preview_max_y’ => 1440,
‘preview_max_scale_factor’ => 1,
‘filelocking.enabled’ => true,
‘jpeg_quality’ => ‘60’,
config:app:set --value=“256” previewgenerator squareSizes
Thank you!
Jack