Skip to content

Instantly share code, notes, and snippets.

@chrisgilbert
Created October 11, 2021 08:56
Show Gist options
  • Save chrisgilbert/6cb797163e025500d35154305a99c3cd to your computer and use it in GitHub Desktop.
Save chrisgilbert/6cb797163e025500d35154305a99c3cd to your computer and use it in GitHub Desktop.
OCC Photo Preview Generator With Quality Settings
#
# 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