PeerTube/server/lib/job-queue/handlers/video-live-ending.ts

132 lines
4.1 KiB
TypeScript
Raw Normal View History

import * as Bull from 'bull'
import { readdir, remove } from 'fs-extra'
import { join } from 'path'
2020-10-28 10:49:20 +01:00
import { getDurationFromVideoFile, getVideoFileResolution, hlsPlaylistToFragmentedMP4 } from '@server/helpers/ffmpeg-utils'
import { publishAndFederateIfNeeded } from '@server/lib/video'
import { getHLSDirectory } from '@server/lib/video-paths'
2020-10-26 16:44:23 +01:00
import { generateHlsPlaylist } from '@server/lib/video-transcoding'
import { VideoModel } from '@server/models/video/video'
2020-10-26 16:44:23 +01:00
import { VideoLiveModel } from '@server/models/video/video-live'
import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
2020-10-27 16:06:24 +01:00
import { MStreamingPlaylist, MVideo, MVideoLive } from '@server/types/models'
2020-10-26 16:44:23 +01:00
import { VideoLiveEndingPayload, VideoState } from '@shared/models'
import { logger } from '../../../helpers/logger'
async function processVideoLiveEnding (job: Bull.Job) {
const payload = job.data as VideoLiveEndingPayload
2020-10-26 16:44:23 +01: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)
return
}
2020-10-26 16:44:23 +01:00
if (live.saveReplay !== true) {
return cleanupLive(video, streamingPlaylist)
}
2020-10-27 16:06:24 +01:00
return saveLive(video, live)
2020-10-26 16:44:23 +01:00
}
// ---------------------------------------------------------------------------
export {
processVideoLiveEnding
}
// ---------------------------------------------------------------------------
2020-10-27 16:06:24 +01:00
async function saveLive (video: MVideo, live: MVideoLive) {
2020-10-26 16:44:23 +01:00
const hlsDirectory = getHLSDirectory(video, false)
2020-10-27 16:06:24 +01:00
const files = await readdir(hlsDirectory)
const playlistFiles = files.filter(f => f.endsWith('.m3u8') && f !== 'master.m3u8')
const resolutions: number[] = []
2020-10-28 10:49:20 +01:00
let duration: number
2020-10-27 16:06:24 +01:00
for (const playlistFile of playlistFiles) {
const playlistPath = join(hlsDirectory, playlistFile)
const { videoFileResolution } = await getVideoFileResolution(playlistPath)
2020-10-26 16:44:23 +01:00
2020-10-27 16:06:24 +01:00
const mp4TmpName = buildMP4TmpName(videoFileResolution)
2020-10-26 16:44:23 +01:00
2020-10-27 16:06:24 +01: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'))
await hlsPlaylistToFragmentedMP4(hlsDirectory, segmentFiles, mp4TmpName)
2020-10-28 10:49:20 +01:00
if (!duration) {
duration = await getDurationFromVideoFile(mp4TmpName)
}
2020-10-27 16:06:24 +01:00
resolutions.push(videoFileResolution)
2020-10-26 16:44:23 +01:00
}
await cleanupLiveFiles(hlsDirectory)
2020-10-27 16:06:24 +01:00
await live.destroy()
2020-10-26 16:44:23 +01:00
video.isLive = false
video.state = VideoState.TO_TRANSCODE
2020-10-28 10:49:20 +01:00
video.duration = duration
2020-10-26 16:44:23 +01:00
await video.save()
const videoWithFiles = await VideoModel.loadWithFiles(video.id)
2020-10-27 16:06:24 +01:00
for (const resolution of resolutions) {
const videoInputPath = buildMP4TmpName(resolution)
2020-10-26 16:44:23 +01:00
const { isPortraitMode } = await getVideoFileResolution(videoInputPath)
await generateHlsPlaylist({
video: videoWithFiles,
videoInputPath,
2020-10-27 16:06:24 +01:00
resolution: resolution,
2020-10-26 16:44:23 +01:00
copyCodecs: true,
isPortraitMode
})
}
video.state = VideoState.PUBLISHED
await video.save()
2020-10-28 10:49:20 +01:00
await publishAndFederateIfNeeded(video)
2020-10-26 16:44:23 +01:00
}
async function cleanupLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) {
const hlsDirectory = getHLSDirectory(video, false)
2020-10-26 16:44:23 +01:00
await cleanupLiveFiles(hlsDirectory)
streamingPlaylist.destroy()
.catch(err => logger.error('Cannot remove live streaming playlist.', { err }))
}
async function cleanupLiveFiles (hlsDirectory: string) {
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 16:44:23 +01:00
function buildMP4TmpName (resolution: number) {
2020-10-27 16:06:24 +01:00
return resolution + '-tmp.mp4'
}