Truenas Core - Nextcloud thumbnail preview video

HieuHoang

Cadet
Joined
Jul 20, 2023
Messages
1
“I’m using True Nas Core and have installed Nextcloud but the videos in the NextCloud folder don’t have a preview thumbnail. Does anyone know how to get a preview Thumbnail for videos?”.
image-43-1~2.png
 

Puntieri

Cadet
Joined
Oct 5, 2023
Messages
1
Hi, I also have the same problem, I can't find a solution online.

I'm starting to think there isn't a solution, does anyone have any suggestions?
 

Patrick M. Hausen

Hall of Famer
Joined
Nov 25, 2013
Messages
7,776
This question would probably be better in the Nextcloud community ...

Also: how did you install Nextcloud? If you used the plugin, consider deleting that - it's not well supported, anymore. There's a script by @danb35 that sets up a complete Nextcloud in a standard jail.
 

victort

Guru
Joined
Dec 31, 2021
Messages
973
The way to achieve this is to add

Code:
  'enable_previews' => true,
  'enabledPreviewProviders' =>
  array (
    0 => 'OC\\Preview\\Movie',
    1 => 'OC\\Preview\\PNG',
    2 => 'OC\\Preview\\JPEG',
    3 => 'OC\\Preview\\GIF',
    4 => 'OC\\Preview\\BMP',
    5 => 'OC\\Preview\\XBitmap',
    6 => 'OC\\Preview\\MP3',
    7 => 'OC\\Preview\\MP4',
    8 => 'OC\\Preview\\TXT',
    9 => 'OC\\Preview\\MarkDown',
    10 => 'OC\\Preview\\PDF',
  ),


to the config file. If you use the script by danb35 it would be at /usr/local/www/nextcloud/config/config.php
 
Top