2021-08-27 08:32:44 -04:00
|
|
|
import { map } from 'bluebird'
|
2021-06-25 11:39:27 -04:00
|
|
|
import { program } from 'commander'
|
2021-04-08 04:35:49 -04:00
|
|
|
import { pathExists, remove } from 'fs-extra'
|
2021-04-08 05:23:45 -04:00
|
|
|
import { generateImageFilename, processImage } from '@server/helpers/image-utils'
|
2021-03-12 11:04:49 -05:00
|
|
|
import { THUMBNAILS_SIZE } from '@server/initializers/constants'
|
|
|
|
import { initDatabaseModels } from '@server/initializers/database'
|
2022-01-03 11:13:11 -05:00
|
|
|
import { VideoModel } from '@server/models/video/video'
|
2021-03-12 11:04:49 -05:00
|
|
|
|
|
|
|
program
|
|
|
|
.description('Regenerate local thumbnails using preview files')
|
|
|
|
.parse(process.argv)
|
|
|
|
|
|
|
|
run()
|
|
|
|
.then(() => process.exit(0))
|
|
|
|
.catch(err => console.error(err))
|
|
|
|
|
|
|
|
async function run () {
|
|
|
|
await initDatabaseModels(true)
|
|
|
|
|
2021-11-09 05:05:35 -05:00
|
|
|
const ids = await VideoModel.listLocalIds()
|
2021-03-12 11:04:49 -05:00
|
|
|
|
2021-11-09 05:05:35 -05:00
|
|
|
await map(ids, id => {
|
|
|
|
return processVideo(id)
|
|
|
|
.catch(err => console.error('Cannot process video %d.', id, err))
|
2021-03-12 11:04:49 -05:00
|
|
|
}, { concurrency: 20 })
|
|
|
|
}
|
|
|
|
|
2021-11-09 05:05:35 -05:00
|
|
|
async function processVideo (id: number) {
|
|
|
|
const video = await VideoModel.loadWithFiles(id)
|
2021-03-12 11:04:49 -05:00
|
|
|
|
2021-03-29 11:23:48 -04:00
|
|
|
console.log('Processing video %s.', video.name)
|
|
|
|
|
2021-03-12 11:04:49 -05:00
|
|
|
const thumbnail = video.getMiniature()
|
|
|
|
const preview = video.getPreview()
|
|
|
|
|
|
|
|
const previewPath = preview.getPath()
|
|
|
|
|
|
|
|
if (!await pathExists(previewPath)) {
|
|
|
|
throw new Error(`Preview ${previewPath} does not exist on disk`)
|
|
|
|
}
|
|
|
|
|
|
|
|
const size = {
|
|
|
|
width: THUMBNAILS_SIZE.width,
|
|
|
|
height: THUMBNAILS_SIZE.height
|
|
|
|
}
|
2021-04-08 04:35:49 -04:00
|
|
|
|
|
|
|
const oldPath = thumbnail.getPath()
|
|
|
|
|
|
|
|
// Update thumbnail
|
2021-04-08 05:23:45 -04:00
|
|
|
thumbnail.filename = generateImageFilename()
|
2021-04-08 04:35:49 -04:00
|
|
|
thumbnail.width = size.width
|
|
|
|
thumbnail.height = size.height
|
|
|
|
|
|
|
|
const thumbnailPath = thumbnail.getPath()
|
2021-03-12 11:04:49 -05:00
|
|
|
await processImage(previewPath, thumbnailPath, size, true)
|
2021-04-08 04:35:49 -04:00
|
|
|
|
|
|
|
// Save new attributes
|
|
|
|
await thumbnail.save()
|
|
|
|
|
|
|
|
// Remove old thumbnail
|
|
|
|
await remove(oldPath)
|
|
|
|
|
|
|
|
// Don't federate, remote instances will refresh the thumbnails after a while
|
2021-03-12 11:04:49 -05:00
|
|
|
}
|