2024-06-13 09:23:12 +02:00
|
|
|
import { ffprobePromise, getAudioStream, getVideoStreamDimensionsInfo, getVideoStreamFPS } from '@peertube/peertube-ffmpeg'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { ThumbnailType, VideoLiveEndingPayload, VideoState } from '@peertube/peertube-models'
|
|
|
|
import { peertubeTruncate } from '@server/helpers/core-utils.js'
|
2024-06-13 09:23:12 +02:00
|
|
|
import { CONFIG } from '@server/initializers/config.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { CONSTRAINTS_FIELDS } from '@server/initializers/constants.js'
|
|
|
|
import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url.js'
|
|
|
|
import { federateVideoIfNeeded } from '@server/lib/activitypub/videos/index.js'
|
|
|
|
import { cleanupAndDestroyPermanentLive, cleanupTMPLiveFiles, cleanupUnsavedNormalLive } from '@server/lib/live/index.js'
|
2023-09-01 16:47:25 +02:00
|
|
|
import {
|
|
|
|
generateHLSMasterPlaylistFilename,
|
|
|
|
generateHlsSha256SegmentsFilename,
|
|
|
|
getHLSDirectory,
|
|
|
|
getLiveReplayBaseDirectory
|
|
|
|
} from '@server/lib/paths.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { generateLocalVideoMiniature, regenerateMiniaturesIfNeeded } from '@server/lib/thumbnail.js'
|
|
|
|
import { generateHlsPlaylistResolutionFromTS } from '@server/lib/transcoding/hls-transcoding.js'
|
2024-06-13 09:23:12 +02:00
|
|
|
import { createTranscriptionTaskIfNeeded } from '@server/lib/video-captions.js'
|
|
|
|
import { buildStoryboardJobIfNeeded } from '@server/lib/video-jobs.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { VideoPathManager } from '@server/lib/video-path-manager.js'
|
2024-06-13 09:23:12 +02:00
|
|
|
import { isVideoInPublicDirectory } from '@server/lib/video-privacy.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { moveToNextState } from '@server/lib/video-state.js'
|
|
|
|
import { VideoBlacklistModel } from '@server/models/video/video-blacklist.js'
|
|
|
|
import { VideoFileModel } from '@server/models/video/video-file.js'
|
|
|
|
import { VideoLiveReplaySettingModel } from '@server/models/video/video-live-replay-setting.js'
|
|
|
|
import { VideoLiveSessionModel } from '@server/models/video/video-live-session.js'
|
|
|
|
import { VideoLiveModel } from '@server/models/video/video-live.js'
|
|
|
|
import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist.js'
|
|
|
|
import { VideoModel } from '@server/models/video/video.js'
|
|
|
|
import { MVideo, MVideoLive, MVideoLiveSession, MVideoWithAllFiles } from '@server/types/models/index.js'
|
2024-06-13 09:23:12 +02:00
|
|
|
import { Job } from 'bullmq'
|
|
|
|
import { remove } from 'fs-extra/esm'
|
|
|
|
import { readdir } from 'fs/promises'
|
|
|
|
import { join } from 'path'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { logger, loggerTagsFactory } from '../../../helpers/logger.js'
|
|
|
|
import { JobQueue } from '../job-queue.js'
|
2022-06-23 10:29:43 +02:00
|
|
|
|
|
|
|
const lTags = loggerTagsFactory('live', 'job')
|
2020-09-25 10:04:21 +02:00
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
async function processVideoLiveEnding (job: Job) {
|
2020-09-25 10:04:21 +02:00
|
|
|
const payload = job.data as VideoLiveEndingPayload
|
|
|
|
|
2022-06-23 10:29:43 +02:00
|
|
|
logger.info('Processing video live ending for %s.', payload.videoId, { payload, ...lTags() })
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2020-11-04 14:16:57 +01:00
|
|
|
function logError () {
|
2022-06-23 10:29:43 +02:00
|
|
|
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-07-22 15:22:21 +02:00
|
|
|
const video = 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-07-22 15:22:21 +02:00
|
|
|
if (!video || !live || !liveSession) {
|
2020-11-04 14:16:57 +01:00
|
|
|
logError()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-04 11:17:37 +02:00
|
|
|
const permanentLive = live.permanentLive
|
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
liveSession.endingProcessed = true
|
|
|
|
await liveSession.save()
|
|
|
|
|
|
|
|
if (liveSession.saveReplay !== true) {
|
|
|
|
return cleanupLiveAndFederate({ permanentLive, video, streamingPlaylistId: payload.streamingPlaylistId })
|
2020-10-26 16:44:23 +01:00
|
|
|
}
|
|
|
|
|
2024-01-03 15:06:24 +01:00
|
|
|
if (await hasReplayFiles(payload.replayDirectory) !== true) {
|
|
|
|
logger.info(`No replay files found for live ${video.uuid}, skipping video replay creation.`, { ...lTags(video.uuid) })
|
|
|
|
|
|
|
|
return cleanupLiveAndFederate({ permanentLive, video, streamingPlaylistId: payload.streamingPlaylistId })
|
|
|
|
}
|
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
if (permanentLive) {
|
|
|
|
await saveReplayToExternalVideo({
|
|
|
|
liveVideo: video,
|
|
|
|
liveSession,
|
|
|
|
publishedAt: payload.publishedAt,
|
|
|
|
replayDirectory: payload.replayDirectory
|
|
|
|
})
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
return cleanupLiveAndFederate({ permanentLive, video, streamingPlaylistId: payload.streamingPlaylistId })
|
2022-04-21 09:06:52 +02:00
|
|
|
}
|
|
|
|
|
2023-03-31 09:12:21 +02:00
|
|
|
return replaceLiveByReplay({
|
|
|
|
video,
|
|
|
|
liveSession,
|
|
|
|
live,
|
|
|
|
permanentLive,
|
|
|
|
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
|
|
|
|
|
2023-03-31 09:12:21 +02:00
|
|
|
const replaySettings = await VideoLiveReplaySettingModel.load(liveSession.replaySettingId)
|
|
|
|
|
2023-06-29 08:57:19 +02:00
|
|
|
const videoNameSuffix = ` - ${new Date(publishedAt).toLocaleString()}`
|
|
|
|
const truncatedVideoName = peertubeTruncate(liveVideo.name, {
|
|
|
|
length: CONSTRAINTS_FIELDS.VIDEOS.NAME.max - videoNameSuffix.length
|
|
|
|
})
|
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
const replayVideo = new VideoModel({
|
2023-06-29 08:57:19 +02:00
|
|
|
name: truncatedVideoName + videoNameSuffix,
|
2022-04-21 09:06:52 +02:00
|
|
|
isLive: false,
|
|
|
|
state: VideoState.TO_TRANSCODE,
|
|
|
|
duration: 0,
|
|
|
|
|
|
|
|
remote: liveVideo.remote,
|
|
|
|
category: liveVideo.category,
|
|
|
|
licence: liveVideo.licence,
|
|
|
|
language: liveVideo.language,
|
2024-03-29 14:25:03 +01:00
|
|
|
commentsPolicy: liveVideo.commentsPolicy,
|
2022-04-21 09:06:52 +02:00
|
|
|
downloadEnabled: liveVideo.downloadEnabled,
|
2022-05-03 11:38:07 +02:00
|
|
|
waitTranscoding: true,
|
2022-04-21 09:06:52 +02:00
|
|
|
nsfw: liveVideo.nsfw,
|
|
|
|
description: liveVideo.description,
|
2024-02-27 11:18:56 +01:00
|
|
|
aspectRatio: liveVideo.aspectRatio,
|
2022-04-21 09:06:52 +02:00
|
|
|
support: liveVideo.support,
|
2023-03-31 09:12:21 +02:00
|
|
|
privacy: replaySettings.privacy,
|
2022-04-21 09:06:52 +02:00
|
|
|
channelId: liveVideo.channelId
|
|
|
|
}) as MVideoWithAllFiles
|
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
replayVideo.Thumbnails = []
|
|
|
|
replayVideo.VideoFiles = []
|
|
|
|
replayVideo.VideoStreamingPlaylists = []
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
replayVideo.url = getLocalVideoActivityPubUrl(replayVideo)
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
await replayVideo.save()
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2022-07-22 15:22:21 +02:00
|
|
|
liveSession.replayVideoId = replayVideo.id
|
2022-05-03 11:38:07 +02:00
|
|
|
await liveSession.save()
|
|
|
|
|
2022-04-21 09:06:52 +02:00
|
|
|
// If live is blacklisted, also blacklist the replay
|
|
|
|
const blacklist = await VideoBlacklistModel.loadByVideoId(liveVideo.id)
|
|
|
|
if (blacklist) {
|
|
|
|
await VideoBlacklistModel.create({
|
2022-07-22 15:22:21 +02:00
|
|
|
videoId: replayVideo.id,
|
2022-04-21 09:06:52 +02:00
|
|
|
unfederated: blacklist.unfederated,
|
|
|
|
reason: blacklist.reason,
|
|
|
|
type: blacklist.type
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-09-01 16:47:25 +02:00
|
|
|
const inputFileMutexReleaser = await VideoPathManager.Instance.lockFiles(liveVideo.uuid)
|
2020-11-30 15:59:22 +01:00
|
|
|
|
2023-09-01 16:47:25 +02:00
|
|
|
try {
|
|
|
|
await assignReplayFilesToVideo({ video: replayVideo, replayDirectory })
|
|
|
|
|
|
|
|
await remove(replayDirectory)
|
|
|
|
} finally {
|
|
|
|
inputFileMutexReleaser()
|
|
|
|
}
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
const thumbnails = await generateLocalVideoMiniature({
|
|
|
|
video: replayVideo,
|
|
|
|
videoFile: replayVideo.getMaxQualityFile(),
|
2024-03-15 15:47:18 +01:00
|
|
|
types: [ ThumbnailType.MINIATURE, ThumbnailType.PREVIEW ],
|
|
|
|
ffprobe: undefined
|
2023-10-19 14:18:22 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
for (const thumbnail of thumbnails) {
|
|
|
|
await replayVideo.addAndSaveThumbnail(thumbnail)
|
2022-04-21 09:06:52 +02:00
|
|
|
}
|
2020-11-30 15:59:22 +01:00
|
|
|
|
2023-06-01 14:51:16 +02:00
|
|
|
await createStoryboardJob(replayVideo)
|
2024-06-13 09:23:12 +02:00
|
|
|
|
|
|
|
if (CONFIG.VIDEO_TRANSCRIPTION.ENABLED === true) {
|
|
|
|
await createTranscriptionTaskIfNeeded(replayVideo)
|
|
|
|
}
|
|
|
|
|
|
|
|
await moveToNextState({ video: replayVideo, isNewVideo: true })
|
2022-04-21 09:06:52 +02:00
|
|
|
}
|
2020-11-30 15:59:22 +01:00
|
|
|
|
2022-05-03 11:38:07 +02:00
|
|
|
async function replaceLiveByReplay (options: {
|
2022-07-22 15:22:21 +02:00
|
|
|
video: MVideo
|
2022-05-03 11:38:07 +02:00
|
|
|
liveSession: MVideoLiveSession
|
|
|
|
live: MVideoLive
|
2022-07-22 15:22:21 +02:00
|
|
|
permanentLive: boolean
|
2022-05-03 11:38:07 +02:00
|
|
|
replayDirectory: string
|
|
|
|
}) {
|
2023-09-01 16:47:25 +02:00
|
|
|
const { video: liveVideo, liveSession, live, permanentLive, replayDirectory } = options
|
2022-05-03 11:38:07 +02:00
|
|
|
|
2023-03-31 09:12:21 +02:00
|
|
|
const replaySettings = await VideoLiveReplaySettingModel.load(liveSession.replaySettingId)
|
2023-09-01 16:47:25 +02:00
|
|
|
const videoWithFiles = await VideoModel.loadFull(liveVideo.id)
|
2022-10-04 10:03:17 +02:00
|
|
|
const hlsPlaylist = videoWithFiles.getHLSPlaylist()
|
2023-09-01 16:47:25 +02:00
|
|
|
const replayInAnotherDirectory = isVideoInPublicDirectory(liveVideo.privacy) !== isVideoInPublicDirectory(replaySettings.privacy)
|
|
|
|
|
|
|
|
logger.info(`Replacing live ${liveVideo.uuid} by replay ${replayDirectory}.`, { replayInAnotherDirectory, ...lTags(liveVideo.uuid) })
|
2022-10-04 10:03:17 +02:00
|
|
|
|
|
|
|
await cleanupTMPLiveFiles(videoWithFiles, hlsPlaylist)
|
2020-10-26 16:44:23 +01:00
|
|
|
|
2020-10-27 16:06:24 +01:00
|
|
|
await live.destroy()
|
|
|
|
|
2022-10-04 10:03:17 +02:00
|
|
|
videoWithFiles.isLive = false
|
2023-03-31 09:12:21 +02:00
|
|
|
videoWithFiles.privacy = replaySettings.privacy
|
2022-10-04 10:03:17 +02:00
|
|
|
videoWithFiles.waitTranscoding = true
|
|
|
|
videoWithFiles.state = VideoState.TO_TRANSCODE
|
2020-10-28 10:49:20 +01:00
|
|
|
|
2022-10-04 10:03:17 +02:00
|
|
|
await videoWithFiles.save()
|
2022-05-03 11:38:07 +02:00
|
|
|
|
2022-10-04 10:03:17 +02:00
|
|
|
liveSession.replayVideoId = videoWithFiles.id
|
2022-05-03 11:38:07 +02:00
|
|
|
await liveSession.save()
|
2020-10-26 16:44:23 +01:00
|
|
|
|
2024-03-25 15:14:56 +01:00
|
|
|
await VideoFileModel.removeHLSFilesOfStreamingPlaylistId(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
|
|
|
|
2023-09-01 16:47:25 +02:00
|
|
|
const inputFileMutexReleaser = await VideoPathManager.Instance.lockFiles(videoWithFiles.uuid)
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2023-09-01 16:47:25 +02:00
|
|
|
try {
|
|
|
|
await assignReplayFilesToVideo({ video: videoWithFiles, replayDirectory })
|
|
|
|
|
|
|
|
// Should not happen in this function, but we keep the code if in the future we can replace the permanent live by a replay
|
|
|
|
if (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(liveVideo))
|
|
|
|
|
|
|
|
// If the live was in another base directory, also delete it
|
|
|
|
if (replayInAnotherDirectory) {
|
|
|
|
await remove(getHLSDirectory(liveVideo))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
inputFileMutexReleaser()
|
2022-05-25 14:54:16 +02:00
|
|
|
}
|
2022-04-21 09:06:52 +02:00
|
|
|
|
|
|
|
// Regenerate the thumbnail & preview?
|
2024-03-15 15:47:18 +01:00
|
|
|
await regenerateMiniaturesIfNeeded(videoWithFiles, undefined)
|
2022-04-21 09:06:52 +02:00
|
|
|
|
2022-05-03 11:38:07 +02:00
|
|
|
// We consider this is a new video
|
|
|
|
await moveToNextState({ video: videoWithFiles, isNewVideo: true })
|
2023-06-01 14:51:16 +02:00
|
|
|
|
|
|
|
await createStoryboardJob(videoWithFiles)
|
2024-06-13 09:23:12 +02:00
|
|
|
|
|
|
|
if (CONFIG.VIDEO_TRANSCRIPTION.ENABLED === true) {
|
|
|
|
await createTranscriptionTaskIfNeeded(videoWithFiles)
|
|
|
|
}
|
2022-04-21 09:06:52 +02:00
|
|
|
}
|
|
|
|
|
2022-05-03 11:38:07 +02:00
|
|
|
async function assignReplayFilesToVideo (options: {
|
|
|
|
video: MVideo
|
|
|
|
replayDirectory: string
|
|
|
|
}) {
|
|
|
|
const { video, replayDirectory } = options
|
|
|
|
|
2022-04-21 09:06:52 +02:00
|
|
|
const concatenatedTsFiles = await readdir(replayDirectory)
|
|
|
|
|
2023-09-01 16:47:25 +02:00
|
|
|
logger.info(`Assigning replays ${replayDirectory} to video ${video.uuid}.`, { concatenatedTsFiles, ...lTags(video.uuid) })
|
|
|
|
|
2022-04-21 09:06:52 +02:00
|
|
|
for (const concatenatedTsFile of concatenatedTsFiles) {
|
2023-09-01 16:47:25 +02:00
|
|
|
// Generating hls playlist can be long, reload the video in this case
|
2023-05-05 13:41:48 +02:00
|
|
|
await video.reload()
|
2022-10-12 16:09:02 +02:00
|
|
|
|
2020-12-04 15:10:13 +01:00
|
|
|
const concatenatedTsFilePath = join(replayDirectory, concatenatedTsFile)
|
2020-12-02 10:07:26 +01:00
|
|
|
|
2020-12-04 15:29:18 +01:00
|
|
|
const probe = await ffprobePromise(concatenatedTsFilePath)
|
|
|
|
const { audioStream } = await getAudioStream(concatenatedTsFilePath, probe)
|
2022-08-05 10:36:19 +02:00
|
|
|
const { resolution } = await getVideoStreamDimensionsInfo(concatenatedTsFilePath, probe)
|
2023-04-21 14:55:10 +02:00
|
|
|
const fps = await getVideoStreamFPS(concatenatedTsFilePath, probe)
|
2020-12-02 10:07:26 +01:00
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
try {
|
|
|
|
await generateHlsPlaylistResolutionFromTS({
|
|
|
|
video,
|
2023-09-01 16:47:25 +02:00
|
|
|
inputFileMutexReleaser: null, // Already locked in parent
|
2022-10-12 16:09:02 +02:00
|
|
|
concatenatedTsFilePath,
|
|
|
|
resolution,
|
2023-04-21 14:55:10 +02:00
|
|
|
fps,
|
2022-10-12 16:09:02 +02:00
|
|
|
isAAC: audioStream?.codec_name === 'aac'
|
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot generate HLS playlist resolution from TS files.', { err })
|
|
|
|
}
|
2020-11-03 15:33:30 +01:00
|
|
|
}
|
2020-10-28 10:49:20 +01:00
|
|
|
|
2022-04-21 09:06:52 +02:00
|
|
|
return video
|
|
|
|
}
|
2020-11-06 10:57:40 +01:00
|
|
|
|
2022-05-03 11:38:07 +02:00
|
|
|
async function cleanupLiveAndFederate (options: {
|
2022-05-25 14:54:16 +02:00
|
|
|
video: MVideo
|
2022-07-22 15:22:21 +02:00
|
|
|
permanentLive: boolean
|
2022-06-16 13:39:57 +02:00
|
|
|
streamingPlaylistId: number
|
2022-05-03 11:38:07 +02:00
|
|
|
}) {
|
2022-07-22 15:22:21 +02:00
|
|
|
const { permanentLive, video, streamingPlaylistId } = options
|
2020-12-03 14:10:54 +01:00
|
|
|
|
2022-06-16 13:39:57 +02:00
|
|
|
const streamingPlaylist = await VideoStreamingPlaylistModel.loadWithVideo(streamingPlaylistId)
|
2020-09-25 10:04:21 +02:00
|
|
|
|
2022-06-16 13:39:57 +02:00
|
|
|
if (streamingPlaylist) {
|
2022-07-22 15:22:21 +02:00
|
|
|
if (permanentLive) {
|
2022-10-04 10:03:17 +02:00
|
|
|
await cleanupAndDestroyPermanentLive(video, streamingPlaylist)
|
2022-06-16 13:39:57 +02:00
|
|
|
} else {
|
2022-06-23 10:29:43 +02:00
|
|
|
await cleanupUnsavedNormalLive(video, streamingPlaylist)
|
2022-06-16 13:39:57 +02:00
|
|
|
}
|
2020-09-25 10:04:21 +02:00
|
|
|
}
|
2022-05-25 14:54:16 +02:00
|
|
|
|
2022-05-25 15:18:29 +02:00
|
|
|
try {
|
2022-06-28 14:57:51 +02:00
|
|
|
const fullVideo = await VideoModel.loadFull(video.id)
|
2022-05-25 15:18:29 +02:00
|
|
|
return federateVideoIfNeeded(fullVideo, false, undefined)
|
|
|
|
} catch (err) {
|
|
|
|
logger.warn('Cannot federate live after cleanup', { videoId: video.id, err })
|
|
|
|
}
|
2020-09-25 10:04:21 +02:00
|
|
|
}
|
2023-06-01 14:51:16 +02:00
|
|
|
|
|
|
|
function createStoryboardJob (video: MVideo) {
|
2023-12-27 10:39:09 +01:00
|
|
|
return JobQueue.Instance.createJob(buildStoryboardJobIfNeeded({ video, federate: true }))
|
2023-06-01 14:51:16 +02:00
|
|
|
}
|
2024-01-03 15:06:24 +01:00
|
|
|
|
|
|
|
async function hasReplayFiles (replayDirectory: string) {
|
|
|
|
return (await readdir(replayDirectory)).length !== 0
|
|
|
|
}
|