2021-02-16 08:50:40 +01:00
|
|
|
import { join } from 'path'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { ThumbnailType, ThumbnailType_Type } from '@peertube/peertube-models'
|
2023-10-19 14:18:22 +02:00
|
|
|
import { generateImageFilename } from '../helpers/image-utils.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { CONFIG } from '../initializers/config.js'
|
|
|
|
import { ASSETS_PATH, PREVIEWS_SIZE, THUMBNAILS_SIZE } from '../initializers/constants.js'
|
|
|
|
import { ThumbnailModel } from '../models/video/thumbnail.js'
|
|
|
|
import { MVideoFile, MVideoThumbnail, MVideoUUID, MVideoWithAllFiles } from '../types/models/index.js'
|
|
|
|
import { MThumbnail } from '../types/models/video/thumbnail.js'
|
|
|
|
import { MVideoPlaylistThumbnail } from '../types/models/video/video-playlist.js'
|
|
|
|
import { VideoPathManager } from './video-path-manager.js'
|
|
|
|
import { downloadImageFromWorker, processImageFromWorker } from './worker/parent-process.js'
|
2023-10-19 14:18:22 +02:00
|
|
|
import { generateThumbnailFromVideo } from '@server/helpers/ffmpeg/ffmpeg-image.js'
|
|
|
|
import { logger, loggerTagsFactory } from '@server/helpers/logger.js'
|
|
|
|
import { remove } from 'fs-extra'
|
|
|
|
import { FfprobeData } from 'fluent-ffmpeg'
|
|
|
|
import Bluebird from 'bluebird'
|
|
|
|
|
|
|
|
const lTags = loggerTagsFactory('thumbnail')
|
2019-04-17 10:07:00 +02:00
|
|
|
|
2021-04-08 11:23:45 +02:00
|
|
|
type ImageSize = { height?: number, width?: number }
|
2019-04-17 10:07:00 +02:00
|
|
|
|
2023-06-06 15:59:51 +02:00
|
|
|
function updateLocalPlaylistMiniatureFromExisting (options: {
|
2021-02-16 08:50:40 +01:00
|
|
|
inputPath: string
|
|
|
|
playlist: MVideoPlaylistThumbnail
|
|
|
|
automaticallyGenerated: boolean
|
|
|
|
keepOriginal?: boolean // default to false
|
2019-08-01 16:54:24 +02:00
|
|
|
size?: ImageSize
|
2021-02-16 08:50:40 +01:00
|
|
|
}) {
|
|
|
|
const { inputPath, playlist, automaticallyGenerated, keepOriginal = false, size } = options
|
2019-04-17 10:07:00 +02:00
|
|
|
const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
|
2019-04-23 09:50:57 +02:00
|
|
|
const type = ThumbnailType.MINIATURE
|
2019-04-17 10:07:00 +02:00
|
|
|
|
2022-06-27 11:53:12 +02:00
|
|
|
const thumbnailCreator = () => {
|
|
|
|
return processImageFromWorker({ path: inputPath, destination: outputPath, newSize: { width, height }, keepOriginal })
|
|
|
|
}
|
|
|
|
|
2021-06-04 09:19:01 +02:00
|
|
|
return updateThumbnailFromFunction({
|
2021-02-16 08:50:40 +01:00
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
type,
|
|
|
|
automaticallyGenerated,
|
2023-06-06 15:59:51 +02:00
|
|
|
onDisk: true,
|
2021-02-16 08:50:40 +01:00
|
|
|
existingThumbnail
|
|
|
|
})
|
2019-04-17 10:07:00 +02:00
|
|
|
}
|
|
|
|
|
2023-06-19 09:56:12 +02:00
|
|
|
function updateRemotePlaylistMiniatureFromUrl (options: {
|
2021-02-16 08:50:40 +01:00
|
|
|
downloadUrl: string
|
|
|
|
playlist: MVideoPlaylistThumbnail
|
|
|
|
size?: ImageSize
|
|
|
|
}) {
|
|
|
|
const { downloadUrl, playlist, size } = options
|
2019-04-17 10:07:00 +02:00
|
|
|
const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
|
2019-04-23 09:50:57 +02:00
|
|
|
const type = ThumbnailType.MINIATURE
|
2019-04-17 10:07:00 +02:00
|
|
|
|
2021-02-12 16:23:19 +01:00
|
|
|
// Only save the file URL if it is a remote playlist
|
|
|
|
const fileUrl = playlist.isOwned()
|
|
|
|
? null
|
|
|
|
: downloadUrl
|
|
|
|
|
2022-06-24 16:31:32 +02:00
|
|
|
const thumbnailCreator = () => {
|
|
|
|
return downloadImageFromWorker({ url: downloadUrl, destDir: basePath, destName: filename, size: { width, height } })
|
|
|
|
}
|
|
|
|
|
2023-06-06 15:59:51 +02:00
|
|
|
return updateThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl, onDisk: true })
|
2019-04-17 10:07:00 +02:00
|
|
|
}
|
|
|
|
|
2023-06-06 15:59:51 +02:00
|
|
|
function updateLocalVideoMiniatureFromExisting (options: {
|
2020-09-17 10:00:46 +02:00
|
|
|
inputPath: string
|
|
|
|
video: MVideoThumbnail
|
2023-07-31 14:34:36 +02:00
|
|
|
type: ThumbnailType_Type
|
2020-09-17 10:00:46 +02:00
|
|
|
automaticallyGenerated: boolean
|
2019-08-01 16:54:24 +02:00
|
|
|
size?: ImageSize
|
2021-02-16 08:50:40 +01:00
|
|
|
keepOriginal?: boolean // default to false
|
2020-09-17 10:00:46 +02:00
|
|
|
}) {
|
2021-02-16 08:50:40 +01:00
|
|
|
const { inputPath, video, type, automaticallyGenerated, size, keepOriginal = false } = options
|
2020-09-17 10:00:46 +02:00
|
|
|
|
2019-04-17 10:07:00 +02:00
|
|
|
const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
|
2022-06-27 11:53:12 +02:00
|
|
|
|
|
|
|
const thumbnailCreator = () => {
|
|
|
|
return processImageFromWorker({ path: inputPath, destination: outputPath, newSize: { width, height }, keepOriginal })
|
|
|
|
}
|
2019-04-17 10:07:00 +02:00
|
|
|
|
2021-06-04 09:19:01 +02:00
|
|
|
return updateThumbnailFromFunction({
|
2021-02-16 08:50:40 +01:00
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
type,
|
|
|
|
automaticallyGenerated,
|
2023-06-06 15:59:51 +02:00
|
|
|
existingThumbnail,
|
|
|
|
onDisk: true
|
2021-02-16 08:50:40 +01:00
|
|
|
})
|
2019-04-17 10:07:00 +02:00
|
|
|
}
|
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
// Returns thumbnail models sorted by their size (height) in descendent order (biggest first)
|
2023-06-06 15:59:51 +02:00
|
|
|
function generateLocalVideoMiniature (options: {
|
2021-02-16 08:50:40 +01:00
|
|
|
video: MVideoThumbnail
|
|
|
|
videoFile: MVideoFile
|
2023-10-19 14:18:22 +02:00
|
|
|
types: ThumbnailType_Type[]
|
|
|
|
ffprobe?: FfprobeData
|
|
|
|
}): Promise<MThumbnail[]> {
|
|
|
|
const { video, videoFile, types, ffprobe } = options
|
|
|
|
|
|
|
|
if (types.length === 0) return Promise.resolve([])
|
2021-02-16 08:50:40 +01:00
|
|
|
|
2021-11-18 14:35:08 +01:00
|
|
|
return VideoPathManager.Instance.makeAvailableVideoFile(videoFile.withVideoOrPlaylist(video), input => {
|
2023-10-19 14:18:22 +02:00
|
|
|
// Get bigger images to generate first
|
|
|
|
const metadatas = types.map(type => buildMetadataFromVideo(video, type))
|
|
|
|
.sort((a, b) => {
|
|
|
|
if (a.height < b.height) return 1
|
|
|
|
if (a.height === b.height) return 0
|
|
|
|
return -1
|
2022-06-27 11:53:12 +02:00
|
|
|
})
|
2021-08-17 08:26:20 +02:00
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
let biggestImagePath: string
|
|
|
|
return Bluebird.mapSeries(metadatas, metadata => {
|
|
|
|
const { filename, basePath, height, width, existingThumbnail, outputPath, type } = metadata
|
|
|
|
|
|
|
|
let thumbnailCreator: () => Promise<any>
|
|
|
|
|
|
|
|
if (videoFile.isAudio()) {
|
|
|
|
thumbnailCreator = () => processImageFromWorker({
|
|
|
|
path: ASSETS_PATH.DEFAULT_AUDIO_BACKGROUND,
|
|
|
|
destination: outputPath,
|
|
|
|
newSize: { width, height },
|
|
|
|
keepOriginal: true
|
|
|
|
})
|
|
|
|
} else if (biggestImagePath) {
|
|
|
|
thumbnailCreator = () => processImageFromWorker({
|
|
|
|
path: biggestImagePath,
|
|
|
|
destination: outputPath,
|
|
|
|
newSize: { width, height },
|
|
|
|
keepOriginal: true
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
thumbnailCreator = () => generateImageFromVideoFile({
|
|
|
|
fromPath: input,
|
|
|
|
folder: basePath,
|
|
|
|
imageName: filename,
|
|
|
|
size: { height, width },
|
|
|
|
ffprobe
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!biggestImagePath) biggestImagePath = outputPath
|
|
|
|
|
|
|
|
return updateThumbnailFromFunction({
|
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
type,
|
|
|
|
automaticallyGenerated: true,
|
|
|
|
onDisk: true,
|
|
|
|
existingThumbnail
|
|
|
|
})
|
2021-08-17 08:26:20 +02:00
|
|
|
})
|
2021-02-16 08:50:40 +01:00
|
|
|
})
|
2019-04-17 10:07:00 +02:00
|
|
|
}
|
|
|
|
|
2023-06-07 08:53:14 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2023-06-19 09:56:12 +02:00
|
|
|
function updateLocalVideoMiniatureFromUrl (options: {
|
2023-06-07 08:53:14 +02:00
|
|
|
downloadUrl: string
|
|
|
|
video: MVideoThumbnail
|
2023-07-31 14:34:36 +02:00
|
|
|
type: ThumbnailType_Type
|
2023-06-07 08:53:14 +02:00
|
|
|
size?: ImageSize
|
|
|
|
}) {
|
|
|
|
const { downloadUrl, video, type, size } = options
|
|
|
|
const { filename: updatedFilename, basePath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
|
|
|
|
|
|
|
|
// Only save the file URL if it is a remote video
|
|
|
|
const fileUrl = video.isOwned()
|
|
|
|
? null
|
|
|
|
: downloadUrl
|
|
|
|
|
|
|
|
const thumbnailUrlChanged = hasThumbnailUrlChanged(existingThumbnail, downloadUrl, video)
|
|
|
|
|
|
|
|
// Do not change the thumbnail filename if the file did not change
|
|
|
|
const filename = thumbnailUrlChanged
|
|
|
|
? updatedFilename
|
|
|
|
: existingThumbnail.filename
|
|
|
|
|
|
|
|
const thumbnailCreator = () => {
|
|
|
|
if (thumbnailUrlChanged) {
|
|
|
|
return downloadImageFromWorker({ url: downloadUrl, destDir: basePath, destName: filename, size: { width, height } })
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve()
|
|
|
|
}
|
|
|
|
|
|
|
|
return updateThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl, onDisk: true })
|
|
|
|
}
|
|
|
|
|
2023-06-19 09:56:12 +02:00
|
|
|
function updateRemoteVideoThumbnail (options: {
|
2021-02-16 08:50:40 +01:00
|
|
|
fileUrl: string
|
|
|
|
video: MVideoThumbnail
|
2023-07-31 14:34:36 +02:00
|
|
|
type: ThumbnailType_Type
|
2021-02-16 08:50:40 +01:00
|
|
|
size: ImageSize
|
2023-06-06 15:59:51 +02:00
|
|
|
onDisk: boolean
|
2021-02-16 08:50:40 +01:00
|
|
|
}) {
|
2023-06-06 15:59:51 +02:00
|
|
|
const { fileUrl, video, type, size, onDisk } = options
|
|
|
|
const { filename: generatedFilename, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
|
2021-03-03 11:02:34 +01:00
|
|
|
|
2020-01-31 16:56:52 +01:00
|
|
|
const thumbnail = existingThumbnail || new ThumbnailModel()
|
2019-04-17 10:07:00 +02:00
|
|
|
|
2021-03-03 11:02:34 +01:00
|
|
|
// Do not change the thumbnail filename if the file did not change
|
2023-06-07 08:53:14 +02:00
|
|
|
if (hasThumbnailUrlChanged(existingThumbnail, fileUrl, video)) {
|
2023-06-06 15:59:51 +02:00
|
|
|
thumbnail.filename = generatedFilename
|
|
|
|
}
|
2021-03-03 11:02:34 +01:00
|
|
|
|
2019-04-17 10:07:00 +02:00
|
|
|
thumbnail.height = height
|
|
|
|
thumbnail.width = width
|
|
|
|
thumbnail.type = type
|
2019-04-24 10:28:57 +02:00
|
|
|
thumbnail.fileUrl = fileUrl
|
2023-06-06 15:59:51 +02:00
|
|
|
thumbnail.onDisk = onDisk
|
2019-04-17 10:07:00 +02:00
|
|
|
|
|
|
|
return thumbnail
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2023-07-19 16:02:49 +02:00
|
|
|
async function regenerateMiniaturesIfNeeded (video: MVideoWithAllFiles) {
|
2023-10-19 14:18:22 +02:00
|
|
|
const thumbnailsToGenerate: ThumbnailType_Type[] = []
|
|
|
|
|
2023-07-19 16:02:49 +02:00
|
|
|
if (video.getMiniature().automaticallyGenerated === true) {
|
2023-10-19 14:18:22 +02:00
|
|
|
thumbnailsToGenerate.push(ThumbnailType.MINIATURE)
|
2023-07-19 16:02:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (video.getPreview().automaticallyGenerated === true) {
|
2023-10-19 14:18:22 +02:00
|
|
|
thumbnailsToGenerate.push(ThumbnailType.PREVIEW)
|
|
|
|
}
|
|
|
|
|
|
|
|
const models = await generateLocalVideoMiniature({
|
|
|
|
video,
|
|
|
|
videoFile: video.getMaxQualityFile(),
|
|
|
|
types: thumbnailsToGenerate
|
|
|
|
})
|
|
|
|
|
|
|
|
for (const model of models) {
|
|
|
|
await video.addAndSaveThumbnail(model)
|
2023-07-19 16:02:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-04-17 10:07:00 +02:00
|
|
|
export {
|
2023-06-06 15:59:51 +02:00
|
|
|
generateLocalVideoMiniature,
|
2023-07-19 16:02:49 +02:00
|
|
|
regenerateMiniaturesIfNeeded,
|
2023-06-19 09:56:12 +02:00
|
|
|
updateLocalVideoMiniatureFromUrl,
|
2023-06-06 15:59:51 +02:00
|
|
|
updateLocalVideoMiniatureFromExisting,
|
2023-06-19 09:56:12 +02:00
|
|
|
updateRemoteVideoThumbnail,
|
|
|
|
updateRemotePlaylistMiniatureFromUrl,
|
2023-06-06 15:59:51 +02:00
|
|
|
updateLocalPlaylistMiniatureFromExisting
|
2019-04-17 10:07:00 +02:00
|
|
|
}
|
|
|
|
|
2023-06-06 15:59:51 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Private
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-03-03 11:02:34 +01:00
|
|
|
function hasThumbnailUrlChanged (existingThumbnail: MThumbnail, downloadUrl: string, video: MVideoUUID) {
|
|
|
|
const existingUrl = existingThumbnail
|
|
|
|
? existingThumbnail.fileUrl
|
|
|
|
: null
|
|
|
|
|
|
|
|
// If the thumbnail URL did not change and has a unique filename (introduced in 3.1), avoid thumbnail processing
|
|
|
|
return !existingUrl || existingUrl !== downloadUrl || downloadUrl.endsWith(`${video.uuid}.jpg`)
|
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
function buildMetadataFromPlaylist (playlist: MVideoPlaylistThumbnail, size: ImageSize) {
|
2019-04-17 10:07:00 +02:00
|
|
|
const filename = playlist.generateThumbnailName()
|
|
|
|
const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
|
|
|
|
|
|
|
|
return {
|
|
|
|
filename,
|
|
|
|
basePath,
|
|
|
|
existingThumbnail: playlist.Thumbnail,
|
|
|
|
outputPath: join(basePath, filename),
|
|
|
|
height: size ? size.height : THUMBNAILS_SIZE.height,
|
|
|
|
width: size ? size.width : THUMBNAILS_SIZE.width
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
function buildMetadataFromVideo (video: MVideoThumbnail, type: ThumbnailType_Type, size?: ImageSize) {
|
2019-04-17 10:07:00 +02:00
|
|
|
const existingThumbnail = Array.isArray(video.Thumbnails)
|
|
|
|
? video.Thumbnails.find(t => t.type === type)
|
|
|
|
: undefined
|
|
|
|
|
2019-04-23 09:50:57 +02:00
|
|
|
if (type === ThumbnailType.MINIATURE) {
|
2021-04-08 11:23:45 +02:00
|
|
|
const filename = generateImageFilename()
|
2019-04-17 10:07:00 +02:00
|
|
|
const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
|
|
|
|
|
|
|
|
return {
|
2023-10-19 14:18:22 +02:00
|
|
|
type,
|
2019-04-17 10:07:00 +02:00
|
|
|
filename,
|
|
|
|
basePath,
|
|
|
|
existingThumbnail,
|
|
|
|
outputPath: join(basePath, filename),
|
|
|
|
height: size ? size.height : THUMBNAILS_SIZE.height,
|
|
|
|
width: size ? size.width : THUMBNAILS_SIZE.width
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === ThumbnailType.PREVIEW) {
|
2021-04-08 11:23:45 +02:00
|
|
|
const filename = generateImageFilename()
|
2019-04-17 10:07:00 +02:00
|
|
|
const basePath = CONFIG.STORAGE.PREVIEWS_DIR
|
|
|
|
|
|
|
|
return {
|
2023-10-19 14:18:22 +02:00
|
|
|
type,
|
2019-04-17 10:07:00 +02:00
|
|
|
filename,
|
|
|
|
basePath,
|
|
|
|
existingThumbnail,
|
|
|
|
outputPath: join(basePath, filename),
|
|
|
|
height: size ? size.height : PREVIEWS_SIZE.height,
|
|
|
|
width: size ? size.width : PREVIEWS_SIZE.width
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2021-06-04 09:19:01 +02:00
|
|
|
async function updateThumbnailFromFunction (parameters: {
|
2020-01-31 16:56:52 +01:00
|
|
|
thumbnailCreator: () => Promise<any>
|
|
|
|
filename: string
|
|
|
|
height: number
|
|
|
|
width: number
|
2023-07-31 14:34:36 +02:00
|
|
|
type: ThumbnailType_Type
|
2023-06-06 15:59:51 +02:00
|
|
|
onDisk: boolean
|
2020-01-31 16:56:52 +01:00
|
|
|
automaticallyGenerated?: boolean
|
|
|
|
fileUrl?: string
|
2019-08-15 11:53:26 +02:00
|
|
|
existingThumbnail?: MThumbnail
|
2019-04-17 10:07:00 +02:00
|
|
|
}) {
|
2021-02-16 08:50:40 +01:00
|
|
|
const {
|
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
type,
|
|
|
|
existingThumbnail,
|
2023-06-06 15:59:51 +02:00
|
|
|
onDisk,
|
2021-02-16 08:50:40 +01:00
|
|
|
automaticallyGenerated = null,
|
|
|
|
fileUrl = null
|
|
|
|
} = parameters
|
|
|
|
|
2021-02-18 10:15:11 +01:00
|
|
|
const oldFilename = existingThumbnail && existingThumbnail.filename !== filename
|
2021-02-16 08:50:40 +01:00
|
|
|
? existingThumbnail.filename
|
|
|
|
: undefined
|
2021-02-15 14:08:16 +01:00
|
|
|
|
2021-02-16 08:50:40 +01:00
|
|
|
const thumbnail: MThumbnail = existingThumbnail || new ThumbnailModel()
|
2019-04-17 10:07:00 +02:00
|
|
|
|
|
|
|
thumbnail.filename = filename
|
|
|
|
thumbnail.height = height
|
|
|
|
thumbnail.width = width
|
|
|
|
thumbnail.type = type
|
2019-04-24 10:28:57 +02:00
|
|
|
thumbnail.fileUrl = fileUrl
|
2019-08-01 16:54:24 +02:00
|
|
|
thumbnail.automaticallyGenerated = automaticallyGenerated
|
2023-06-06 15:59:51 +02:00
|
|
|
thumbnail.onDisk = onDisk
|
2021-02-18 10:15:11 +01:00
|
|
|
|
|
|
|
if (oldFilename) thumbnail.previousThumbnailFilename = oldFilename
|
2019-04-17 10:07:00 +02:00
|
|
|
|
|
|
|
await thumbnailCreator()
|
|
|
|
|
|
|
|
return thumbnail
|
|
|
|
}
|
2023-10-19 14:18:22 +02:00
|
|
|
|
|
|
|
async function generateImageFromVideoFile (options: {
|
|
|
|
fromPath: string
|
|
|
|
folder: string
|
|
|
|
imageName: string
|
|
|
|
size: { width: number, height: number }
|
|
|
|
ffprobe?: FfprobeData
|
|
|
|
}) {
|
|
|
|
const { fromPath, folder, imageName, size, ffprobe } = options
|
|
|
|
|
|
|
|
const pendingImageName = 'pending-' + imageName
|
|
|
|
const pendingImagePath = join(folder, pendingImageName)
|
|
|
|
|
|
|
|
try {
|
2023-11-08 10:16:50 +01:00
|
|
|
const framesToAnalyze = CONFIG.THUMBNAILS.GENERATION_FROM_VIDEO.FRAMES_TO_ANALYZE
|
|
|
|
await generateThumbnailFromVideo({ fromPath, output: pendingImagePath, framesToAnalyze, ffprobe })
|
2023-10-19 14:18:22 +02:00
|
|
|
|
|
|
|
const destination = join(folder, imageName)
|
|
|
|
await processImageFromWorker({ path: pendingImagePath, destination, newSize: size })
|
|
|
|
|
|
|
|
return destination
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot generate image from video %s.', fromPath, { err, ...lTags() })
|
|
|
|
|
|
|
|
try {
|
|
|
|
await remove(pendingImagePath)
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot remove pending image path after generation error.', { err, ...lTags() })
|
|
|
|
}
|
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|