2021-01-21 14:42:43 +01:00
|
|
|
import { Job } from 'bull'
|
2020-12-04 15:10:13 +01:00
|
|
|
import { copyFile, ensureDir, move, remove, stat } from 'fs-extra'
|
2019-11-15 15:06:03 +01:00
|
|
|
import { basename, extname as extnameUtil, join } from 'path'
|
2021-06-08 11:28:51 +02:00
|
|
|
import { toEven } from '@server/helpers/core-utils'
|
2020-11-06 10:57:40 +01:00
|
|
|
import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
|
2021-02-16 16:25:53 +01:00
|
|
|
import { MStreamingPlaylistFilesVideo, MVideoFile, MVideoFullLight } from '@server/types/models'
|
2021-08-17 08:26:20 +02:00
|
|
|
import { VideoResolution, VideoStorage } from '../../../shared/models/videos'
|
2021-05-11 10:57:25 +02:00
|
|
|
import { VideoStreamingPlaylistType } from '../../../shared/models/videos/video-streaming-playlist.type'
|
|
|
|
import { transcode, TranscodeOptions, TranscodeOptionsType } from '../../helpers/ffmpeg-utils'
|
|
|
|
import { canDoQuickTranscode, getDurationFromVideoFile, getMetadataFromFile, getVideoFileFPS } from '../../helpers/ffprobe-utils'
|
|
|
|
import { CONFIG } from '../../initializers/config'
|
2021-08-17 08:26:20 +02:00
|
|
|
import { P2P_MEDIA_LOADER_PEER_VERSION } from '../../initializers/constants'
|
2021-05-11 10:57:25 +02:00
|
|
|
import { VideoFileModel } from '../../models/video/video-file'
|
|
|
|
import { VideoStreamingPlaylistModel } from '../../models/video/video-streaming-playlist'
|
|
|
|
import { updateMasterHLSPlaylist, updateSha256VODSegments } from '../hls'
|
2021-07-23 11:20:00 +02:00
|
|
|
import {
|
|
|
|
generateHLSMasterPlaylistFilename,
|
|
|
|
generateHlsSha256SegmentsFilename,
|
|
|
|
generateHLSVideoFilename,
|
|
|
|
generateWebTorrentVideoFilename,
|
2021-08-17 08:26:20 +02:00
|
|
|
getHlsResolutionPlaylistFilename
|
|
|
|
} from '../paths'
|
|
|
|
import { VideoPathManager } from '../video-path-manager'
|
2021-01-28 09:37:26 +01:00
|
|
|
import { VideoTranscodingProfilesManager } from './video-transcoding-profiles'
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2019-05-13 13:02:42 +02:00
|
|
|
/**
|
2020-11-24 16:29:39 +01:00
|
|
|
*
|
|
|
|
* Functions that run transcoding functions, update the database, cleanup files, create torrent files...
|
|
|
|
* Mainly called by the job queue
|
|
|
|
*
|
2019-05-13 13:02:42 +02:00
|
|
|
*/
|
2020-11-24 16:29:39 +01:00
|
|
|
|
|
|
|
// Optimize the original video file and replace it. The resolution is not changed.
|
2021-08-17 08:26:20 +02:00
|
|
|
function optimizeOriginalVideofile (video: MVideoFullLight, inputVideoFile: MVideoFile, job?: Job) {
|
2019-05-13 07:26:56 +02:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2018-09-18 11:02:51 +02:00
|
|
|
const newExtname = '.mp4'
|
2018-10-08 16:50:56 +02:00
|
|
|
|
2021-11-18 14:35:08 +01:00
|
|
|
return VideoPathManager.Instance.makeAvailableVideoFile(inputVideoFile.withVideoOrPlaylist(video), async videoInputPath => {
|
2021-08-17 08:26:20 +02:00
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const transcodeType: TranscodeOptionsType = await canDoQuickTranscode(videoInputPath)
|
|
|
|
? 'quick-transcode'
|
|
|
|
: 'video'
|
2019-04-24 20:27:05 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const resolution = toEven(inputVideoFile.resolution)
|
2021-06-08 11:28:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const transcodeOptions: TranscodeOptions = {
|
|
|
|
type: transcodeType,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
resolution,
|
2021-01-21 14:42:43 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
job
|
|
|
|
}
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
// Could be very long!
|
|
|
|
await transcode(transcodeOptions)
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-18 10:59:38 +02:00
|
|
|
// Important to do this before getVideoFilename() to take in account the new filename
|
|
|
|
inputVideoFile.extname = newExtname
|
|
|
|
inputVideoFile.filename = generateWebTorrentVideoFilename(resolution, newExtname)
|
|
|
|
inputVideoFile.storage = VideoStorage.FILE_SYSTEM
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-18 10:59:38 +02:00
|
|
|
const videoOutputPath = VideoPathManager.Instance.getFSVideoFileOutputPath(video, inputVideoFile)
|
2019-05-13 07:26:56 +02:00
|
|
|
|
2021-08-18 10:59:38 +02:00
|
|
|
const { videoFile } = await onWebTorrentVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
|
|
|
|
await remove(videoInputPath)
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-18 10:59:38 +02:00
|
|
|
return { transcodeType, videoFile }
|
2021-08-17 08:26:20 +02:00
|
|
|
})
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
// Transcode the original video file to a lower resolution
|
|
|
|
// We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
|
|
|
|
function transcodeNewWebTorrentResolution (video: MVideoFullLight, resolution: VideoResolution, isPortrait: boolean, job: Job) {
|
2019-05-13 07:26:56 +02:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2018-09-18 11:02:51 +02:00
|
|
|
const extname = '.mp4'
|
|
|
|
|
2021-11-18 14:35:08 +01:00
|
|
|
return VideoPathManager.Instance.makeAvailableVideoFile(video.getMaxQualityFile().withVideoOrPlaylist(video), async videoInputPath => {
|
2021-08-17 08:26:20 +02:00
|
|
|
const newVideoFile = new VideoFileModel({
|
|
|
|
resolution,
|
|
|
|
extname,
|
|
|
|
filename: generateWebTorrentVideoFilename(resolution, extname),
|
|
|
|
size: 0,
|
|
|
|
videoId: video.id
|
|
|
|
})
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const videoOutputPath = VideoPathManager.Instance.getFSVideoFileOutputPath(video, newVideoFile)
|
|
|
|
const videoTranscodedPath = join(transcodeDirectory, newVideoFile.filename)
|
2021-02-16 16:25:53 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const transcodeOptions = resolution === VideoResolution.H_NOVIDEO
|
|
|
|
? {
|
|
|
|
type: 'only-audio' as 'only-audio',
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
resolution,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
job
|
|
|
|
}
|
|
|
|
: {
|
|
|
|
type: 'video' as 'video',
|
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2021-01-21 14:42:43 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
resolution,
|
|
|
|
isPortraitMode: isPortrait,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
job
|
|
|
|
}
|
2021-01-21 14:42:43 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
await transcode(transcodeOptions)
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
return onWebTorrentVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, videoOutputPath)
|
|
|
|
})
|
2019-05-16 16:55:34 +02:00
|
|
|
}
|
|
|
|
|
2020-11-24 16:29:39 +01:00
|
|
|
// Merge an image with an audio file to create a video
|
2021-08-17 08:26:20 +02:00
|
|
|
function mergeAudioVideofile (video: MVideoFullLight, resolution: VideoResolution, job: Job) {
|
2019-05-16 16:55:34 +02:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
|
|
|
const newExtname = '.mp4'
|
|
|
|
|
2019-12-11 09:51:17 +01:00
|
|
|
const inputVideoFile = video.getMinQualityFile()
|
2019-05-13 07:26:56 +02:00
|
|
|
|
2021-11-18 14:35:08 +01:00
|
|
|
return VideoPathManager.Instance.makeAvailableVideoFile(inputVideoFile.withVideoOrPlaylist(video), async audioInputPath => {
|
2021-08-17 08:26:20 +02:00
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02: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)
|
2019-10-18 11:44:01 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const transcodeOptions = {
|
|
|
|
type: 'merge-audio' as 'merge-audio',
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
inputPath: tmpPreviewPath,
|
|
|
|
outputPath: videoTranscodedPath,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
audioPath: audioInputPath,
|
|
|
|
resolution,
|
2021-01-21 14:42:43 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
job
|
|
|
|
}
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
try {
|
|
|
|
await transcode(transcodeOptions)
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
await remove(audioInputPath)
|
|
|
|
await remove(tmpPreviewPath)
|
|
|
|
} catch (err) {
|
|
|
|
await remove(tmpPreviewPath)
|
|
|
|
throw err
|
|
|
|
}
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
// Important to do this before getVideoFilename() to take in account the new file extension
|
|
|
|
inputVideoFile.extname = newExtname
|
2021-12-23 10:57:55 +01:00
|
|
|
inputVideoFile.resolution = resolution
|
2021-08-17 08:26:20 +02:00
|
|
|
inputVideoFile.filename = generateWebTorrentVideoFilename(inputVideoFile.resolution, newExtname)
|
2019-05-16 16:55:34 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const videoOutputPath = VideoPathManager.Instance.getFSVideoFileOutputPath(video, inputVideoFile)
|
|
|
|
// ffmpeg generated a new video file, so update the video duration
|
|
|
|
// See https://trac.ffmpeg.org/ticket/5456
|
|
|
|
video.duration = await getDurationFromVideoFile(videoTranscodedPath)
|
|
|
|
await video.save()
|
2019-05-16 16:55:34 +02:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
return onWebTorrentVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
|
|
|
|
})
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
|
2020-12-02 10:07:26 +01:00
|
|
|
// Concat TS segments from a live video to a fragmented mp4 HLS playlist
|
2021-01-21 15:58:17 +01:00
|
|
|
async function generateHlsPlaylistResolutionFromTS (options: {
|
2021-02-16 16:25:53 +01:00
|
|
|
video: MVideoFullLight
|
2020-12-04 15:10:13 +01:00
|
|
|
concatenatedTsFilePath: string
|
2020-12-02 10:07:26 +01:00
|
|
|
resolution: VideoResolution
|
|
|
|
isPortraitMode: boolean
|
2020-12-04 15:29:18 +01:00
|
|
|
isAAC: boolean
|
2020-12-02 10:07:26 +01:00
|
|
|
}) {
|
2020-12-04 15:10:13 +01:00
|
|
|
return generateHlsPlaylistCommon({
|
|
|
|
video: options.video,
|
|
|
|
resolution: options.resolution,
|
|
|
|
isPortraitMode: options.isPortraitMode,
|
|
|
|
inputPath: options.concatenatedTsFilePath,
|
2020-12-04 15:29:18 +01:00
|
|
|
type: 'hls-from-ts' as 'hls-from-ts',
|
|
|
|
isAAC: options.isAAC
|
2020-12-04 15:10:13 +01:00
|
|
|
})
|
2020-12-02 10:07:26 +01:00
|
|
|
}
|
|
|
|
|
2020-11-24 16:29:39 +01:00
|
|
|
// Generate an HLS playlist from an input file, and update the master playlist
|
2021-01-21 15:58:17 +01:00
|
|
|
function generateHlsPlaylistResolution (options: {
|
2021-02-16 16:25:53 +01:00
|
|
|
video: MVideoFullLight
|
2020-10-26 16:44:23 +01:00
|
|
|
videoInputPath: string
|
|
|
|
resolution: VideoResolution
|
|
|
|
copyCodecs: boolean
|
|
|
|
isPortraitMode: boolean
|
2021-01-21 14:42:43 +01:00
|
|
|
job?: Job
|
2020-10-26 16:44:23 +01:00
|
|
|
}) {
|
2020-12-02 10:07:26 +01:00
|
|
|
return generateHlsPlaylistCommon({
|
|
|
|
video: options.video,
|
|
|
|
resolution: options.resolution,
|
|
|
|
copyCodecs: options.copyCodecs,
|
|
|
|
isPortraitMode: options.isPortraitMode,
|
|
|
|
inputPath: options.videoInputPath,
|
2021-01-21 14:42:43 +01:00
|
|
|
type: 'hls' as 'hls',
|
|
|
|
job: options.job
|
2020-12-02 10:07:26 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-01-21 15:58:17 +01:00
|
|
|
generateHlsPlaylistResolution,
|
|
|
|
generateHlsPlaylistResolutionFromTS,
|
2020-12-02 10:07:26 +01:00
|
|
|
optimizeOriginalVideofile,
|
2021-01-21 15:58:17 +01:00
|
|
|
transcodeNewWebTorrentResolution,
|
2021-05-11 10:54:05 +02:00
|
|
|
mergeAudioVideofile
|
2020-12-02 10:07:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-01-21 15:58:17 +01:00
|
|
|
async function onWebTorrentVideoFileTranscoding (
|
2021-02-16 16:25:53 +01:00
|
|
|
video: MVideoFullLight,
|
2021-01-21 15:58:17 +01:00
|
|
|
videoFile: MVideoFile,
|
|
|
|
transcodingPath: string,
|
|
|
|
outputPath: string
|
|
|
|
) {
|
2020-12-02 10:07:26 +01:00
|
|
|
const stats = await stat(transcodingPath)
|
|
|
|
const fps = await getVideoFileFPS(transcodingPath)
|
|
|
|
const metadata = await getMetadataFromFile(transcodingPath)
|
|
|
|
|
|
|
|
await move(transcodingPath, outputPath, { overwrite: true })
|
|
|
|
|
|
|
|
videoFile.size = stats.size
|
|
|
|
videoFile.fps = fps
|
|
|
|
videoFile.metadata = metadata
|
|
|
|
|
2021-02-18 11:28:00 +01:00
|
|
|
await createTorrentAndSetInfoHash(video, videoFile)
|
2020-12-02 10:07:26 +01:00
|
|
|
|
|
|
|
await VideoFileModel.customUpsert(videoFile, 'video', undefined)
|
|
|
|
video.VideoFiles = await video.$get('VideoFiles')
|
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
return { video, videoFile }
|
2020-12-02 10:07:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function generateHlsPlaylistCommon (options: {
|
|
|
|
type: 'hls' | 'hls-from-ts'
|
2021-02-16 16:25:53 +01:00
|
|
|
video: MVideoFullLight
|
2020-12-02 10:07:26 +01:00
|
|
|
inputPath: string
|
|
|
|
resolution: VideoResolution
|
|
|
|
copyCodecs?: boolean
|
2020-12-04 15:29:18 +01:00
|
|
|
isAAC?: boolean
|
2020-12-02 10:07:26 +01:00
|
|
|
isPortraitMode: boolean
|
2021-01-21 14:42:43 +01:00
|
|
|
|
|
|
|
job?: Job
|
2020-12-02 10:07:26 +01:00
|
|
|
}) {
|
2021-01-21 14:42:43 +01:00
|
|
|
const { type, video, inputPath, resolution, copyCodecs, isPortraitMode, isAAC, job } = options
|
2021-02-02 11:50:29 +01:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2020-10-26 16:44:23 +01:00
|
|
|
|
2021-02-08 10:51:10 +01:00
|
|
|
const videoTranscodedBasePath = join(transcodeDirectory, type)
|
2021-02-02 11:50:29 +01:00
|
|
|
await ensureDir(videoTranscodedBasePath)
|
2019-01-29 08:37:25 +01:00
|
|
|
|
2021-07-22 14:28:03 +02:00
|
|
|
const videoFilename = generateHLSVideoFilename(resolution)
|
2021-07-23 11:20:00 +02:00
|
|
|
const resolutionPlaylistFilename = getHlsResolutionPlaylistFilename(videoFilename)
|
|
|
|
const resolutionPlaylistFileTranscodePath = join(videoTranscodedBasePath, resolutionPlaylistFilename)
|
2019-01-29 08:37:25 +01:00
|
|
|
|
|
|
|
const transcodeOptions = {
|
2020-12-02 10:07:26 +01:00
|
|
|
type,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2020-12-02 10:07:26 +01:00
|
|
|
inputPath,
|
2021-07-23 11:20:00 +02:00
|
|
|
outputPath: resolutionPlaylistFileTranscodePath,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2021-01-28 09:37:26 +01:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
2021-01-28 15:52:44 +01:00
|
|
|
profile: CONFIG.TRANSCODING.PROFILE,
|
2020-11-23 16:23:52 +01:00
|
|
|
|
2019-01-29 08:37:25 +01:00
|
|
|
resolution,
|
2019-11-15 15:06:03 +01:00
|
|
|
copyCodecs,
|
2019-01-29 08:37:25 +01:00
|
|
|
isPortraitMode,
|
2019-02-07 15:08:19 +01:00
|
|
|
|
2020-12-04 15:29:18 +01:00
|
|
|
isAAC,
|
|
|
|
|
2019-02-07 15:08:19 +01:00
|
|
|
hlsPlaylist: {
|
2019-11-15 15:06:03 +01:00
|
|
|
videoFilename
|
2021-01-21 14:42:43 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
job
|
2019-01-29 08:37:25 +01:00
|
|
|
}
|
|
|
|
|
2019-11-15 15:06:03 +01:00
|
|
|
await transcode(transcodeOptions)
|
2019-01-29 08:37:25 +01:00
|
|
|
|
2021-02-02 11:50:29 +01:00
|
|
|
// Create or update the playlist
|
2021-07-23 11:20:00 +02:00
|
|
|
const playlist = await VideoStreamingPlaylistModel.loadOrGenerate(video)
|
|
|
|
|
|
|
|
if (!playlist.playlistFilename) {
|
|
|
|
playlist.playlistFilename = generateHLSMasterPlaylistFilename(video.isLive)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!playlist.segmentsSha256Filename) {
|
|
|
|
playlist.segmentsSha256Filename = generateHlsSha256SegmentsFilename(video.isLive)
|
|
|
|
}
|
|
|
|
|
|
|
|
playlist.p2pMediaLoaderInfohashes = []
|
|
|
|
playlist.p2pMediaLoaderPeerVersion = P2P_MEDIA_LOADER_PEER_VERSION
|
2019-01-29 08:37:25 +01:00
|
|
|
|
2021-07-23 11:20:00 +02:00
|
|
|
playlist.type = VideoStreamingPlaylistType.HLS
|
|
|
|
|
|
|
|
await playlist.save()
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-02-02 11:50:29 +01:00
|
|
|
// Build the new playlist file
|
2021-02-16 16:25:53 +01:00
|
|
|
const extname = extnameUtil(videoFilename)
|
2019-11-15 15:06:03 +01:00
|
|
|
const newVideoFile = new VideoFileModel({
|
|
|
|
resolution,
|
2021-02-16 16:25:53 +01:00
|
|
|
extname,
|
2019-11-15 15:06:03 +01:00
|
|
|
size: 0,
|
2021-07-22 14:28:03 +02:00
|
|
|
filename: videoFilename,
|
2019-11-15 15:06:03 +01:00
|
|
|
fps: -1,
|
2021-07-23 11:20:00 +02:00
|
|
|
videoStreamingPlaylistId: playlist.id
|
2019-01-29 08:37:25 +01:00
|
|
|
})
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const videoFilePath = VideoPathManager.Instance.getFSVideoFileOutputPath(playlist, newVideoFile)
|
2021-02-02 11:50:29 +01:00
|
|
|
|
|
|
|
// Move files from tmp transcoded directory to the appropriate place
|
2021-08-17 08:26:20 +02:00
|
|
|
await ensureDir(VideoPathManager.Instance.getFSHLSOutputPath(video))
|
2021-02-02 11:50:29 +01:00
|
|
|
|
|
|
|
// Move playlist file
|
2021-08-17 08:26:20 +02:00
|
|
|
const resolutionPlaylistPath = VideoPathManager.Instance.getFSHLSOutputPath(video, resolutionPlaylistFilename)
|
2021-07-23 11:20:00 +02:00
|
|
|
await move(resolutionPlaylistFileTranscodePath, resolutionPlaylistPath, { overwrite: true })
|
2021-02-02 11:50:29 +01:00
|
|
|
// Move video file
|
2021-02-02 14:00:46 +01:00
|
|
|
await move(join(videoTranscodedBasePath, videoFilename), videoFilePath, { overwrite: true })
|
2021-02-02 11:50:29 +01:00
|
|
|
|
2019-11-15 15:06:03 +01:00
|
|
|
const stats = await stat(videoFilePath)
|
|
|
|
|
|
|
|
newVideoFile.size = stats.size
|
|
|
|
newVideoFile.fps = await getVideoFileFPS(videoFilePath)
|
2020-03-10 14:39:40 +01:00
|
|
|
newVideoFile.metadata = await getMetadataFromFile(videoFilePath)
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-07-23 11:20:00 +02:00
|
|
|
await createTorrentAndSetInfoHash(playlist, newVideoFile)
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
const savedVideoFile = await VideoFileModel.customUpsert(newVideoFile, 'streaming-playlist', undefined)
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-07-23 11:20:00 +02:00
|
|
|
const playlistWithFiles = playlist as MStreamingPlaylistFilesVideo
|
|
|
|
playlistWithFiles.VideoFiles = await playlist.$get('VideoFiles')
|
|
|
|
playlist.assignP2PMediaLoaderInfoHashes(video, playlistWithFiles.VideoFiles)
|
|
|
|
|
|
|
|
await playlist.save()
|
2020-10-26 16:44:23 +01:00
|
|
|
|
2021-07-23 11:20:00 +02:00
|
|
|
video.setHLSPlaylist(playlist)
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-07-23 11:20:00 +02:00
|
|
|
await updateMasterHLSPlaylist(video, playlistWithFiles)
|
|
|
|
await updateSha256VODSegments(video, playlistWithFiles)
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
return { resolutionPlaylistPath, videoFile: savedVideoFile }
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|