2021-02-16 04:19:09 -05:00
|
|
|
import { copy } from 'fs-extra'
|
2021-02-16 02:50:40 -05:00
|
|
|
import { join } from 'path'
|
|
|
|
import { ThumbnailType } from '../../shared/models/videos/thumbnail.type'
|
2019-04-17 04:07:00 -04:00
|
|
|
import { generateImageFromVideoFile } from '../helpers/ffmpeg-utils'
|
2021-02-16 02:50:40 -05:00
|
|
|
import { processImage } from '../helpers/image-utils'
|
|
|
|
import { downloadImage } from '../helpers/requests'
|
2019-04-17 04:07:00 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { ASSETS_PATH, PREVIEWS_SIZE, THUMBNAILS_SIZE } from '../initializers/constants'
|
2019-04-17 04:07:00 -04:00
|
|
|
import { ThumbnailModel } from '../models/video/thumbnail'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { MVideoFile, MVideoThumbnail } from '../types/models'
|
|
|
|
import { MThumbnail } from '../types/models/video/thumbnail'
|
2021-02-16 02:50:40 -05:00
|
|
|
import { MVideoPlaylistThumbnail } from '../types/models/video/video-playlist'
|
2019-11-15 09:06:03 -05:00
|
|
|
import { getVideoFilePath } from './video-paths'
|
2019-04-17 04:07:00 -04:00
|
|
|
|
|
|
|
type ImageSize = { height: number, width: number }
|
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
function createPlaylistMiniatureFromExisting (options: {
|
|
|
|
inputPath: string
|
|
|
|
playlist: MVideoPlaylistThumbnail
|
|
|
|
automaticallyGenerated: boolean
|
|
|
|
keepOriginal?: boolean // default to false
|
2019-08-01 10:54:24 -04:00
|
|
|
size?: ImageSize
|
2021-02-16 02:50:40 -05:00
|
|
|
}) {
|
|
|
|
const { inputPath, playlist, automaticallyGenerated, keepOriginal = false, size } = options
|
2019-04-17 04:07:00 -04:00
|
|
|
const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
|
2019-04-23 03:50:57 -04:00
|
|
|
const type = ThumbnailType.MINIATURE
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2019-04-24 03:56:25 -04:00
|
|
|
const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
|
2021-02-16 02:50:40 -05:00
|
|
|
return createThumbnailFromFunction({
|
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
type,
|
|
|
|
automaticallyGenerated,
|
|
|
|
existingThumbnail
|
|
|
|
})
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
function createPlaylistMiniatureFromUrl (options: {
|
|
|
|
downloadUrl: string
|
|
|
|
playlist: MVideoPlaylistThumbnail
|
|
|
|
size?: ImageSize
|
|
|
|
}) {
|
|
|
|
const { downloadUrl, playlist, size } = options
|
2019-04-17 04:07:00 -04:00
|
|
|
const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
|
2019-04-23 03:50:57 -04:00
|
|
|
const type = ThumbnailType.MINIATURE
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
// Only save the file URL if it is a remote playlist
|
|
|
|
const fileUrl = playlist.isOwned()
|
|
|
|
? null
|
|
|
|
: downloadUrl
|
|
|
|
|
|
|
|
const thumbnailCreator = () => downloadImage(downloadUrl, basePath, filename, { width, height })
|
2019-04-24 04:28:57 -04:00
|
|
|
return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
function createVideoMiniatureFromUrl (options: {
|
|
|
|
downloadUrl: string
|
|
|
|
video: MVideoThumbnail
|
|
|
|
type: ThumbnailType
|
|
|
|
size?: ImageSize
|
|
|
|
}) {
|
|
|
|
const { downloadUrl, video, type, size } = options
|
2019-04-17 04:07:00 -04:00
|
|
|
const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
|
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
// Only save the file URL if it is a remote video
|
|
|
|
const fileUrl = video.isOwned()
|
|
|
|
? null
|
|
|
|
: downloadUrl
|
|
|
|
|
2021-02-16 03:42:22 -05:00
|
|
|
// If the thumbnail URL did not change
|
|
|
|
const existingUrl = existingThumbnail
|
|
|
|
? existingThumbnail.fileUrl
|
|
|
|
: null
|
|
|
|
|
|
|
|
// If the thumbnail URL did not change and has a unique filename (introduced in 3.2), avoid thumbnail processing
|
|
|
|
const thumbnailUrlChanged = !existingUrl || existingUrl !== downloadUrl || downloadUrl.endsWith(`${video.uuid}.jpg`)
|
|
|
|
const thumbnailCreator = () => {
|
|
|
|
if (thumbnailUrlChanged) return downloadImage(downloadUrl, basePath, filename, { width, height })
|
|
|
|
|
|
|
|
return copy(existingThumbnail.getPath(), ThumbnailModel.buildPath(type, filename))
|
|
|
|
}
|
|
|
|
|
2019-04-24 04:28:57 -04:00
|
|
|
return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2020-09-17 04:00:46 -04:00
|
|
|
function createVideoMiniatureFromExisting (options: {
|
|
|
|
inputPath: string
|
|
|
|
video: MVideoThumbnail
|
|
|
|
type: ThumbnailType
|
|
|
|
automaticallyGenerated: boolean
|
2019-08-01 10:54:24 -04:00
|
|
|
size?: ImageSize
|
2021-02-16 02:50:40 -05:00
|
|
|
keepOriginal?: boolean // default to false
|
2020-09-17 04:00:46 -04:00
|
|
|
}) {
|
2021-02-16 02:50:40 -05:00
|
|
|
const { inputPath, video, type, automaticallyGenerated, size, keepOriginal = false } = options
|
2020-09-17 04:00:46 -04:00
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
|
2020-09-17 04:00:46 -04:00
|
|
|
const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
return createThumbnailFromFunction({
|
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
type,
|
|
|
|
automaticallyGenerated,
|
|
|
|
existingThumbnail
|
|
|
|
})
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
function generateVideoMiniature (options: {
|
|
|
|
video: MVideoThumbnail
|
|
|
|
videoFile: MVideoFile
|
|
|
|
type: ThumbnailType
|
|
|
|
}) {
|
|
|
|
const { video, videoFile, type } = options
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const input = getVideoFilePath(video, videoFile)
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const { filename, basePath, height, width, existingThumbnail, outputPath } = buildMetadataFromVideo(video, type)
|
|
|
|
const thumbnailCreator = videoFile.isAudio()
|
|
|
|
? () => processImage(ASSETS_PATH.DEFAULT_AUDIO_BACKGROUND, outputPath, { width, height }, true)
|
|
|
|
: () => generateImageFromVideoFile(input, basePath, filename, { height, width })
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
return createThumbnailFromFunction({
|
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
type,
|
|
|
|
automaticallyGenerated: true,
|
|
|
|
existingThumbnail
|
|
|
|
})
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
function createPlaceholderThumbnail (options: {
|
|
|
|
fileUrl: string
|
|
|
|
video: MVideoThumbnail
|
|
|
|
type: ThumbnailType
|
|
|
|
size: ImageSize
|
|
|
|
}) {
|
|
|
|
const { fileUrl, video, type, size } = options
|
2019-04-17 04:07:00 -04:00
|
|
|
const { filename, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const thumbnail = existingThumbnail || new ThumbnailModel()
|
2019-04-17 04:07:00 -04:00
|
|
|
|
|
|
|
thumbnail.filename = filename
|
|
|
|
thumbnail.height = height
|
|
|
|
thumbnail.width = width
|
|
|
|
thumbnail.type = type
|
2019-04-24 04:28:57 -04:00
|
|
|
thumbnail.fileUrl = fileUrl
|
2019-04-17 04:07:00 -04:00
|
|
|
|
|
|
|
return thumbnail
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-04-23 03:50:57 -04:00
|
|
|
generateVideoMiniature,
|
|
|
|
createVideoMiniatureFromUrl,
|
|
|
|
createVideoMiniatureFromExisting,
|
2019-04-17 04:07:00 -04:00
|
|
|
createPlaceholderThumbnail,
|
2019-04-23 03:50:57 -04:00
|
|
|
createPlaylistMiniatureFromUrl,
|
|
|
|
createPlaylistMiniatureFromExisting
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function buildMetadataFromPlaylist (playlist: MVideoPlaylistThumbnail, size: ImageSize) {
|
2019-04-17 04:07:00 -04: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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function buildMetadataFromVideo (video: MVideoThumbnail, type: ThumbnailType, size?: ImageSize) {
|
2019-04-17 04:07:00 -04:00
|
|
|
const existingThumbnail = Array.isArray(video.Thumbnails)
|
|
|
|
? video.Thumbnails.find(t => t.type === type)
|
|
|
|
: undefined
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
if (type === ThumbnailType.MINIATURE) {
|
2019-04-17 04:07:00 -04:00
|
|
|
const filename = video.generateThumbnailName()
|
|
|
|
const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
|
|
|
|
|
|
|
|
return {
|
|
|
|
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) {
|
|
|
|
const filename = video.generatePreviewName()
|
|
|
|
const basePath = CONFIG.STORAGE.PREVIEWS_DIR
|
|
|
|
|
|
|
|
return {
|
|
|
|
filename,
|
|
|
|
basePath,
|
|
|
|
existingThumbnail,
|
|
|
|
outputPath: join(basePath, filename),
|
|
|
|
height: size ? size.height : PREVIEWS_SIZE.height,
|
|
|
|
width: size ? size.width : PREVIEWS_SIZE.width
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
async function createThumbnailFromFunction (parameters: {
|
2020-01-31 10:56:52 -05:00
|
|
|
thumbnailCreator: () => Promise<any>
|
|
|
|
filename: string
|
|
|
|
height: number
|
|
|
|
width: number
|
|
|
|
type: ThumbnailType
|
|
|
|
automaticallyGenerated?: boolean
|
|
|
|
fileUrl?: string
|
2019-08-15 05:53:26 -04:00
|
|
|
existingThumbnail?: MThumbnail
|
2019-04-17 04:07:00 -04:00
|
|
|
}) {
|
2021-02-16 02:50:40 -05:00
|
|
|
const {
|
|
|
|
thumbnailCreator,
|
|
|
|
filename,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
type,
|
|
|
|
existingThumbnail,
|
|
|
|
automaticallyGenerated = null,
|
|
|
|
fileUrl = null
|
|
|
|
} = parameters
|
|
|
|
|
|
|
|
const oldFilename = existingThumbnail
|
|
|
|
? existingThumbnail.filename
|
|
|
|
: undefined
|
2021-02-15 08:08:16 -05:00
|
|
|
|
2021-02-16 02:50:40 -05:00
|
|
|
const thumbnail: MThumbnail = existingThumbnail || new ThumbnailModel()
|
2019-04-17 04:07:00 -04:00
|
|
|
|
|
|
|
thumbnail.filename = filename
|
|
|
|
thumbnail.height = height
|
|
|
|
thumbnail.width = width
|
|
|
|
thumbnail.type = type
|
2019-04-24 04:28:57 -04:00
|
|
|
thumbnail.fileUrl = fileUrl
|
2019-08-01 10:54:24 -04:00
|
|
|
thumbnail.automaticallyGenerated = automaticallyGenerated
|
2021-02-16 02:50:40 -05:00
|
|
|
thumbnail.previousThumbnailFilename = oldFilename
|
2019-04-17 04:07:00 -04:00
|
|
|
|
|
|
|
await thumbnailCreator()
|
|
|
|
|
|
|
|
return thumbnail
|
|
|
|
}
|