2022-10-12 10:09:02 -04:00
|
|
|
import { MutexInterface } from 'async-mutex'
|
2022-08-08 04:42:08 -04:00
|
|
|
import { Job } from 'bullmq'
|
2020-12-04 09:10:13 -05:00
|
|
|
import { copyFile, ensureDir, move, remove, stat } from 'fs-extra'
|
2019-11-15 09:06:03 -05:00
|
|
|
import { basename, extname as extnameUtil, join } from 'path'
|
2021-06-08 05:28:51 -04:00
|
|
|
import { toEven } from '@server/helpers/core-utils'
|
2022-07-25 04:57:16 -04:00
|
|
|
import { retryTransactionWrapper } from '@server/helpers/database-utils'
|
2020-11-06 04:57:40 -05:00
|
|
|
import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
|
2022-07-25 04:57:16 -04:00
|
|
|
import { sequelizeTypescript } from '@server/initializers/database'
|
2022-07-29 08:50:41 -04:00
|
|
|
import { MVideo, MVideoFile, MVideoFullLight } from '@server/types/models'
|
2022-10-12 10:09:02 -04:00
|
|
|
import { pick } from '@shared/core-utils'
|
2021-08-17 02:26:20 -04:00
|
|
|
import { VideoResolution, VideoStorage } from '../../../shared/models/videos'
|
2022-02-11 04:51:33 -05:00
|
|
|
import {
|
2022-04-21 03:06:52 -04:00
|
|
|
buildFileMetadata,
|
2022-02-11 04:51:33 -05:00
|
|
|
canDoQuickTranscode,
|
2022-08-05 04:36:19 -04:00
|
|
|
computeResolutionsToTranscode,
|
2022-10-12 10:09:02 -04:00
|
|
|
ffprobePromise,
|
2022-02-11 04:51:33 -05:00
|
|
|
getVideoStreamDuration,
|
|
|
|
getVideoStreamFPS,
|
|
|
|
transcodeVOD,
|
|
|
|
TranscodeVODOptions,
|
|
|
|
TranscodeVODOptionsType
|
|
|
|
} from '../../helpers/ffmpeg'
|
2021-05-11 04:57:25 -04:00
|
|
|
import { CONFIG } from '../../initializers/config'
|
|
|
|
import { VideoFileModel } from '../../models/video/video-file'
|
|
|
|
import { VideoStreamingPlaylistModel } from '../../models/video/video-streaming-playlist'
|
2022-07-29 08:50:41 -04:00
|
|
|
import { updatePlaylistAfterFileChange } from '../hls'
|
|
|
|
import { generateHLSVideoFilename, generateWebTorrentVideoFilename, getHlsResolutionPlaylistFilename } from '../paths'
|
2021-08-17 02:26:20 -04:00
|
|
|
import { VideoPathManager } from '../video-path-manager'
|
2022-02-11 04:51:33 -05:00
|
|
|
import { VideoTranscodingProfilesManager } from './default-transcoding-profiles'
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-13 07:02:42 -04:00
|
|
|
/**
|
2020-11-24 10:29:39 -05:00
|
|
|
*
|
|
|
|
* Functions that run transcoding functions, update the database, cleanup files, create torrent files...
|
|
|
|
* Mainly called by the job queue
|
|
|
|
*
|
2019-05-13 07:02:42 -04:00
|
|
|
*/
|
2020-11-24 10:29:39 -05:00
|
|
|
|
|
|
|
// Optimize the original video file and replace it. The resolution is not changed.
|
2022-10-12 10:09:02 -04:00
|
|
|
async function optimizeOriginalVideofile (options: {
|
2022-08-05 04:36:19 -04:00
|
|
|
video: MVideoFullLight
|
|
|
|
inputVideoFile: MVideoFile
|
|
|
|
job: Job
|
|
|
|
}) {
|
|
|
|
const { video, inputVideoFile, job } = options
|
|
|
|
|
2019-05-13 01:26:56 -04:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2018-09-18 05:02:51 -04:00
|
|
|
const newExtname = '.mp4'
|
2018-10-08 10:50:56 -04:00
|
|
|
|
2022-10-31 06:45:08 -04:00
|
|
|
// Will be released by our transcodeVOD function once ffmpeg is ran
|
2022-10-12 10:09:02 -04:00
|
|
|
const inputFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
try {
|
|
|
|
await video.reload()
|
2019-04-24 14:27:05 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const fileWithVideoOrPlaylist = inputVideoFile.withVideoOrPlaylist(video)
|
2021-06-08 05:28:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const result = await VideoPathManager.Instance.makeAvailableVideoFile(fileWithVideoOrPlaylist, async videoInputPath => {
|
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const transcodeType: TranscodeVODOptionsType = await canDoQuickTranscode(videoInputPath)
|
|
|
|
? 'quick-transcode'
|
|
|
|
: 'video'
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const resolution = buildOriginalFileResolution(inputVideoFile.resolution)
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const transcodeOptions: TranscodeVODOptions = {
|
|
|
|
type: transcodeType,
|
2021-01-21 08:42:43 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
resolution,
|
2019-05-13 01:26:56 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
job
|
|
|
|
}
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
// Could be very long!
|
|
|
|
await transcodeVOD(transcodeOptions)
|
|
|
|
|
|
|
|
// Important to do this before getVideoFilename() to take in account the new filename
|
|
|
|
inputVideoFile.resolution = resolution
|
|
|
|
inputVideoFile.extname = newExtname
|
|
|
|
inputVideoFile.filename = generateWebTorrentVideoFilename(resolution, newExtname)
|
|
|
|
inputVideoFile.storage = VideoStorage.FILE_SYSTEM
|
|
|
|
|
|
|
|
const { videoFile } = await onWebTorrentVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, inputVideoFile)
|
|
|
|
await remove(videoInputPath)
|
|
|
|
|
|
|
|
return { transcodeType, videoFile }
|
|
|
|
})
|
|
|
|
|
|
|
|
return result
|
|
|
|
} finally {
|
|
|
|
inputFileMutexReleaser()
|
|
|
|
}
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
2022-08-05 04:36:19 -04:00
|
|
|
// Transcode the original video file to a lower resolution compatible with WebTorrent
|
2022-10-12 10:09:02 -04:00
|
|
|
async function transcodeNewWebTorrentResolution (options: {
|
2022-08-05 04:36:19 -04:00
|
|
|
video: MVideoFullLight
|
|
|
|
resolution: VideoResolution
|
|
|
|
job: Job
|
|
|
|
}) {
|
|
|
|
const { video, resolution, job } = options
|
|
|
|
|
2019-05-13 01:26:56 -04:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2022-08-05 04:36:19 -04:00
|
|
|
const newExtname = '.mp4'
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const inputFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
try {
|
|
|
|
await video.reload()
|
2021-02-16 10:25:53 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const file = video.getMaxQualityFile().withVideoOrPlaylist(video)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const result = await VideoPathManager.Instance.makeAvailableVideoFile(file, async videoInputPath => {
|
|
|
|
const newVideoFile = new VideoFileModel({
|
|
|
|
resolution,
|
|
|
|
extname: newExtname,
|
|
|
|
filename: generateWebTorrentVideoFilename(resolution, newExtname),
|
|
|
|
size: 0,
|
|
|
|
videoId: video.id
|
|
|
|
})
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const videoTranscodedPath = join(transcodeDirectory, newVideoFile.filename)
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const transcodeOptions = resolution === VideoResolution.H_NOVIDEO
|
|
|
|
? {
|
|
|
|
type: 'only-audio' as 'only-audio',
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2021-01-21 08:42:43 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser,
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
resolution,
|
2021-01-21 08:42:43 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
job
|
|
|
|
}
|
|
|
|
: {
|
|
|
|
type: 'video' as 'video',
|
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser,
|
|
|
|
|
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
|
|
|
|
|
|
|
resolution,
|
|
|
|
|
|
|
|
job
|
|
|
|
}
|
|
|
|
|
|
|
|
await transcodeVOD(transcodeOptions)
|
|
|
|
|
|
|
|
return onWebTorrentVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, newVideoFile)
|
|
|
|
})
|
|
|
|
|
|
|
|
return result
|
|
|
|
} finally {
|
|
|
|
inputFileMutexReleaser()
|
|
|
|
}
|
2019-05-16 10:55:34 -04:00
|
|
|
}
|
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
// Merge an image with an audio file to create a video
|
2022-10-12 10:09:02 -04:00
|
|
|
async function mergeAudioVideofile (options: {
|
2022-08-05 04:36:19 -04:00
|
|
|
video: MVideoFullLight
|
|
|
|
resolution: VideoResolution
|
|
|
|
job: Job
|
|
|
|
}) {
|
|
|
|
const { video, resolution, job } = options
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
|
|
|
const newExtname = '.mp4'
|
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const inputFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
2019-05-13 01:26:56 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
try {
|
|
|
|
await video.reload()
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const inputVideoFile = video.getMinQualityFile()
|
2019-10-18 05:44:01 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const fileWithVideoOrPlaylist = inputVideoFile.withVideoOrPlaylist(video)
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const result = await VideoPathManager.Instance.makeAvailableVideoFile(fileWithVideoOrPlaylist, async audioInputPath => {
|
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
// If the user updates the video preview during transcoding
|
|
|
|
const previewPath = video.getPreview().getPath()
|
|
|
|
const tmpPreviewPath = join(CONFIG.STORAGE.TMP_DIR, basename(previewPath))
|
|
|
|
await copyFile(previewPath, tmpPreviewPath)
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const transcodeOptions = {
|
|
|
|
type: 'merge-audio' as 'merge-audio',
|
2021-01-21 08:42:43 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputPath: tmpPreviewPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
audioPath: audioInputPath,
|
|
|
|
resolution,
|
2019-05-16 10:55:34 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
job
|
|
|
|
}
|
2019-05-16 10:55:34 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
try {
|
|
|
|
await transcodeVOD(transcodeOptions)
|
|
|
|
|
|
|
|
await remove(audioInputPath)
|
|
|
|
await remove(tmpPreviewPath)
|
|
|
|
} catch (err) {
|
|
|
|
await remove(tmpPreviewPath)
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Important to do this before getVideoFilename() to take in account the new file extension
|
|
|
|
inputVideoFile.extname = newExtname
|
|
|
|
inputVideoFile.resolution = resolution
|
|
|
|
inputVideoFile.filename = generateWebTorrentVideoFilename(inputVideoFile.resolution, newExtname)
|
|
|
|
|
|
|
|
// ffmpeg generated a new video file, so update the video duration
|
|
|
|
// See https://trac.ffmpeg.org/ticket/5456
|
|
|
|
video.duration = await getVideoStreamDuration(videoTranscodedPath)
|
|
|
|
await video.save()
|
|
|
|
|
|
|
|
return onWebTorrentVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, inputVideoFile)
|
|
|
|
})
|
|
|
|
|
|
|
|
return result
|
|
|
|
} finally {
|
|
|
|
inputFileMutexReleaser()
|
|
|
|
}
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
2020-12-02 04:07:26 -05:00
|
|
|
// Concat TS segments from a live video to a fragmented mp4 HLS playlist
|
2021-01-21 09:58:17 -05:00
|
|
|
async function generateHlsPlaylistResolutionFromTS (options: {
|
2022-04-21 03:06:52 -04:00
|
|
|
video: MVideo
|
2020-12-04 09:10:13 -05:00
|
|
|
concatenatedTsFilePath: string
|
2020-12-02 04:07:26 -05:00
|
|
|
resolution: VideoResolution
|
2020-12-04 09:29:18 -05:00
|
|
|
isAAC: boolean
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser: MutexInterface.Releaser
|
2020-12-02 04:07:26 -05:00
|
|
|
}) {
|
2020-12-04 09:10:13 -05:00
|
|
|
return generateHlsPlaylistCommon({
|
2020-12-04 09:29:18 -05:00
|
|
|
type: 'hls-from-ts' as 'hls-from-ts',
|
2022-10-12 10:09:02 -04:00
|
|
|
inputPath: options.concatenatedTsFilePath,
|
|
|
|
|
|
|
|
...pick(options, [ 'video', 'resolution', 'inputFileMutexReleaser', 'isAAC' ])
|
2020-12-04 09:10:13 -05:00
|
|
|
})
|
2020-12-02 04:07:26 -05:00
|
|
|
}
|
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
// Generate an HLS playlist from an input file, and update the master playlist
|
2021-01-21 09:58:17 -05:00
|
|
|
function generateHlsPlaylistResolution (options: {
|
2022-04-21 03:06:52 -04:00
|
|
|
video: MVideo
|
2020-10-26 11:44:23 -04:00
|
|
|
videoInputPath: string
|
|
|
|
resolution: VideoResolution
|
|
|
|
copyCodecs: boolean
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser: MutexInterface.Releaser
|
2021-01-21 08:42:43 -05:00
|
|
|
job?: Job
|
2020-10-26 11:44:23 -04:00
|
|
|
}) {
|
2020-12-02 04:07:26 -05:00
|
|
|
return generateHlsPlaylistCommon({
|
2021-01-21 08:42:43 -05:00
|
|
|
type: 'hls' as 'hls',
|
2022-10-12 10:09:02 -04:00
|
|
|
inputPath: options.videoInputPath,
|
|
|
|
|
|
|
|
...pick(options, [ 'video', 'resolution', 'copyCodecs', 'inputFileMutexReleaser', 'job' ])
|
2020-12-02 04:07:26 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-01-21 09:58:17 -05:00
|
|
|
generateHlsPlaylistResolution,
|
|
|
|
generateHlsPlaylistResolutionFromTS,
|
2020-12-02 04:07:26 -05:00
|
|
|
optimizeOriginalVideofile,
|
2021-01-21 09:58:17 -05:00
|
|
|
transcodeNewWebTorrentResolution,
|
2021-05-11 04:54:05 -04:00
|
|
|
mergeAudioVideofile
|
2020-12-02 04:07:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-01-21 09:58:17 -05:00
|
|
|
async function onWebTorrentVideoFileTranscoding (
|
2021-02-16 10:25:53 -05:00
|
|
|
video: MVideoFullLight,
|
2021-01-21 09:58:17 -05:00
|
|
|
videoFile: MVideoFile,
|
|
|
|
transcodingPath: string,
|
2022-10-12 10:09:02 -04:00
|
|
|
newVideoFile: MVideoFile
|
2021-01-21 09:58:17 -05:00
|
|
|
) {
|
2022-10-12 10:09:02 -04:00
|
|
|
const mutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
|
|
|
|
|
|
|
try {
|
|
|
|
await video.reload()
|
|
|
|
|
|
|
|
const outputPath = VideoPathManager.Instance.getFSVideoFileOutputPath(video, newVideoFile)
|
2020-12-02 04:07:26 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const stats = await stat(transcodingPath)
|
2020-12-02 04:07:26 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const probe = await ffprobePromise(transcodingPath)
|
|
|
|
const fps = await getVideoStreamFPS(transcodingPath, probe)
|
|
|
|
const metadata = await buildFileMetadata(transcodingPath, probe)
|
2020-12-02 04:07:26 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
await move(transcodingPath, outputPath, { overwrite: true })
|
2020-12-02 04:07:26 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
videoFile.size = stats.size
|
|
|
|
videoFile.fps = fps
|
|
|
|
videoFile.metadata = metadata
|
2022-07-25 04:57:16 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
await createTorrentAndSetInfoHash(video, videoFile)
|
2020-12-02 04:07:26 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const oldFile = await VideoFileModel.loadWebTorrentFile({ videoId: video.id, fps: videoFile.fps, resolution: videoFile.resolution })
|
|
|
|
if (oldFile) await video.removeWebTorrentFile(oldFile)
|
|
|
|
|
|
|
|
await VideoFileModel.customUpsert(videoFile, 'video', undefined)
|
|
|
|
video.VideoFiles = await video.$get('VideoFiles')
|
|
|
|
|
|
|
|
return { video, videoFile }
|
|
|
|
} finally {
|
|
|
|
mutexReleaser()
|
|
|
|
}
|
2020-12-02 04:07:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async function generateHlsPlaylistCommon (options: {
|
|
|
|
type: 'hls' | 'hls-from-ts'
|
2022-04-21 03:06:52 -04:00
|
|
|
video: MVideo
|
2020-12-02 04:07:26 -05:00
|
|
|
inputPath: string
|
|
|
|
resolution: VideoResolution
|
2022-10-12 10:09:02 -04:00
|
|
|
|
|
|
|
inputFileMutexReleaser: MutexInterface.Releaser
|
|
|
|
|
2020-12-02 04:07:26 -05:00
|
|
|
copyCodecs?: boolean
|
2020-12-04 09:29:18 -05:00
|
|
|
isAAC?: boolean
|
2021-01-21 08:42:43 -05:00
|
|
|
|
|
|
|
job?: Job
|
2020-12-02 04:07:26 -05:00
|
|
|
}) {
|
2022-10-12 10:09:02 -04:00
|
|
|
const { type, video, inputPath, resolution, copyCodecs, isAAC, job, inputFileMutexReleaser } = options
|
2021-02-02 05:50:29 -05:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2020-10-26 11:44:23 -04:00
|
|
|
|
2021-02-08 04:51:10 -05:00
|
|
|
const videoTranscodedBasePath = join(transcodeDirectory, type)
|
2021-02-02 05:50:29 -05:00
|
|
|
await ensureDir(videoTranscodedBasePath)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
const videoFilename = generateHLSVideoFilename(resolution)
|
2021-07-23 05:20:00 -04:00
|
|
|
const resolutionPlaylistFilename = getHlsResolutionPlaylistFilename(videoFilename)
|
|
|
|
const resolutionPlaylistFileTranscodePath = join(videoTranscodedBasePath, resolutionPlaylistFilename)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
const transcodeOptions = {
|
2020-12-02 04:07:26 -05:00
|
|
|
type,
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2020-12-02 04:07:26 -05:00
|
|
|
inputPath,
|
2021-07-23 05:20:00 -04:00
|
|
|
outputPath: resolutionPlaylistFileTranscodePath,
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2021-01-28 03:37:26 -05:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
2021-01-28 09:52:44 -05:00
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 10:23:52 -05:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
resolution,
|
2019-11-15 09:06:03 -05:00
|
|
|
copyCodecs,
|
2019-02-07 09:08:19 -05:00
|
|
|
|
2020-12-04 09:29:18 -05:00
|
|
|
isAAC,
|
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
inputFileMutexReleaser,
|
|
|
|
|
2019-02-07 09:08:19 -05:00
|
|
|
hlsPlaylist: {
|
2019-11-15 09:06:03 -05:00
|
|
|
videoFilename
|
2021-01-21 08:42:43 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
job
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
await transcodeVOD(transcodeOptions)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-02-02 05:50:29 -05:00
|
|
|
// Create or update the playlist
|
2022-07-29 08:50:41 -04:00
|
|
|
const playlist = await retryTransactionWrapper(() => {
|
2022-07-13 04:15:41 -04:00
|
|
|
return sequelizeTypescript.transaction(async transaction => {
|
2022-07-29 08:50:41 -04:00
|
|
|
return VideoStreamingPlaylistModel.loadOrGenerate(video, transaction)
|
2022-07-13 04:15:41 -04:00
|
|
|
})
|
|
|
|
})
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
const newVideoFile = new VideoFileModel({
|
|
|
|
resolution,
|
2022-07-29 08:50:41 -04:00
|
|
|
extname: extnameUtil(videoFilename),
|
2019-11-15 09:06:03 -05:00
|
|
|
size: 0,
|
2021-07-22 08:28:03 -04:00
|
|
|
filename: videoFilename,
|
2019-11-15 09:06:03 -05:00
|
|
|
fps: -1,
|
2021-07-23 05:20:00 -04:00
|
|
|
videoStreamingPlaylistId: playlist.id
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const mutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
2021-02-02 05:50:29 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
try {
|
|
|
|
// VOD transcoding is a long task, refresh video attributes
|
|
|
|
await video.reload()
|
2021-02-02 05:50:29 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const videoFilePath = VideoPathManager.Instance.getFSVideoFileOutputPath(playlist, newVideoFile)
|
|
|
|
await ensureDir(VideoPathManager.Instance.getFSHLSOutputPath(video))
|
2022-09-09 03:21:42 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
// Move playlist file
|
|
|
|
const resolutionPlaylistPath = VideoPathManager.Instance.getFSHLSOutputPath(video, resolutionPlaylistFilename)
|
|
|
|
await move(resolutionPlaylistFileTranscodePath, resolutionPlaylistPath, { overwrite: true })
|
|
|
|
// Move video file
|
|
|
|
await move(join(videoTranscodedBasePath, videoFilename), videoFilePath, { overwrite: true })
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
// Update video duration if it was not set (in case of a live for example)
|
|
|
|
if (!video.duration) {
|
|
|
|
video.duration = await getVideoStreamDuration(videoFilePath)
|
|
|
|
await video.save()
|
|
|
|
}
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const stats = await stat(videoFilePath)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
newVideoFile.size = stats.size
|
|
|
|
newVideoFile.fps = await getVideoStreamFPS(videoFilePath)
|
|
|
|
newVideoFile.metadata = await buildFileMetadata(videoFilePath)
|
|
|
|
|
|
|
|
await createTorrentAndSetInfoHash(playlist, newVideoFile)
|
2022-07-25 04:57:16 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const oldFile = await VideoFileModel.loadHLSFile({
|
|
|
|
playlistId: playlist.id,
|
|
|
|
fps: newVideoFile.fps,
|
|
|
|
resolution: newVideoFile.resolution
|
|
|
|
})
|
|
|
|
|
|
|
|
if (oldFile) {
|
|
|
|
await video.removeStreamingPlaylistVideoFile(playlist, oldFile)
|
|
|
|
await oldFile.destroy()
|
|
|
|
}
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
const savedVideoFile = await VideoFileModel.customUpsert(newVideoFile, 'streaming-playlist', undefined)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
await updatePlaylistAfterFileChange(video, playlist)
|
|
|
|
|
|
|
|
return { resolutionPlaylistPath, videoFile: savedVideoFile }
|
|
|
|
} finally {
|
|
|
|
mutexReleaser()
|
|
|
|
}
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
2022-08-05 04:36:19 -04:00
|
|
|
|
|
|
|
function buildOriginalFileResolution (inputResolution: number) {
|
2022-11-07 04:43:22 -05:00
|
|
|
if (CONFIG.TRANSCODING.ALWAYS_TRANSCODE_ORIGINAL_RESOLUTION === true) {
|
|
|
|
return toEven(inputResolution)
|
|
|
|
}
|
2022-08-05 04:36:19 -04:00
|
|
|
|
2022-11-07 04:25:24 -05:00
|
|
|
const resolutions = computeResolutionsToTranscode({
|
|
|
|
input: inputResolution,
|
|
|
|
type: 'vod',
|
|
|
|
includeInput: false,
|
|
|
|
strictLower: false,
|
|
|
|
// We don't really care about the audio resolution in this context
|
|
|
|
hasAudio: true
|
|
|
|
})
|
|
|
|
|
2022-11-07 04:43:22 -05:00
|
|
|
if (resolutions.length === 0) {
|
|
|
|
return toEven(inputResolution)
|
|
|
|
}
|
2022-08-05 04:36:19 -04:00
|
|
|
|
|
|
|
return Math.max(...resolutions)
|
|
|
|
}
|