Created
October 11, 2021 08:56
-
-
Save chrisgilbert/6cb797163e025500d35154305a99c3cd to your computer and use it in GitHub Desktop.
OCC Photo Preview Generator With Quality Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# See: https://ownyourbits.com/2019/06/29/understanding-and-improving-nextcloud-previews/ | |
# | |
OCC="sudo -u www-data php /var/www/nextcloud/occ" | |
$OCC config:app:set previewgenerator squareSizes --value="32 256" | |
$OCC config:app:set previewgenerator widthSizes --value="256 384" | |
$OCC config:app:set previewgenerator heightSizes --value="256" | |
$OCC config:system:set preview_max_x --value 2048 | |
$OCC config:system:set preview_max_y --value 2048 | |
$OCC config:system:set jpeg_quality --value 60 | |
$OCC config:app:set preview jpeg_quality --value="60" | |
$OCC preview:generate-all -vvv > /var/log/preview.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment