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

177 lines
5.5 KiB
TypeScript
Raw Normal View History

import * as Bull from 'bull'
import { move, readdir, remove } from 'fs-extra'
import { join } from 'path'
2020-11-20 17:16:55 +01: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 10:49:20 +01:00
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-11-04 14:16:57 +01:00
import { VideoFileModel } from '@server/models/video/video-file'
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-11-04 14:16:57 +01:00
import { MStreamingPlaylist, MVideo, MVideoLive } from '@server/types/models'
2020-11-06 10:57:40 +01:00
import { ThumbnailType, VideoLiveEndingPayload, VideoState } from '@shared/models'
import { logger } from '../../../helpers/logger'
import { VIDEO_LIVE } from '@server/initializers/constants'
async function processVideoLiveEnding (job: Bull.Job) {
const payload = job.data as VideoLiveEndingPayload
2020-11-04 14:16:57 +01:00
function logError () {
logger.warn('Video live %d does not exist anymore. Cannot process live ending.', payload.videoId)
}
2020-10-26 16:44:23 +01:00
const video = await VideoModel.load(payload.videoId)
const live = await VideoLiveModel.loadByVideoId(payload.videoId)
2020-11-04 14:16:57 +01:00
if (!video || !live) {
logError()
return
}
2020-10-26 16:44:23 +01:00
const streamingPlaylist = await VideoStreamingPlaylistModel.loadHLSPlaylistByVideo(video.id)
2020-11-04 14:16:57 +01:00
if (!streamingPlaylist) {
logError()
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)
const replayDirectory = join(hlsDirectory, VIDEO_LIVE.REPLAY_DIRECTORY)
const rootFiles = await readdir(hlsDirectory)
const playlistFiles: string[] = []
for (const file of rootFiles) {
if (file.endsWith('.m3u8') !== true) continue
await move(join(hlsDirectory, file), join(replayDirectory, file))
if (file !== 'master.m3u8') {
playlistFiles.push(file)
}
}
const replayFiles = await readdir(replayDirectory)
2020-10-27 16:06:24 +01:00
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(replayDirectory, playlistFile)
2020-10-27 16:06:24 +01:00
const { videoFileResolution } = await getVideoFileResolution(playlistPath)
2020-10-26 16:44:23 +01:00
// Put the final mp4 in the hls directory, and not in the replay directory
2020-11-04 14:16:57 +01:00
const mp4TmpPath = buildMP4TmpPath(hlsDirectory, 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 = replayFiles.filter(f => f.startsWith(shouldStartWith) && f.endsWith('.ts'))
await hlsPlaylistToFragmentedMP4(replayDirectory, segmentFiles, mp4TmpPath)
2020-10-27 16:06:24 +01:00
2020-10-28 10:49:20 +01:00
if (!duration) {
2020-11-04 14:16:57 +01:00
duration = await getDurationFromVideoFile(mp4TmpPath)
2020-10-28 10:49:20 +01:00
}
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
2020-11-06 16:42:23 +01:00
// Reinit views
video.views = 0
2020-10-26 16:44:23 +01:00
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()
2020-11-03 15:33:30 +01:00
// Remove old HLS playlist video files
2020-10-26 16:44:23 +01:00
const videoWithFiles = await VideoModel.loadWithFiles(video.id)
2020-11-03 15:33:30 +01:00
const hlsPlaylist = videoWithFiles.getHLSPlaylist()
await VideoFileModel.removeHLSFilesOfVideoId(hlsPlaylist.id)
hlsPlaylist.VideoFiles = []
2020-10-27 16:06:24 +01:00
for (const resolution of resolutions) {
2020-11-04 14:16:57 +01:00
const videoInputPath = buildMP4TmpPath(hlsDirectory, 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
})
2020-11-04 14:16:57 +01:00
await remove(videoInputPath)
2020-11-03 15:33:30 +01:00
}
2020-10-28 10:49:20 +01:00
2020-11-06 10:57:40 +01: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 15:33:30 +01:00
await publishAndFederateIfNeeded(video, true)
2020-10-26 16:44:23 +01:00
}
async function cleanupLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) {
2020-11-06 14:33:31 +01:00
const hlsDirectory = getHLSDirectory(video)
2020-11-04 14:16:57 +01:00
await remove(hlsDirectory)
2020-10-26 16:44:23 +01:00
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') ||
filename === VIDEO_LIVE.REPLAY_DIRECTORY
) {
const p = join(hlsDirectory, filename)
remove(p)
.catch(err => logger.error('Cannot remove %s.', p, { err }))
}
}
}
2020-11-04 14:16:57 +01:00
function buildMP4TmpPath (basePath: string, resolution: number) {
return join(basePath, resolution + '-tmp.mp4')
}