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

257 lines
8.4 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import { Job } from 'bull'
import { readdir, remove } from 'fs-extra'
import { join } from 'path'
import { ffprobePromise, getAudioStream, getVideoStreamDimensionsInfo, getVideoStreamDuration } from '@server/helpers/ffmpeg'
import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url'
import { federateVideoIfNeeded } from '@server/lib/activitypub/videos'
import { cleanupUnsavedNormalLive, cleanupPermanentLive, cleanupTMPLiveFiles, LiveSegmentShaStore } from '@server/lib/live'
import {
generateHLSMasterPlaylistFilename,
generateHlsSha256SegmentsFilename,
getLiveDirectory,
getLiveReplayBaseDirectory
} from '@server/lib/paths'
2020-11-20 17:16:55 +01:00
import { generateVideoMiniature } from '@server/lib/thumbnail'
2022-02-11 10:51:33 +01:00
import { generateHlsPlaylistResolutionFromTS } from '@server/lib/transcoding/transcoding'
Add support for saving video files to object storage (#4290) * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
2021-08-17 08:26:20 +02:00
import { moveToNextState } from '@server/lib/video-state'
import { VideoModel } from '@server/models/video/video'
2022-05-03 11:38:07 +02:00
import { VideoBlacklistModel } from '@server/models/video/video-blacklist'
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'
2022-05-03 11:38:07 +02:00
import { VideoLiveSessionModel } from '@server/models/video/video-live-session'
import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
2022-05-03 11:38:07 +02:00
import { MVideo, MVideoLive, MVideoLiveSession, MVideoWithAllFiles } from '@server/types/models'
2020-11-06 10:57:40 +01:00
import { ThumbnailType, VideoLiveEndingPayload, VideoState } from '@shared/models'
import { logger, loggerTagsFactory } from '../../../helpers/logger'
const lTags = loggerTagsFactory('live', 'job')
2021-08-27 14:32:44 +02:00
async function processVideoLiveEnding (job: Job) {
const payload = job.data as VideoLiveEndingPayload
logger.info('Processing video live ending for %s.', payload.videoId, { payload, ...lTags() })
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, lTags())
2020-11-04 14:16:57 +01:00
}
2022-05-03 11:38:07 +02:00
const liveVideo = await VideoModel.load(payload.videoId)
2020-10-26 16:44:23 +01:00
const live = await VideoLiveModel.loadByVideoId(payload.videoId)
2022-05-03 11:38:07 +02:00
const liveSession = await VideoLiveSessionModel.load(payload.liveSessionId)
2020-10-26 16:44:23 +01:00
2022-05-03 11:38:07 +02:00
if (!liveVideo || !live || !liveSession) {
2020-11-04 14:16:57 +01:00
logError()
return
}
2022-05-03 11:38:07 +02:00
LiveSegmentShaStore.Instance.cleanupShaSegments(liveVideo.uuid)
2020-12-03 14:10:54 +01:00
2020-10-26 16:44:23 +01:00
if (live.saveReplay !== true) {
return cleanupLiveAndFederate({ live, video: liveVideo, streamingPlaylistId: payload.streamingPlaylistId })
2020-10-26 16:44:23 +01:00
}
if (live.permanentLive) {
2022-05-03 11:38:07 +02:00
await saveReplayToExternalVideo({ liveVideo, liveSession, publishedAt: payload.publishedAt, replayDirectory: payload.replayDirectory })
return cleanupLiveAndFederate({ live, video: liveVideo, streamingPlaylistId: payload.streamingPlaylistId })
}
2022-05-03 11:38:07 +02:00
return replaceLiveByReplay({ liveVideo, live, liveSession, replayDirectory: payload.replayDirectory })
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
}
// ---------------------------------------------------------------------------
2022-05-03 11:38:07 +02:00
async function saveReplayToExternalVideo (options: {
liveVideo: MVideo
liveSession: MVideoLiveSession
publishedAt: string
replayDirectory: string
}) {
const { liveVideo, liveSession, publishedAt, replayDirectory } = options
const video = new VideoModel({
name: `${liveVideo.name} - ${new Date(publishedAt).toLocaleString()}`,
isLive: false,
state: VideoState.TO_TRANSCODE,
duration: 0,
remote: liveVideo.remote,
category: liveVideo.category,
licence: liveVideo.licence,
language: liveVideo.language,
commentsEnabled: liveVideo.commentsEnabled,
downloadEnabled: liveVideo.downloadEnabled,
2022-05-03 11:38:07 +02:00
waitTranscoding: true,
nsfw: liveVideo.nsfw,
description: liveVideo.description,
support: liveVideo.support,
privacy: liveVideo.privacy,
channelId: liveVideo.channelId
}) as MVideoWithAllFiles
video.Thumbnails = []
video.VideoFiles = []
video.VideoStreamingPlaylists = []
video.url = getLocalVideoActivityPubUrl(video)
await video.save()
2022-05-03 11:38:07 +02:00
liveSession.replayVideoId = video.id
await liveSession.save()
// If live is blacklisted, also blacklist the replay
const blacklist = await VideoBlacklistModel.loadByVideoId(liveVideo.id)
if (blacklist) {
await VideoBlacklistModel.create({
videoId: video.id,
unfederated: blacklist.unfederated,
reason: blacklist.reason,
type: blacklist.type
})
}
2022-05-03 11:38:07 +02:00
await assignReplayFilesToVideo({ video, replayDirectory })
await remove(replayDirectory)
for (const type of [ ThumbnailType.MINIATURE, ThumbnailType.PREVIEW ]) {
const image = await generateVideoMiniature({ video, videoFile: video.getMaxQualityFile(), type })
await video.addAndSaveThumbnail(image)
}
await moveToNextState({ video, isNewVideo: true })
}
2022-05-03 11:38:07 +02:00
async function replaceLiveByReplay (options: {
liveVideo: MVideo
liveSession: MVideoLiveSession
live: MVideoLive
replayDirectory: string
}) {
const { liveVideo, liveSession, live, replayDirectory } = options
await cleanupTMPLiveFiles(getLiveDirectory(liveVideo))
2020-10-26 16:44:23 +01:00
2020-10-27 16:06:24 +01:00
await live.destroy()
2022-05-03 11:38:07 +02:00
liveVideo.isLive = false
liveVideo.waitTranscoding = true
liveVideo.state = VideoState.TO_TRANSCODE
2020-10-28 10:49:20 +01:00
2022-05-03 11:38:07 +02:00
await liveVideo.save()
liveSession.replayVideoId = liveVideo.id
await liveSession.save()
2020-10-26 16:44:23 +01:00
2020-11-03 15:33:30 +01:00
// Remove old HLS playlist video files
2022-05-03 11:38:07 +02:00
const videoWithFiles = await VideoModel.loadAndPopulateAccountAndServerAndTags(liveVideo.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)
2021-07-23 11:20:00 +02:00
// Reset playlist
2020-11-03 15:33:30 +01:00
hlsPlaylist.VideoFiles = []
2021-07-23 11:20:00 +02:00
hlsPlaylist.playlistFilename = generateHLSMasterPlaylistFilename()
hlsPlaylist.segmentsSha256Filename = generateHlsSha256SegmentsFilename()
await hlsPlaylist.save()
2020-11-03 15:33:30 +01:00
2022-05-03 11:38:07 +02:00
await assignReplayFilesToVideo({ video: videoWithFiles, replayDirectory })
if (live.permanentLive) { // Remove session replay
await remove(replayDirectory)
} else { // We won't stream again in this live, we can delete the base replay directory
await remove(getLiveReplayBaseDirectory(videoWithFiles))
}
// Regenerate the thumbnail & preview?
if (videoWithFiles.getMiniature().automaticallyGenerated === true) {
const miniature = await generateVideoMiniature({
video: videoWithFiles,
videoFile: videoWithFiles.getMaxQualityFile(),
type: ThumbnailType.MINIATURE
})
2022-05-03 11:38:07 +02:00
await videoWithFiles.addAndSaveThumbnail(miniature)
}
if (videoWithFiles.getPreview().automaticallyGenerated === true) {
const preview = await generateVideoMiniature({
video: videoWithFiles,
videoFile: videoWithFiles.getMaxQualityFile(),
type: ThumbnailType.PREVIEW
})
2022-05-03 11:38:07 +02:00
await videoWithFiles.addAndSaveThumbnail(preview)
}
2022-05-03 11:38:07 +02:00
// We consider this is a new video
await moveToNextState({ video: videoWithFiles, isNewVideo: true })
}
2022-05-03 11:38:07 +02:00
async function assignReplayFilesToVideo (options: {
video: MVideo
replayDirectory: string
}) {
const { video, replayDirectory } = options
2020-12-09 15:00:02 +01:00
let durationDone = false
2020-10-26 16:44:23 +01:00
const concatenatedTsFiles = await readdir(replayDirectory)
for (const concatenatedTsFile of concatenatedTsFiles) {
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)
2022-02-11 10:51:33 +01:00
const { resolution, isPortraitMode } = await getVideoStreamDimensionsInfo(concatenatedTsFilePath, probe)
2020-12-02 10:07:26 +01:00
Add support for saving video files to object storage (#4290) * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
2021-08-17 08:26:20 +02:00
const { resolutionPlaylistPath: outputPath } = await generateHlsPlaylistResolutionFromTS({
video,
2020-12-04 15:10:13 +01:00
concatenatedTsFilePath,
2021-08-06 13:35:25 +02:00
resolution,
isPortraitMode,
isAAC: audioStream?.codec_name === 'aac'
2020-10-26 16:44:23 +01:00
})
2020-12-03 09:38:24 +01:00
if (!durationDone) {
video.duration = await getVideoStreamDuration(outputPath)
await video.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
return video
}
2020-11-06 10:57:40 +01:00
2022-05-03 11:38:07 +02:00
async function cleanupLiveAndFederate (options: {
live: MVideoLive
video: MVideo
streamingPlaylistId: number
2022-05-03 11:38:07 +02:00
}) {
const { live, video, streamingPlaylistId } = options
2020-12-03 14:10:54 +01:00
const streamingPlaylist = await VideoStreamingPlaylistModel.loadWithVideo(streamingPlaylistId)
if (streamingPlaylist) {
if (live.permanentLive) {
await cleanupPermanentLive(video, streamingPlaylist)
} else {
await cleanupUnsavedNormalLive(video, streamingPlaylist)
}
}
2022-05-25 15:18:29 +02:00
try {
const fullVideo = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.id)
return federateVideoIfNeeded(fullVideo, false, undefined)
} catch (err) {
logger.warn('Cannot federate live after cleanup', { videoId: video.id, err })
}
}