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

154 lines
4.8 KiB
TypeScript
Raw Normal View History

import * as Bull from 'bull'
import { pathExists, readdir, remove } from 'fs-extra'
import { join } from 'path'
2020-12-04 15:58:29 +01:00
import { ffprobePromise, getAudioStream, getDurationFromVideoFile, getVideoFileResolution } from '@server/helpers/ffprobe-utils'
2020-11-30 17:03:13 +01:00
import { VIDEO_LIVE } from '@server/initializers/constants'
2021-06-16 15:14:41 +02:00
import { buildConcatenatedName, cleanupLive, LiveSegmentShaStore } from '@server/lib/live'
2020-11-20 17:16:55 +01:00
import { generateVideoMiniature } from '@server/lib/thumbnail'
import { generateHlsPlaylistResolutionFromTS } from '@server/lib/transcoding/video-transcoding'
2020-10-28 10:49:20 +01:00
import { publishAndFederateIfNeeded } from '@server/lib/video'
import { getHLSDirectory } from '@server/lib/video-paths'
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'
2021-06-16 15:14:41 +02:00
import { 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'
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
}
2021-06-16 15:14:41 +02:00
LiveSegmentShaStore.Instance.cleanupShaSegments(video.uuid)
2020-12-03 14:10:54 +01:00
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 {
2021-06-16 15:14:41 +02:00
processVideoLiveEnding
2020-10-26 16:44:23 +01:00
}
// ---------------------------------------------------------------------------
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)
2020-12-07 10:00:34 +01:00
const playlistFiles = rootFiles.filter(file => {
return file.endsWith('.m3u8') && file !== 'master.m3u8'
})
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
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
const videoWithFiles = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.id)
2020-10-26 16:44:23 +01:00
2020-11-03 15:33:30 +01:00
const hlsPlaylist = videoWithFiles.getHLSPlaylist()
await VideoFileModel.removeHLSFilesOfVideoId(hlsPlaylist.id)
hlsPlaylist.VideoFiles = []
2020-12-09 15:00:02 +01:00
let durationDone = false
2020-10-26 16:44:23 +01:00
2020-12-02 10:07:26 +01:00
for (const playlistFile of playlistFiles) {
2021-06-16 15:14:41 +02:00
const concatenatedTsFile = buildConcatenatedName(playlistFile)
2020-12-04 15:10:13 +01:00
const concatenatedTsFilePath = join(replayDirectory, concatenatedTsFile)
2020-12-02 10:07:26 +01:00
const probe = await ffprobePromise(concatenatedTsFilePath)
const { audioStream } = await getAudioStream(concatenatedTsFilePath, probe)
const { videoFileResolution, isPortraitMode } = await getVideoFileResolution(concatenatedTsFilePath, probe)
2020-12-02 10:07:26 +01:00
2021-01-21 15:58:17 +01:00
const outputPath = await generateHlsPlaylistResolutionFromTS({
2020-10-26 16:44:23 +01:00
video: videoWithFiles,
2020-12-04 15:10:13 +01:00
concatenatedTsFilePath,
2020-12-02 10:07:26 +01:00
resolution: videoFileResolution,
isPortraitMode,
isAAC: audioStream?.codec_name === 'aac'
2020-10-26 16:44:23 +01:00
})
2020-12-03 09:38:24 +01:00
if (!durationDone) {
2020-12-02 10:07:26 +01:00
videoWithFiles.duration = await getDurationFromVideoFile(outputPath)
await videoWithFiles.save()
2020-12-03 09:38:24 +01:00
durationDone = true
2020-12-02 10:07:26 +01:00
}
2020-11-03 15:33:30 +01:00
}
2020-10-28 10:49:20 +01:00
2020-12-02 10:07:26 +01:00
await remove(replayDirectory)
2020-11-06 10:57:40 +01:00
// Regenerate the thumbnail & preview?
if (videoWithFiles.getMiniature().automaticallyGenerated === true) {
2021-02-16 08:50:40 +01:00
await generateVideoMiniature({
video: videoWithFiles,
videoFile: videoWithFiles.getMaxQualityFile(),
type: ThumbnailType.MINIATURE
})
2020-11-06 10:57:40 +01:00
}
if (videoWithFiles.getPreview().automaticallyGenerated === true) {
2021-02-16 08:50:40 +01:00
await generateVideoMiniature({
video: videoWithFiles,
videoFile: videoWithFiles.getMaxQualityFile(),
type: ThumbnailType.PREVIEW
})
2020-11-06 10:57:40 +01:00
}
2020-12-03 09:38:24 +01:00
await publishAndFederateIfNeeded(videoWithFiles, true)
2020-10-26 16:44:23 +01:00
}
async function cleanupLiveFiles (hlsDirectory: string) {
2020-12-03 14:10:54 +01:00
if (!await pathExists(hlsDirectory)) return
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 10:07:26 +01:00
filename.endsWith('.tmp')
) {
const p = join(hlsDirectory, filename)
remove(p)
.catch(err => logger.error('Cannot remove %s.', p, { err }))
}
}
}