Files
nextcloud-docs/admin_manual/configuration_files/previews_configuration.rst
Daniel Kesselberg e61af0b4ff docs(previews): mp3 previews disabled by default
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2025-10-14 19:16:51 +02:00

127 lines
3.8 KiB
ReStructuredText
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
======================
Previews configuration
======================
The Nextcloud thumbnail system generates previews of files for all
Nextcloud apps that display files, such as Files and Gallery.
The following image shows some examples of previews of various file types.
.. figure:: ../images/preview_images.png
:alt: Thumbnails of various image and audio/video files.
By default, Nextcloud can generate previews for the following filetypes:
* Images files
* Text documents
.. note:: Nextcloud can also generate previews of other file types (such as PDF, SVG,
various Office document formats, and various video formats). Due to security and
performance concerns those providers are disabled by default. While those providers
are still available, we discourage enabling them and they are considered unsupported.
The full list of the preview providers that are enabled by default (as well as those
disabled by default) can be found under the ``enabledPreviewProviders``
:doc:`configuration parameter </configuration_server/config_sample_php_parameters>`.
Parameters
----------
Please notice that the Nextcloud preview system comes already with sensible
defaults, and therefore it is usually unnecessary to adjust those configuration
values.
But deemed necessary, following changes have to be made in ``config/config.php`` file. As a best practice, take a backup of this config file before making a lot of changes.
After changing one or more of the following parameters, you might want to run the ``preview:cleanup`` occ command to get rid of the previews with obsolete settings.
See :ref:`occ_cleanup_previews` to learn more.
Disabling previews:
^^^^^^^^^^^^^^^^^^^
Under certain circumstances, for example if the server has limited
resources, you might want to consider disabling the generation of previews.
Note that if you do this all previews in all apps are disabled, including
the Gallery app, and will display generic icons instead of
thumbnails.
Set the configuration option ``enable_previews`` to ``false``:
::
<?php
'enable_previews' => false,
Maximum preview size:
^^^^^^^^^^^^^^^^^^^^^
There are two configuration options to set the maximum size of a preview.
::
<?php
'preview_max_x' => null,
'preview_max_y' => null,
By default, both options are set to null. 'Null' is equal to no limit.
Numeric values represent the size in pixels. The following code limits previews
to a maximum size of 100×100px:
::
<?php
'preview_max_x' => 100,
'preview_max_y' => 100,
'preview_max_x' represents the x-axis and 'preview_max_y' represents the y-axis.
Maximum scale factor:
^^^^^^^^^^^^^^^^^^^^^
If a lot of small pictures are stored on the Nextcloud instance and the preview
system generates blurry previews, you might want to consider setting a maximum
scale factor. By default, pictures are upscaled to 10 times the original size:
::
<?php
'preview_max_scale_factor' => 10,
If you want to disable scaling at all, you can set the config value to '1':
::
<?php
'preview_max_scale_factor' => 1,
If you want to disable the maximum scaling factor, you can set the config value
to 'null':
::
<?php
'preview_max_scale_factor' => null,
JPEG quality setting:
^^^^^^^^^^^^^^^^^^^^^
Default JPEG quality setting for preview images is '80'. Change this with:
::
occ config:app:set preview jpeg_quality --value="60"
Maximum memory for image generation:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
By default, Nextcloud generates image previews using the GD Graphics Library.
This configuration option limits the amount of memory that is allowed for preview generation.
If creating the preview image would allocate more memory than the limit,
preview generation will be disabled and the default mimetype icon is shown.
Default limit is 256 MB. Set to ``-1`` for no limit.
::
<?php
'preview_max_memory' => 256,