Use getID3 to create audio/video thumbnails in Nextcloud.
This app attempts to create a thumbnail image from the embedded cover for all audio/video files using the getID3 library.
- Nextcloud >=13.0.1 <=14
- clone the repo in the apps folder
- activate the AV Preview Provider App on the apps page
Additionally, you can deactivate the core preview provider for MP3 in "config.php" by removing "OC\Preview\MP3" from the array.:
'enabledPreviewProviders' => array (
0 => 'OC\\Preview\\PNG',
1 => 'OC\\Preview\\JPEG',
2 => 'OC\\Preview\\GIF',
3 => 'OC\\Preview\\BMP',
4 => 'OC\\Preview\\XBitmap',
5 => 'OC\\Preview\\TXT',
6 => 'OC\\Preview\\MarkDown',
),
- Carsten Wiedmann https://github.com/cwiedmann
This project is licensed under the FreeBSD License - see the license.txt file for details
- Nextcloud / server https://github.com/nextcloud/server
- James Heinrich / getID3 https://github.com/JamesHeinrich/getID3
- Hans-Peter Buniat / namespaceRefactor.php https://gist.github.com/hpbuniat/3860059