diff --git a/config/config.sample.php b/config/config.sample.php index a1abf15c3be..4c697192da3 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1386,16 +1386,14 @@ $CONFIG = [ /** * Previews * - * Nextcloud supports previews of image files, the covers of MP3 files, and text - * files. These options control enabling and disabling previews, and thumbnail - * size. + * Nextcloud supports generating previews for various file types, such as images, audio files, and text files. + * These options control enabling and disabling previews, and thumbnail size. */ /** * By default, Nextcloud can generate previews for the following filetypes: * * - Image files - * - Covers of MP3 files * - Text documents * * Valid values are ``true``, to enable previews, or @@ -1510,21 +1508,21 @@ $CONFIG = [ * The following providers are disabled by default due to performance or privacy * concerns: * + * - ``OC\Preview\EMF`` * - ``OC\Preview\Font`` * - ``OC\Preview\HEIC`` * - ``OC\Preview\Illustrator`` - * - ``OC\Preview\Movie`` + * - ``OC\Preview\MP3`` * - ``OC\Preview\MSOffice2003`` * - ``OC\Preview\MSOffice2007`` * - ``OC\Preview\MSOfficeDoc`` + * - ``OC\Preview\Movie`` * - ``OC\Preview\PDF`` * - ``OC\Preview\Photoshop`` * - ``OC\Preview\Postscript`` - * - ``OC\Preview\StarOffice`` * - ``OC\Preview\SVG`` + * - ``OC\Preview\StarOffice`` * - ``OC\Preview\TIFF`` - * - ``OC\Preview\EMF`` - * * * Defaults to the following providers: * @@ -1533,11 +1531,11 @@ $CONFIG = [ * - ``OC\Preview\JPEG`` * - ``OC\Preview\Krita`` * - ``OC\Preview\MarkDown`` - * - ``OC\Preview\MP3`` * - ``OC\Preview\OpenDocument`` * - ``OC\Preview\PNG`` * - ``OC\Preview\TXT`` * - ``OC\Preview\XBitmap`` + * */ 'enabledPreviewProviders' => [ 'OC\Preview\BMP', @@ -1545,7 +1543,6 @@ $CONFIG = [ 'OC\Preview\JPEG', 'OC\Preview\Krita', 'OC\Preview\MarkDown', - 'OC\Preview\MP3', 'OC\Preview\OpenDocument', 'OC\Preview\PNG', 'OC\Preview\TXT',