2020-09-25 04:04:21 -04:00
|
|
|
import * as Bull from 'bull'
|
|
|
|
import { readdir, remove } from 'fs-extra'
|
|
|
|
import { join } from 'path'
|
2020-11-20 11:16:55 -05:00
|
|
|
import { hlsPlaylistToFragmentedMP4 } from '@server/helpers/ffmpeg-utils'
|
|
|
|
import { getDurationFromVideoFile, getVideoFileResolution } from '@server/helpers/ffprobe-utils'
|
|
|
|
import { generateVideoMiniature } from '@server/lib/thumbnail'
|
2020-10-28 05:49:20 -04:00
|
|
|
import { publishAndFederateIfNeeded } from '@server/lib/video'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { getHLSDirectory } from '@server/lib/video-paths'
|
2020-10-26 11:44:23 -04:00
|
|
|
import { generateHlsPlaylist } from '@server/lib/video-transcoding'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { VideoModel } from '@server/models/video/video'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { VideoFileModel } from '@server/models/video/video-file'
|
2020-10-26 11:44:23 -04:00
|
|
|
import { VideoLiveModel } from '@server/models/video/video-live'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { MStreamingPlaylist, MVideo, MVideoLive } from '@server/types/models'
|
2020-11-06 04:57:40 -05:00
|
|
|
import { ThumbnailType, VideoLiveEndingPayload, VideoState } from '@shared/models'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
|
|
|
|
async function processVideoLiveEnding (job: Bull.Job) {
|
|
|
|
const payload = job.data as VideoLiveEndingPayload
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
function logError () {
|
|
|
|
logger.warn('Video live %d does not exist anymore. Cannot process live ending.', payload.videoId)
|
|
|
|
}
|
|
|
|
|
2020-10-26 11:44:23 -04:00
|
|
|
const video = await VideoModel.load(payload.videoId)
|
|
|
|
const live = await VideoLiveModel.loadByVideoId(payload.videoId)
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
if (!video || !live) {
|
|
|
|
logError()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-26 11:44:23 -04:00
|
|
|
const streamingPlaylist = await VideoStreamingPlaylistModel.loadHLSPlaylistByVideo(video.id)
|
2020-11-04 08:16:57 -05:00
|
|
|
if (!streamingPlaylist) {
|
|
|
|
logError()
|
2020-09-25 04:04:21 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-26 11:44:23 -04:00
|
|
|
if (live.saveReplay !== true) {
|
|
|
|
return cleanupLive(video, streamingPlaylist)
|
|
|
|
}
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
return saveLive(video, live)
|
2020-10-26 11:44:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processVideoLiveEnding
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
async function saveLive (video: MVideo, live: MVideoLive) {
|
2020-10-26 11:44:23 -04:00
|
|
|
const hlsDirectory = getHLSDirectory(video, false)
|
2020-10-27 11:06:24 -04:00
|
|
|
const files = await readdir(hlsDirectory)
|
|
|
|
|
|
|
|
const playlistFiles = files.filter(f => f.endsWith('.m3u8') && f !== 'master.m3u8')
|
|
|
|
const resolutions: number[] = []
|
2020-10-28 05:49:20 -04:00
|
|
|
let duration: number
|
2020-10-27 11:06:24 -04:00
|
|
|
|
|
|
|
for (const playlistFile of playlistFiles) {
|
|
|
|
const playlistPath = join(hlsDirectory, playlistFile)
|
|
|
|
const { videoFileResolution } = await getVideoFileResolution(playlistPath)
|
2020-10-26 11:44:23 -04:00
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
const mp4TmpPath = buildMP4TmpPath(hlsDirectory, videoFileResolution)
|
2020-10-26 11:44:23 -04:00
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
// Playlist name is for example 3.m3u8
|
|
|
|
// Segments names are 3-0.ts 3-1.ts etc
|
|
|
|
const shouldStartWith = playlistFile.replace(/\.m3u8$/, '') + '-'
|
|
|
|
|
|
|
|
const segmentFiles = files.filter(f => f.startsWith(shouldStartWith) && f.endsWith('.ts'))
|
2020-11-04 08:16:57 -05:00
|
|
|
await hlsPlaylistToFragmentedMP4(hlsDirectory, segmentFiles, mp4TmpPath)
|
2020-10-27 11:06:24 -04:00
|
|
|
|
2020-10-28 05:49:20 -04:00
|
|
|
if (!duration) {
|
2020-11-04 08:16:57 -05:00
|
|
|
duration = await getDurationFromVideoFile(mp4TmpPath)
|
2020-10-28 05:49:20 -04:00
|
|
|
}
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
resolutions.push(videoFileResolution)
|
2020-10-26 11:44:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await cleanupLiveFiles(hlsDirectory)
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
await live.destroy()
|
|
|
|
|
2020-10-26 11:44:23 -04:00
|
|
|
video.isLive = false
|
2020-11-06 10:42:23 -05:00
|
|
|
// Reinit views
|
|
|
|
video.views = 0
|
2020-10-26 11:44:23 -04:00
|
|
|
video.state = VideoState.TO_TRANSCODE
|
2020-10-28 05:49:20 -04:00
|
|
|
video.duration = duration
|
|
|
|
|
2020-10-26 11:44:23 -04:00
|
|
|
await video.save()
|
|
|
|
|
2020-11-03 09:33:30 -05:00
|
|
|
// Remove old HLS playlist video files
|
2020-10-26 11:44:23 -04:00
|
|
|
const videoWithFiles = await VideoModel.loadWithFiles(video.id)
|
|
|
|
|
2020-11-03 09:33:30 -05:00
|
|
|
const hlsPlaylist = videoWithFiles.getHLSPlaylist()
|
|
|
|
await VideoFileModel.removeHLSFilesOfVideoId(hlsPlaylist.id)
|
|
|
|
hlsPlaylist.VideoFiles = []
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
for (const resolution of resolutions) {
|
2020-11-04 08:16:57 -05:00
|
|
|
const videoInputPath = buildMP4TmpPath(hlsDirectory, resolution)
|
2020-10-26 11:44:23 -04:00
|
|
|
const { isPortraitMode } = await getVideoFileResolution(videoInputPath)
|
|
|
|
|
|
|
|
await generateHlsPlaylist({
|
|
|
|
video: videoWithFiles,
|
|
|
|
videoInputPath,
|
2020-10-27 11:06:24 -04:00
|
|
|
resolution: resolution,
|
2020-10-26 11:44:23 -04:00
|
|
|
copyCodecs: true,
|
|
|
|
isPortraitMode
|
|
|
|
})
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
await remove(videoInputPath)
|
2020-11-03 09:33:30 -05:00
|
|
|
}
|
2020-10-28 05:49:20 -04:00
|
|
|
|
2020-11-06 04:57:40 -05:00
|
|
|
// Regenerate the thumbnail & preview?
|
|
|
|
if (videoWithFiles.getMiniature().automaticallyGenerated === true) {
|
|
|
|
await generateVideoMiniature(videoWithFiles, videoWithFiles.getMaxQualityFile(), ThumbnailType.MINIATURE)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoWithFiles.getPreview().automaticallyGenerated === true) {
|
|
|
|
await generateVideoMiniature(videoWithFiles, videoWithFiles.getMaxQualityFile(), ThumbnailType.PREVIEW)
|
|
|
|
}
|
|
|
|
|
2020-11-03 09:33:30 -05:00
|
|
|
await publishAndFederateIfNeeded(video, true)
|
2020-10-26 11:44:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function cleanupLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) {
|
2020-11-06 08:33:31 -05:00
|
|
|
const hlsDirectory = getHLSDirectory(video)
|
2020-09-25 04:04:21 -04:00
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
await remove(hlsDirectory)
|
2020-10-26 11:44:23 -04:00
|
|
|
|
|
|
|
streamingPlaylist.destroy()
|
|
|
|
.catch(err => logger.error('Cannot remove live streaming playlist.', { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
async function cleanupLiveFiles (hlsDirectory: string) {
|
2020-09-25 04:04:21 -04:00
|
|
|
const files = await readdir(hlsDirectory)
|
|
|
|
|
|
|
|
for (const filename of files) {
|
|
|
|
if (
|
|
|
|
filename.endsWith('.ts') ||
|
|
|
|
filename.endsWith('.m3u8') ||
|
|
|
|
filename.endsWith('.mpd') ||
|
|
|
|
filename.endsWith('.m4s') ||
|
|
|
|
filename.endsWith('.tmp')
|
|
|
|
) {
|
|
|
|
const p = join(hlsDirectory, filename)
|
|
|
|
|
|
|
|
remove(p)
|
|
|
|
.catch(err => logger.error('Cannot remove %s.', p, { err }))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
function buildMP4TmpPath (basePath: string, resolution: number) {
|
|
|
|
return join(basePath, resolution + '-tmp.mp4')
|
2020-09-25 04:04:21 -04:00
|
|
|
}
|