1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 10:19:35 +02:00

Add ability to customize frames to analyze

This commit is contained in:
Chocobozzz 2023-11-08 10:16:50 +01:00
parent 9880d2adf5
commit 2bc4d26b94
No known key found for this signature in database
GPG key ID: 583A612D890159BE
7 changed files with 34 additions and 3 deletions

View file

@ -53,6 +53,7 @@ function checkConfig () {
checkLiveConfig()
checkObjectStorageConfig()
checkVideoStudioConfig()
checkThumbnailsConfig()
}
// We get db by param to not import it in this file (import orders)
@ -331,3 +332,9 @@ function checkVideoStudioConfig () {
throw new Error('Video studio cannot be enabled if transcoding is disabled')
}
}
function checkThumbnailsConfig () {
if (CONFIG.THUMBNAILS.GENERATION_FROM_VIDEO.FRAMES_TO_ANALYZE < 2) {
throw new Error('thumbnails.generation_from_video.frames_to_analyze must be a number greater than 1')
}
}