2020-09-25 04:04:21 -04:00
|
|
|
import * as Bull from 'bull'
|
2020-11-30 11:03:13 -05:00
|
|
|
import { copy, readdir, remove } from 'fs-extra'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { join } from 'path'
|
2020-11-20 11:16:55 -05:00
|
|
|
import { getDurationFromVideoFile, getVideoFileResolution } from '@server/helpers/ffprobe-utils'
|
2020-11-30 11:03:13 -05:00
|
|
|
import { VIDEO_LIVE } from '@server/initializers/constants'
|
2020-11-20 11:16:55 -05:00
|
|
|
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-12-02 04:07:26 -05:00
|
|
|
import { generateHlsPlaylistFromTS } 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-11-30 09:59:22 -05:00
|
|
|
const replayDirectory = join(hlsDirectory, VIDEO_LIVE.REPLAY_DIRECTORY)
|
|
|
|
|
|
|
|
const rootFiles = await readdir(hlsDirectory)
|
|
|
|
|
|
|
|
const playlistFiles: string[] = []
|
|
|
|
|
|
|
|
for (const file of rootFiles) {
|
2020-11-30 11:03:13 -05:00
|
|
|
// Move remaining files in the replay directory
|
|
|
|
if (file.endsWith('.ts') || file.endsWith('.m3u8')) {
|
|
|
|
await copy(join(hlsDirectory, file), join(replayDirectory, file))
|
|
|
|
}
|
2020-11-30 09:59:22 -05:00
|
|
|
|
2020-11-30 11:03:13 -05:00
|
|
|
if (file.endsWith('.m3u8') && file !== 'master.m3u8') {
|
2020-11-30 09:59:22 -05:00
|
|
|
playlistFiles.push(file)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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-12-02 04:07:26 -05:00
|
|
|
const replayFiles = await readdir(replayDirectory)
|
|
|
|
let duration: number
|
2020-10-26 11:44:23 -04:00
|
|
|
|
2020-12-02 04:07:26 -05:00
|
|
|
for (const playlistFile of playlistFiles) {
|
|
|
|
const playlistPath = join(replayDirectory, playlistFile)
|
|
|
|
const { videoFileResolution, isPortraitMode } = await getVideoFileResolution(playlistPath)
|
|
|
|
|
|
|
|
// Playlist name is for example 3.m3u8
|
|
|
|
// Segments names are 3-0.ts 3-1.ts etc
|
|
|
|
const shouldStartWith = playlistFile.replace(/\.m3u8$/, '') + '-'
|
|
|
|
|
|
|
|
const segmentFiles = replayFiles.filter(f => f.startsWith(shouldStartWith) && f.endsWith('.ts'))
|
|
|
|
|
|
|
|
const outputPath = await generateHlsPlaylistFromTS({
|
2020-10-26 11:44:23 -04:00
|
|
|
video: videoWithFiles,
|
2020-12-02 04:07:26 -05:00
|
|
|
replayDirectory,
|
|
|
|
segmentFiles,
|
|
|
|
resolution: videoFileResolution,
|
2020-10-26 11:44:23 -04:00
|
|
|
isPortraitMode
|
|
|
|
})
|
|
|
|
|
2020-12-02 04:07:26 -05:00
|
|
|
if (!duration) {
|
|
|
|
videoWithFiles.duration = await getDurationFromVideoFile(outputPath)
|
|
|
|
await videoWithFiles.save()
|
|
|
|
}
|
2020-11-03 09:33:30 -05:00
|
|
|
}
|
2020-10-28 05:49:20 -04:00
|
|
|
|
2020-12-02 04:07:26 -05:00
|
|
|
await remove(replayDirectory)
|
|
|
|
|
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') ||
|
2020-12-02 04:07:26 -05:00
|
|
|
filename.endsWith('.tmp')
|
2020-09-25 04:04:21 -04:00
|
|
|
) {
|
|
|
|
const p = join(hlsDirectory, filename)
|
|
|
|
|
|
|
|
remove(p)
|
|
|
|
.catch(err => logger.error('Cannot remove %s.', p, { err }))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|