2020-09-25 03:04:21 -05:00
|
|
|
import * as Bull from 'bull'
|
|
|
|
import { readdir, remove } from 'fs-extra'
|
|
|
|
import { join } from 'path'
|
2020-10-26 10:44:23 -05:00
|
|
|
import { getVideoFileResolution, hlsPlaylistToFragmentedMP4 } from '@server/helpers/ffmpeg-utils'
|
2020-09-25 03:04:21 -05:00
|
|
|
import { getHLSDirectory } from '@server/lib/video-paths'
|
2020-10-26 10:44:23 -05:00
|
|
|
import { generateHlsPlaylist } from '@server/lib/video-transcoding'
|
2020-09-25 03:04:21 -05:00
|
|
|
import { VideoModel } from '@server/models/video/video'
|
2020-10-26 10:44:23 -05:00
|
|
|
import { VideoLiveModel } from '@server/models/video/video-live'
|
2020-09-25 03:04:21 -05:00
|
|
|
import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
|
2020-10-26 10:44:23 -05:00
|
|
|
import { MStreamingPlaylist, MVideo } from '@server/types/models'
|
|
|
|
import { VideoLiveEndingPayload, VideoState } from '@shared/models'
|
2020-09-25 03:04:21 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
|
|
|
|
async function processVideoLiveEnding (job: Bull.Job) {
|
|
|
|
const payload = job.data as VideoLiveEndingPayload
|
|
|
|
|
2020-10-26 10:44:23 -05:00
|
|
|
const video = await VideoModel.load(payload.videoId)
|
|
|
|
const live = await VideoLiveModel.loadByVideoId(payload.videoId)
|
|
|
|
|
|
|
|
const streamingPlaylist = await VideoStreamingPlaylistModel.loadHLSPlaylistByVideo(video.id)
|
|
|
|
if (!video || !streamingPlaylist || !live) {
|
|
|
|
logger.warn('Video live %d does not exist anymore. Cannot process live ending.', payload.videoId)
|
2020-09-25 03:04:21 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-26 10:44:23 -05:00
|
|
|
if (live.saveReplay !== true) {
|
|
|
|
return cleanupLive(video, streamingPlaylist)
|
|
|
|
}
|
|
|
|
|
|
|
|
return saveLive(video, streamingPlaylist)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processVideoLiveEnding
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function saveLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) {
|
|
|
|
const videoFiles = await streamingPlaylist.get('VideoFiles')
|
|
|
|
const hlsDirectory = getHLSDirectory(video, false)
|
|
|
|
|
|
|
|
for (const videoFile of videoFiles) {
|
|
|
|
const playlistPath = join(hlsDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(videoFile.resolution))
|
|
|
|
|
|
|
|
const mp4TmpName = buildMP4TmpName(videoFile.resolution)
|
|
|
|
await hlsPlaylistToFragmentedMP4(playlistPath, mp4TmpName)
|
|
|
|
}
|
|
|
|
|
|
|
|
await cleanupLiveFiles(hlsDirectory)
|
|
|
|
|
|
|
|
video.isLive = false
|
|
|
|
video.state = VideoState.TO_TRANSCODE
|
|
|
|
await video.save()
|
|
|
|
|
|
|
|
const videoWithFiles = await VideoModel.loadWithFiles(video.id)
|
|
|
|
|
|
|
|
for (const videoFile of videoFiles) {
|
|
|
|
const videoInputPath = buildMP4TmpName(videoFile.resolution)
|
|
|
|
const { isPortraitMode } = await getVideoFileResolution(videoInputPath)
|
|
|
|
|
|
|
|
await generateHlsPlaylist({
|
|
|
|
video: videoWithFiles,
|
|
|
|
videoInputPath,
|
|
|
|
resolution: videoFile.resolution,
|
|
|
|
copyCodecs: true,
|
|
|
|
isPortraitMode
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
video.state = VideoState.PUBLISHED
|
|
|
|
await video.save()
|
|
|
|
}
|
|
|
|
|
|
|
|
async function cleanupLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) {
|
2020-09-25 03:04:21 -05:00
|
|
|
const hlsDirectory = getHLSDirectory(video, false)
|
|
|
|
|
2020-10-26 10:44:23 -05:00
|
|
|
await cleanupLiveFiles(hlsDirectory)
|
|
|
|
|
|
|
|
streamingPlaylist.destroy()
|
|
|
|
.catch(err => logger.error('Cannot remove live streaming playlist.', { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
async function cleanupLiveFiles (hlsDirectory: string) {
|
2020-09-25 03:04:21 -05: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-10-26 10:44:23 -05:00
|
|
|
function buildMP4TmpName (resolution: number) {
|
|
|
|
return resolution + 'tmp.mp4'
|
2020-09-25 03:04:21 -05:00
|
|
|
}
|