1 import { join } from 'path'
3 import { ThumbnailType } from '../../shared/models/videos/thumbnail.type'
4 import { generateImageFromVideoFile } from '../helpers/ffmpeg-utils'
5 import { generateImageFilename, processImage } from '../helpers/image-utils'
6 import { downloadImage } from '../helpers/requests'
7 import { CONFIG } from '../initializers/config'
8 import { ASSETS_PATH, PREVIEWS_SIZE, THUMBNAILS_SIZE } from '../initializers/constants'
9 import { ThumbnailModel } from '../models/video/thumbnail'
10 import { MVideoFile, MVideoThumbnail, MVideoUUID } from '../types/models'
11 import { MThumbnail } from '../types/models/video/thumbnail'
12 import { MVideoPlaylistThumbnail } from '../types/models/video/video-playlist'
13 import { getVideoFilePath } from './video-paths'
15 type ImageSize = { height?: number, width?: number }
17 function createPlaylistMiniatureFromExisting (options: {
19 playlist: MVideoPlaylistThumbnail
20 automaticallyGenerated: boolean
21 keepOriginal?: boolean // default to false
24 const { inputPath, playlist, automaticallyGenerated, keepOriginal = false, size } = options
25 const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
26 const type = ThumbnailType.MINIATURE
28 const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
29 return createThumbnailFromFunction({
35 automaticallyGenerated,
40 function createPlaylistMiniatureFromUrl (options: {
42 playlist: MVideoPlaylistThumbnail
45 const { downloadUrl, playlist, size } = options
46 const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
47 const type = ThumbnailType.MINIATURE
49 // Only save the file URL if it is a remote playlist
50 const fileUrl = playlist.isOwned()
54 const thumbnailCreator = () => downloadImage(downloadUrl, basePath, filename, { width, height })
55 return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
58 function createVideoMiniatureFromUrl (options: {
60 video: MVideoThumbnail
64 const { downloadUrl, video, type, size } = options
65 const { filename: updatedFilename, basePath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
67 // Only save the file URL if it is a remote video
68 const fileUrl = video.isOwned()
72 const thumbnailUrlChanged = hasThumbnailUrlChanged(existingThumbnail, downloadUrl, video)
74 // Do not change the thumbnail filename if the file did not change
75 const filename = thumbnailUrlChanged
77 : existingThumbnail.filename
79 const thumbnailCreator = () => {
80 if (thumbnailUrlChanged) return downloadImage(downloadUrl, basePath, filename, { width, height })
82 return Promise.resolve()
85 return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
88 function createVideoMiniatureFromExisting (options: {
90 video: MVideoThumbnail
92 automaticallyGenerated: boolean
94 keepOriginal?: boolean // default to false
96 const { inputPath, video, type, automaticallyGenerated, size, keepOriginal = false } = options
98 const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
99 const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
101 return createThumbnailFromFunction({
107 automaticallyGenerated,
112 function generateVideoMiniature (options: {
113 video: MVideoThumbnail
114 videoFile: MVideoFile
117 const { video, videoFile, type } = options
119 const input = getVideoFilePath(video, videoFile)
121 const { filename, basePath, height, width, existingThumbnail, outputPath } = buildMetadataFromVideo(video, type)
122 const thumbnailCreator = videoFile.isAudio()
123 ? () => processImage(ASSETS_PATH.DEFAULT_AUDIO_BACKGROUND, outputPath, { width, height }, true)
124 : () => generateImageFromVideoFile(input, basePath, filename, { height, width })
126 return createThumbnailFromFunction({
132 automaticallyGenerated: true,
137 function createPlaceholderThumbnail (options: {
139 video: MVideoThumbnail
143 const { fileUrl, video, type, size } = options
144 const { filename: updatedFilename, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
146 const thumbnailUrlChanged = hasThumbnailUrlChanged(existingThumbnail, fileUrl, video)
148 const thumbnail = existingThumbnail || new ThumbnailModel()
150 // Do not change the thumbnail filename if the file did not change
151 const filename = thumbnailUrlChanged
153 : existingThumbnail.filename
155 thumbnail.filename = filename
156 thumbnail.height = height
157 thumbnail.width = width
158 thumbnail.type = type
159 thumbnail.fileUrl = fileUrl
164 // ---------------------------------------------------------------------------
167 generateVideoMiniature,
168 createVideoMiniatureFromUrl,
169 createVideoMiniatureFromExisting,
170 createPlaceholderThumbnail,
171 createPlaylistMiniatureFromUrl,
172 createPlaylistMiniatureFromExisting
175 function hasThumbnailUrlChanged (existingThumbnail: MThumbnail, downloadUrl: string, video: MVideoUUID) {
176 const existingUrl = existingThumbnail
177 ? existingThumbnail.fileUrl
180 // If the thumbnail URL did not change and has a unique filename (introduced in 3.1), avoid thumbnail processing
181 return !existingUrl || existingUrl !== downloadUrl || downloadUrl.endsWith(`${video.uuid}.jpg`)
184 function buildMetadataFromPlaylist (playlist: MVideoPlaylistThumbnail, size: ImageSize) {
185 const filename = playlist.generateThumbnailName()
186 const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
191 existingThumbnail: playlist.Thumbnail,
192 outputPath: join(basePath, filename),
193 height: size ? size.height : THUMBNAILS_SIZE.height,
194 width: size ? size.width : THUMBNAILS_SIZE.width
198 function buildMetadataFromVideo (video: MVideoThumbnail, type: ThumbnailType, size?: ImageSize) {
199 const existingThumbnail = Array.isArray(video.Thumbnails)
200 ? video.Thumbnails.find(t => t.type === type)
203 if (type === ThumbnailType.MINIATURE) {
204 const filename = generateImageFilename()
205 const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
211 outputPath: join(basePath, filename),
212 height: size ? size.height : THUMBNAILS_SIZE.height,
213 width: size ? size.width : THUMBNAILS_SIZE.width
217 if (type === ThumbnailType.PREVIEW) {
218 const filename = generateImageFilename()
219 const basePath = CONFIG.STORAGE.PREVIEWS_DIR
225 outputPath: join(basePath, filename),
226 height: size ? size.height : PREVIEWS_SIZE.height,
227 width: size ? size.width : PREVIEWS_SIZE.width
234 async function createThumbnailFromFunction (parameters: {
235 thumbnailCreator: () => Promise<any>
240 automaticallyGenerated?: boolean
242 existingThumbnail?: MThumbnail
251 automaticallyGenerated = null,
255 const oldFilename = existingThumbnail && existingThumbnail.filename !== filename
256 ? existingThumbnail.filename
259 const thumbnail: MThumbnail = existingThumbnail || new ThumbnailModel()
261 thumbnail.filename = filename
262 thumbnail.height = height
263 thumbnail.width = width
264 thumbnail.type = type
265 thumbnail.fileUrl = fileUrl
266 thumbnail.automaticallyGenerated = automaticallyGenerated
268 if (oldFilename) thumbnail.previousThumbnailFilename = oldFilename
270 await thumbnailCreator()