syncloud / platform

Run popular services on your device with one click
https://syncloud.org
GNU General Public License v3.0
392 stars 39 forks source link

Nextcloud: enable video preview #679

Closed cyberb closed 1 year ago

cyberb commented 1 year ago

According to this https://help.nextcloud.com/t/show-thumbnails-for-videos/71251/13

We need to add

'enable_previews' => true,
'enabledPreviewProviders' =>
  array (
    'OC\Preview\Movie',
    'OC\Preview\PNG',
    'OC\Preview\JPEG',
    'OC\Preview\GIF',
    'OC\Preview\BMP',
    'OC\Preview\XBitmap',
    'OC\Preview\MP3',
    'OC\Preview\MP4',
    'OC\Preview\TXT',
    'OC\Preview\MarkDown',
    'OC\Preview\PDF'
  ),

Also potentially add ffmpeg

kadkarol commented 1 year ago

Thanks. Where can I find the config.php file?

cyberb commented 1 year ago
/var/snap/nextcloud/current/nextcloud/config/config.php
kadkarol commented 1 year ago

Thank you, it works:)

cyberb commented 1 year ago

wow, that was enough (no ffmpeg needed), I will push an updated version and close the issue.

cyberb commented 1 year ago

Pushed to the store

kadkarol commented 1 year ago

Thanks you.