123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- import { generateImageFromVideoFile } from '../helpers/ffmpeg-utils'
- import { CONFIG } from '../initializers/config'
- import { ASSETS_PATH, PREVIEWS_SIZE, THUMBNAILS_SIZE } from '../initializers/constants'
- import { ThumbnailModel } from '../models/video/thumbnail'
- import { ThumbnailType } from '../../shared/models/videos/thumbnail.type'
- import { processImage } from '../helpers/image-utils'
- import { join } from 'path'
- import { downloadImage } from '../helpers/requests'
- import { MVideoPlaylistThumbnail } from '../types/models/video/video-playlist'
- import { MVideoFile, MVideoThumbnail } from '../types/models'
- import { MThumbnail } from '../types/models/video/thumbnail'
- import { getVideoFilePath } from './video-paths'
- type ImageSize = { height: number, width: number }
- function createPlaylistMiniatureFromExisting (
- inputPath: string,
- playlist: MVideoPlaylistThumbnail,
- automaticallyGenerated: boolean,
- keepOriginal = false,
- size?: ImageSize
- ) {
- const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
- const type = ThumbnailType.MINIATURE
- const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
- return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, automaticallyGenerated, existingThumbnail })
- }
- function createPlaylistMiniatureFromUrl (fileUrl: string, playlist: MVideoPlaylistThumbnail, size?: ImageSize) {
- const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
- const type = ThumbnailType.MINIATURE
- const thumbnailCreator = () => downloadImage(fileUrl, basePath, filename, { width, height })
- return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
- }
- function createVideoMiniatureFromUrl (fileUrl: string, video: MVideoThumbnail, type: ThumbnailType, size?: ImageSize) {
- const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
- const thumbnailCreator = () => downloadImage(fileUrl, basePath, filename, { width, height })
- return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
- }
- function createVideoMiniatureFromExisting (options: {
- inputPath: string
- video: MVideoThumbnail
- type: ThumbnailType
- automaticallyGenerated: boolean
- size?: ImageSize
- keepOriginal?: boolean
- }) {
- const { inputPath, video, type, automaticallyGenerated, size, keepOriginal } = options
- const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
- const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
- return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, automaticallyGenerated, existingThumbnail })
- }
- function generateVideoMiniature (video: MVideoThumbnail, videoFile: MVideoFile, type: ThumbnailType) {
- const input = getVideoFilePath(video, videoFile)
- 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 })
- return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, automaticallyGenerated: true, existingThumbnail })
- }
- function createPlaceholderThumbnail (fileUrl: string, video: MVideoThumbnail, type: ThumbnailType, size: ImageSize) {
- const { filename, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
- const thumbnail = existingThumbnail || new ThumbnailModel()
- thumbnail.filename = filename
- thumbnail.height = height
- thumbnail.width = width
- thumbnail.type = type
- thumbnail.fileUrl = fileUrl
- return thumbnail
- }
- // ---------------------------------------------------------------------------
- export {
- generateVideoMiniature,
- createVideoMiniatureFromUrl,
- createVideoMiniatureFromExisting,
- createPlaceholderThumbnail,
- createPlaylistMiniatureFromUrl,
- createPlaylistMiniatureFromExisting
- }
- function buildMetadataFromPlaylist (playlist: MVideoPlaylistThumbnail, size: ImageSize) {
- 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
- }
- }
- function buildMetadataFromVideo (video: MVideoThumbnail, type: ThumbnailType, size?: ImageSize) {
- const existingThumbnail = Array.isArray(video.Thumbnails)
- ? video.Thumbnails.find(t => t.type === type)
- : undefined
- if (type === ThumbnailType.MINIATURE) {
- 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: {
- thumbnailCreator: () => Promise<any>
- filename: string
- height: number
- width: number
- type: ThumbnailType
- automaticallyGenerated?: boolean
- fileUrl?: string
- existingThumbnail?: MThumbnail
- }) {
- const { thumbnailCreator, filename, width, height, type, existingThumbnail, automaticallyGenerated = null, fileUrl = null } = parameters
- const thumbnail = existingThumbnail || new ThumbnailModel()
- thumbnail.filename = filename
- thumbnail.height = height
- thumbnail.width = width
- thumbnail.type = type
- thumbnail.fileUrl = fileUrl
- thumbnail.automaticallyGenerated = automaticallyGenerated
- await thumbnailCreator()
- return thumbnail
- }
|